Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 1 | /* |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 2 | * zfcp device driver |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 3 | * |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 4 | * Debug traces for zfcp. |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 5 | * |
Christof Schmitt | d46f384 | 2009-08-18 15:43:07 +0200 | [diff] [blame] | 6 | * Copyright IBM Corporation 2002, 2009 |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
Christof Schmitt | ecf39d4 | 2008-12-25 13:39:53 +0100 | [diff] [blame] | 9 | #define KMSG_COMPONENT "zfcp" |
| 10 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
| 11 | |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 12 | #include <linux/ctype.h> |
Heiko Carstens | 364c855 | 2007-10-12 16:11:35 +0200 | [diff] [blame] | 13 | #include <asm/debug.h> |
Christof Schmitt | d46f384 | 2009-08-18 15:43:07 +0200 | [diff] [blame] | 14 | #include "zfcp_dbf.h" |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 15 | #include "zfcp_ext.h" |
| 16 | |
| 17 | static u32 dbfsize = 4; |
| 18 | |
| 19 | module_param(dbfsize, uint, 0400); |
| 20 | MODULE_PARM_DESC(dbfsize, |
| 21 | "number of pages for each debug feature area (default 4)"); |
| 22 | |
Martin Peschke | c15450e | 2008-03-27 14:21:55 +0100 | [diff] [blame] | 23 | static void zfcp_dbf_hexdump(debug_info_t *dbf, void *to, int to_len, |
| 24 | int level, char *from, int from_len) |
| 25 | { |
| 26 | int offset; |
| 27 | struct zfcp_dbf_dump *dump = to; |
| 28 | int room = to_len - sizeof(*dump); |
| 29 | |
| 30 | for (offset = 0; offset < from_len; offset += dump->size) { |
| 31 | memset(to, 0, to_len); |
| 32 | strncpy(dump->tag, "dump", ZFCP_DBF_TAG_SIZE); |
| 33 | dump->total_size = from_len; |
| 34 | dump->offset = offset; |
| 35 | dump->size = min(from_len - offset, room); |
| 36 | memcpy(dump->data, from + offset, dump->size); |
Christof Schmitt | d94ce6c | 2008-11-04 16:35:12 +0100 | [diff] [blame] | 37 | debug_event(dbf, level, dump, dump->size + sizeof(*dump)); |
Martin Peschke | c15450e | 2008-03-27 14:21:55 +0100 | [diff] [blame] | 38 | } |
| 39 | } |
| 40 | |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 41 | static void zfcp_dbf_tag(char **p, const char *label, const char *tag) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 42 | { |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 43 | int i; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 44 | |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 45 | *p += sprintf(*p, "%-24s", label); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 46 | for (i = 0; i < ZFCP_DBF_TAG_SIZE; i++) |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 47 | *p += sprintf(*p, "%c", tag[i]); |
| 48 | *p += sprintf(*p, "\n"); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 49 | } |
| 50 | |
Martin Peschke | 10223c6 | 2008-03-27 14:21:59 +0100 | [diff] [blame] | 51 | static void zfcp_dbf_outs(char **buf, const char *s1, const char *s2) |
| 52 | { |
| 53 | *buf += sprintf(*buf, "%-24s%s\n", s1, s2); |
| 54 | } |
| 55 | |
| 56 | static void zfcp_dbf_out(char **buf, const char *s, const char *format, ...) |
| 57 | { |
| 58 | va_list arg; |
| 59 | |
| 60 | *buf += sprintf(*buf, "%-24s", s); |
| 61 | va_start(arg, format); |
| 62 | *buf += vsprintf(*buf, format, arg); |
| 63 | va_end(arg); |
| 64 | *buf += sprintf(*buf, "\n"); |
| 65 | } |
| 66 | |
Martin Peschke | df29f4a | 2008-03-31 11:15:26 +0200 | [diff] [blame] | 67 | static void zfcp_dbf_outd(char **p, const char *label, char *buffer, |
| 68 | int buflen, int offset, int total_size) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 69 | { |
Martin Peschke | df29f4a | 2008-03-31 11:15:26 +0200 | [diff] [blame] | 70 | if (!offset) |
| 71 | *p += sprintf(*p, "%-24s ", label); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 72 | while (buflen--) { |
| 73 | if (offset > 0) { |
| 74 | if ((offset % 32) == 0) |
Martin Peschke | df29f4a | 2008-03-31 11:15:26 +0200 | [diff] [blame] | 75 | *p += sprintf(*p, "\n%-24c ", ' '); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 76 | else if ((offset % 4) == 0) |
Martin Peschke | df29f4a | 2008-03-31 11:15:26 +0200 | [diff] [blame] | 77 | *p += sprintf(*p, " "); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 78 | } |
Martin Peschke | df29f4a | 2008-03-31 11:15:26 +0200 | [diff] [blame] | 79 | *p += sprintf(*p, "%02x", *buffer++); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 80 | if (++offset == total_size) { |
Martin Peschke | df29f4a | 2008-03-31 11:15:26 +0200 | [diff] [blame] | 81 | *p += sprintf(*p, "\n"); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 82 | break; |
| 83 | } |
| 84 | } |
Martin Peschke | df29f4a | 2008-03-31 11:15:26 +0200 | [diff] [blame] | 85 | if (!total_size) |
| 86 | *p += sprintf(*p, "\n"); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 87 | } |
| 88 | |
Martin Peschke | 92c7a83 | 2008-03-31 11:15:30 +0200 | [diff] [blame] | 89 | static int zfcp_dbf_view_header(debug_info_t *id, struct debug_view *view, |
| 90 | int area, debug_entry_t *entry, char *out_buf) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 91 | { |
| 92 | struct zfcp_dbf_dump *dump = (struct zfcp_dbf_dump *)DEBUG_DATA(entry); |
Martin Peschke | 8fc5af1 | 2008-03-31 11:15:23 +0200 | [diff] [blame] | 93 | struct timespec t; |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 94 | char *p = out_buf; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 95 | |
| 96 | if (strncmp(dump->tag, "dump", ZFCP_DBF_TAG_SIZE) != 0) { |
Christof Schmitt | b592e89 | 2009-08-18 15:43:31 +0200 | [diff] [blame] | 97 | stck_to_timespec(entry->id.stck, &t); |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 98 | zfcp_dbf_out(&p, "timestamp", "%011lu:%06lu", |
| 99 | t.tv_sec, t.tv_nsec); |
| 100 | zfcp_dbf_out(&p, "cpu", "%02i", entry->id.fields.cpuid); |
| 101 | } else { |
Christof Schmitt | d94ce6c | 2008-11-04 16:35:12 +0100 | [diff] [blame] | 102 | zfcp_dbf_outd(&p, "", dump->data, dump->size, dump->offset, |
Martin Peschke | df29f4a | 2008-03-31 11:15:26 +0200 | [diff] [blame] | 103 | dump->total_size); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 104 | if ((dump->offset + dump->size) == dump->total_size) |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 105 | p += sprintf(p, "\n"); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 106 | } |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 107 | return p - out_buf; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 108 | } |
| 109 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 110 | void _zfcp_dbf_hba_fsf_response(const char *tag2, int level, |
| 111 | struct zfcp_fsf_req *fsf_req, |
| 112 | struct zfcp_dbf *dbf) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 113 | { |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 114 | struct fsf_qtcb *qtcb = fsf_req->qtcb; |
| 115 | union fsf_prot_status_qual *prot_status_qual = |
Martin Peschke | 92c7a83 | 2008-03-31 11:15:30 +0200 | [diff] [blame] | 116 | &qtcb->prefix.prot_status_qual; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 117 | union fsf_status_qual *fsf_status_qual = &qtcb->header.fsf_status_qual; |
| 118 | struct scsi_cmnd *scsi_cmnd; |
| 119 | struct zfcp_port *port; |
| 120 | struct zfcp_unit *unit; |
| 121 | struct zfcp_send_els *send_els; |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 122 | struct zfcp_dbf_hba_record *rec = &dbf->hba_buf; |
| 123 | struct zfcp_dbf_hba_record_response *response = &rec->u.response; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 124 | unsigned long flags; |
| 125 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 126 | spin_lock_irqsave(&dbf->hba_lock, flags); |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 127 | memset(rec, 0, sizeof(*rec)); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 128 | strncpy(rec->tag, "resp", ZFCP_DBF_TAG_SIZE); |
Christof Schmitt | 2e261af | 2009-08-18 15:43:09 +0200 | [diff] [blame] | 129 | strncpy(rec->tag2, tag2, ZFCP_DBF_TAG_SIZE); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 130 | |
| 131 | response->fsf_command = fsf_req->fsf_command; |
Christof Schmitt | f0216ae | 2009-05-15 13:18:14 +0200 | [diff] [blame] | 132 | response->fsf_reqid = fsf_req->req_id; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 133 | response->fsf_seqno = fsf_req->seq_no; |
| 134 | response->fsf_issued = fsf_req->issued; |
| 135 | response->fsf_prot_status = qtcb->prefix.prot_status; |
| 136 | response->fsf_status = qtcb->header.fsf_status; |
| 137 | memcpy(response->fsf_prot_status_qual, |
| 138 | prot_status_qual, FSF_PROT_STATUS_QUAL_SIZE); |
| 139 | memcpy(response->fsf_status_qual, |
| 140 | fsf_status_qual, FSF_STATUS_QUALIFIER_SIZE); |
| 141 | response->fsf_req_status = fsf_req->status; |
Swen Schillig | 42428f7 | 2009-08-18 15:43:18 +0200 | [diff] [blame] | 142 | response->sbal_first = fsf_req->queue_req.sbal_first; |
| 143 | response->sbal_last = fsf_req->queue_req.sbal_last; |
| 144 | response->sbal_response = fsf_req->queue_req.sbal_response; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 145 | response->pool = fsf_req->pool != NULL; |
| 146 | response->erp_action = (unsigned long)fsf_req->erp_action; |
| 147 | |
| 148 | switch (fsf_req->fsf_command) { |
| 149 | case FSF_QTCB_FCP_CMND: |
| 150 | if (fsf_req->status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT) |
| 151 | break; |
| 152 | scsi_cmnd = (struct scsi_cmnd *)fsf_req->data; |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 153 | if (scsi_cmnd) { |
| 154 | response->u.fcp.cmnd = (unsigned long)scsi_cmnd; |
| 155 | response->u.fcp.serial = scsi_cmnd->serial_number; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 156 | } |
| 157 | break; |
| 158 | |
| 159 | case FSF_QTCB_OPEN_PORT_WITH_DID: |
| 160 | case FSF_QTCB_CLOSE_PORT: |
| 161 | case FSF_QTCB_CLOSE_PHYSICAL_PORT: |
| 162 | port = (struct zfcp_port *)fsf_req->data; |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 163 | response->u.port.wwpn = port->wwpn; |
| 164 | response->u.port.d_id = port->d_id; |
| 165 | response->u.port.port_handle = qtcb->header.port_handle; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 166 | break; |
| 167 | |
| 168 | case FSF_QTCB_OPEN_LUN: |
| 169 | case FSF_QTCB_CLOSE_LUN: |
| 170 | unit = (struct zfcp_unit *)fsf_req->data; |
| 171 | port = unit->port; |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 172 | response->u.unit.wwpn = port->wwpn; |
| 173 | response->u.unit.fcp_lun = unit->fcp_lun; |
| 174 | response->u.unit.port_handle = qtcb->header.port_handle; |
| 175 | response->u.unit.lun_handle = qtcb->header.lun_handle; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 176 | break; |
| 177 | |
| 178 | case FSF_QTCB_SEND_ELS: |
| 179 | send_els = (struct zfcp_send_els *)fsf_req->data; |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 180 | response->u.els.d_id = qtcb->bottom.support.d_id; |
| 181 | response->u.els.ls_code = send_els->ls_code >> 24; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 182 | break; |
| 183 | |
| 184 | case FSF_QTCB_ABORT_FCP_CMND: |
| 185 | case FSF_QTCB_SEND_GENERIC: |
| 186 | case FSF_QTCB_EXCHANGE_CONFIG_DATA: |
| 187 | case FSF_QTCB_EXCHANGE_PORT_DATA: |
| 188 | case FSF_QTCB_DOWNLOAD_CONTROL_FILE: |
| 189 | case FSF_QTCB_UPLOAD_CONTROL_FILE: |
| 190 | break; |
| 191 | } |
| 192 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 193 | debug_event(dbf->hba, level, rec, sizeof(*rec)); |
Martin Peschke | b75db73 | 2008-03-27 14:21:58 +0100 | [diff] [blame] | 194 | |
| 195 | /* have fcp channel microcode fixed to use as little as possible */ |
| 196 | if (fsf_req->fsf_command != FSF_QTCB_FCP_CMND) { |
| 197 | /* adjust length skipping trailing zeros */ |
| 198 | char *buf = (char *)qtcb + qtcb->header.log_start; |
| 199 | int len = qtcb->header.log_length; |
| 200 | for (; len && !buf[len - 1]; len--); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 201 | zfcp_dbf_hexdump(dbf->hba, rec, sizeof(*rec), level, buf, |
Christof Schmitt | d46f384 | 2009-08-18 15:43:07 +0200 | [diff] [blame] | 202 | len); |
Martin Peschke | b75db73 | 2008-03-27 14:21:58 +0100 | [diff] [blame] | 203 | } |
| 204 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 205 | spin_unlock_irqrestore(&dbf->hba_lock, flags); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 206 | } |
| 207 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 208 | void _zfcp_dbf_hba_fsf_unsol(const char *tag, int level, struct zfcp_dbf *dbf, |
| 209 | struct fsf_status_read_buffer *status_buffer) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 210 | { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 211 | struct zfcp_dbf_hba_record *rec = &dbf->hba_buf; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 212 | unsigned long flags; |
| 213 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 214 | spin_lock_irqsave(&dbf->hba_lock, flags); |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 215 | memset(rec, 0, sizeof(*rec)); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 216 | strncpy(rec->tag, "stat", ZFCP_DBF_TAG_SIZE); |
| 217 | strncpy(rec->tag2, tag, ZFCP_DBF_TAG_SIZE); |
| 218 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 219 | rec->u.status.failed = atomic_read(&dbf->adapter->stat_miss); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 220 | if (status_buffer != NULL) { |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 221 | rec->u.status.status_type = status_buffer->status_type; |
| 222 | rec->u.status.status_subtype = status_buffer->status_subtype; |
| 223 | memcpy(&rec->u.status.queue_designator, |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 224 | &status_buffer->queue_designator, |
| 225 | sizeof(struct fsf_queue_designator)); |
| 226 | |
| 227 | switch (status_buffer->status_type) { |
| 228 | case FSF_STATUS_READ_SENSE_DATA_AVAIL: |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 229 | rec->u.status.payload_size = |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 230 | ZFCP_DBF_UNSOL_PAYLOAD_SENSE_DATA_AVAIL; |
| 231 | break; |
| 232 | |
| 233 | case FSF_STATUS_READ_BIT_ERROR_THRESHOLD: |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 234 | rec->u.status.payload_size = |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 235 | ZFCP_DBF_UNSOL_PAYLOAD_BIT_ERROR_THRESHOLD; |
| 236 | break; |
| 237 | |
| 238 | case FSF_STATUS_READ_LINK_DOWN: |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 239 | switch (status_buffer->status_subtype) { |
| 240 | case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK: |
| 241 | case FSF_STATUS_READ_SUB_FDISC_FAILED: |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 242 | rec->u.status.payload_size = |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 243 | sizeof(struct fsf_link_down_info); |
| 244 | } |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 245 | break; |
| 246 | |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 247 | case FSF_STATUS_READ_FEATURE_UPDATE_ALERT: |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 248 | rec->u.status.payload_size = |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 249 | ZFCP_DBF_UNSOL_PAYLOAD_FEATURE_UPDATE_ALERT; |
| 250 | break; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 251 | } |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 252 | memcpy(&rec->u.status.payload, |
| 253 | &status_buffer->payload, rec->u.status.payload_size); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 254 | } |
| 255 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 256 | debug_event(dbf->hba, level, rec, sizeof(*rec)); |
| 257 | spin_unlock_irqrestore(&dbf->hba_lock, flags); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 258 | } |
| 259 | |
Martin Peschke | bfab163 | 2008-03-31 11:15:31 +0200 | [diff] [blame] | 260 | /** |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 261 | * zfcp_dbf_hba_qdio - trace event for QDIO related failure |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 262 | * @qdio: qdio structure affected by this QDIO related event |
Martin Peschke | bfab163 | 2008-03-31 11:15:31 +0200 | [diff] [blame] | 263 | * @qdio_error: as passed by qdio module |
Martin Peschke | bfab163 | 2008-03-31 11:15:31 +0200 | [diff] [blame] | 264 | * @sbal_index: first buffer with error condition, as passed by qdio module |
| 265 | * @sbal_count: number of buffers affected, as passed by qdio module |
| 266 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 267 | void zfcp_dbf_hba_qdio(struct zfcp_dbf *dbf, unsigned int qdio_error, |
| 268 | int sbal_index, int sbal_count) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 269 | { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 270 | struct zfcp_dbf_hba_record *r = &dbf->hba_buf; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 271 | unsigned long flags; |
| 272 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 273 | spin_lock_irqsave(&dbf->hba_lock, flags); |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 274 | memset(r, 0, sizeof(*r)); |
| 275 | strncpy(r->tag, "qdio", ZFCP_DBF_TAG_SIZE); |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 276 | r->u.qdio.qdio_error = qdio_error; |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 277 | r->u.qdio.sbal_index = sbal_index; |
| 278 | r->u.qdio.sbal_count = sbal_count; |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 279 | debug_event(dbf->hba, 0, r, sizeof(*r)); |
| 280 | spin_unlock_irqrestore(&dbf->hba_lock, flags); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 281 | } |
| 282 | |
Swen Schillig | 5706938 | 2008-10-01 12:42:21 +0200 | [diff] [blame] | 283 | /** |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 284 | * zfcp_dbf_hba_berr - trace event for bit error threshold |
| 285 | * @dbf: dbf structure affected by this QDIO related event |
Swen Schillig | 5706938 | 2008-10-01 12:42:21 +0200 | [diff] [blame] | 286 | * @req: fsf request |
| 287 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 288 | void zfcp_dbf_hba_berr(struct zfcp_dbf *dbf, struct zfcp_fsf_req *req) |
Swen Schillig | 5706938 | 2008-10-01 12:42:21 +0200 | [diff] [blame] | 289 | { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 290 | struct zfcp_dbf_hba_record *r = &dbf->hba_buf; |
Swen Schillig | 5706938 | 2008-10-01 12:42:21 +0200 | [diff] [blame] | 291 | struct fsf_status_read_buffer *sr_buf = req->data; |
| 292 | struct fsf_bit_error_payload *err = &sr_buf->payload.bit_error; |
| 293 | unsigned long flags; |
| 294 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 295 | spin_lock_irqsave(&dbf->hba_lock, flags); |
Swen Schillig | 5706938 | 2008-10-01 12:42:21 +0200 | [diff] [blame] | 296 | memset(r, 0, sizeof(*r)); |
| 297 | strncpy(r->tag, "berr", ZFCP_DBF_TAG_SIZE); |
| 298 | memcpy(&r->u.berr, err, sizeof(struct fsf_bit_error_payload)); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 299 | debug_event(dbf->hba, 0, r, sizeof(*r)); |
| 300 | spin_unlock_irqrestore(&dbf->hba_lock, flags); |
Swen Schillig | 5706938 | 2008-10-01 12:42:21 +0200 | [diff] [blame] | 301 | } |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 302 | static void zfcp_dbf_hba_view_response(char **p, |
| 303 | struct zfcp_dbf_hba_record_response *r) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 304 | { |
Martin Peschke | 8fc5af1 | 2008-03-31 11:15:23 +0200 | [diff] [blame] | 305 | struct timespec t; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 306 | |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 307 | zfcp_dbf_out(p, "fsf_command", "0x%08x", r->fsf_command); |
| 308 | zfcp_dbf_out(p, "fsf_reqid", "0x%0Lx", r->fsf_reqid); |
| 309 | zfcp_dbf_out(p, "fsf_seqno", "0x%08x", r->fsf_seqno); |
Christof Schmitt | b592e89 | 2009-08-18 15:43:31 +0200 | [diff] [blame] | 310 | stck_to_timespec(r->fsf_issued, &t); |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 311 | zfcp_dbf_out(p, "fsf_issued", "%011lu:%06lu", t.tv_sec, t.tv_nsec); |
| 312 | zfcp_dbf_out(p, "fsf_prot_status", "0x%08x", r->fsf_prot_status); |
| 313 | zfcp_dbf_out(p, "fsf_status", "0x%08x", r->fsf_status); |
| 314 | zfcp_dbf_outd(p, "fsf_prot_status_qual", r->fsf_prot_status_qual, |
Martin Peschke | df29f4a | 2008-03-31 11:15:26 +0200 | [diff] [blame] | 315 | FSF_PROT_STATUS_QUAL_SIZE, 0, FSF_PROT_STATUS_QUAL_SIZE); |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 316 | zfcp_dbf_outd(p, "fsf_status_qual", r->fsf_status_qual, |
Martin Peschke | df29f4a | 2008-03-31 11:15:26 +0200 | [diff] [blame] | 317 | FSF_STATUS_QUALIFIER_SIZE, 0, FSF_STATUS_QUALIFIER_SIZE); |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 318 | zfcp_dbf_out(p, "fsf_req_status", "0x%08x", r->fsf_req_status); |
| 319 | zfcp_dbf_out(p, "sbal_first", "0x%02x", r->sbal_first); |
Martin Peschke | e891bff | 2008-05-19 12:17:43 +0200 | [diff] [blame] | 320 | zfcp_dbf_out(p, "sbal_last", "0x%02x", r->sbal_last); |
Martin Peschke | c3baa9a2 | 2008-05-19 12:17:44 +0200 | [diff] [blame] | 321 | zfcp_dbf_out(p, "sbal_response", "0x%02x", r->sbal_response); |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 322 | zfcp_dbf_out(p, "pool", "0x%02x", r->pool); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 323 | |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 324 | switch (r->fsf_command) { |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 325 | case FSF_QTCB_FCP_CMND: |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 326 | if (r->fsf_req_status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 327 | break; |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 328 | zfcp_dbf_out(p, "scsi_cmnd", "0x%0Lx", r->u.fcp.cmnd); |
| 329 | zfcp_dbf_out(p, "scsi_serial", "0x%016Lx", r->u.fcp.serial); |
Christof Schmitt | d94ce6c | 2008-11-04 16:35:12 +0100 | [diff] [blame] | 330 | p += sprintf(*p, "\n"); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 331 | break; |
| 332 | |
| 333 | case FSF_QTCB_OPEN_PORT_WITH_DID: |
| 334 | case FSF_QTCB_CLOSE_PORT: |
| 335 | case FSF_QTCB_CLOSE_PHYSICAL_PORT: |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 336 | zfcp_dbf_out(p, "wwpn", "0x%016Lx", r->u.port.wwpn); |
| 337 | zfcp_dbf_out(p, "d_id", "0x%06x", r->u.port.d_id); |
| 338 | zfcp_dbf_out(p, "port_handle", "0x%08x", r->u.port.port_handle); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 339 | break; |
| 340 | |
| 341 | case FSF_QTCB_OPEN_LUN: |
| 342 | case FSF_QTCB_CLOSE_LUN: |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 343 | zfcp_dbf_out(p, "wwpn", "0x%016Lx", r->u.unit.wwpn); |
| 344 | zfcp_dbf_out(p, "fcp_lun", "0x%016Lx", r->u.unit.fcp_lun); |
| 345 | zfcp_dbf_out(p, "port_handle", "0x%08x", r->u.unit.port_handle); |
| 346 | zfcp_dbf_out(p, "lun_handle", "0x%08x", r->u.unit.lun_handle); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 347 | break; |
| 348 | |
| 349 | case FSF_QTCB_SEND_ELS: |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 350 | zfcp_dbf_out(p, "d_id", "0x%06x", r->u.els.d_id); |
| 351 | zfcp_dbf_out(p, "ls_code", "0x%02x", r->u.els.ls_code); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 352 | break; |
| 353 | |
| 354 | case FSF_QTCB_ABORT_FCP_CMND: |
| 355 | case FSF_QTCB_SEND_GENERIC: |
| 356 | case FSF_QTCB_EXCHANGE_CONFIG_DATA: |
| 357 | case FSF_QTCB_EXCHANGE_PORT_DATA: |
| 358 | case FSF_QTCB_DOWNLOAD_CONTROL_FILE: |
| 359 | case FSF_QTCB_UPLOAD_CONTROL_FILE: |
| 360 | break; |
| 361 | } |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 362 | } |
| 363 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 364 | static void zfcp_dbf_hba_view_status(char **p, |
| 365 | struct zfcp_dbf_hba_record_status *r) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 366 | { |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 367 | zfcp_dbf_out(p, "failed", "0x%02x", r->failed); |
| 368 | zfcp_dbf_out(p, "status_type", "0x%08x", r->status_type); |
| 369 | zfcp_dbf_out(p, "status_subtype", "0x%08x", r->status_subtype); |
| 370 | zfcp_dbf_outd(p, "queue_designator", (char *)&r->queue_designator, |
Martin Peschke | df29f4a | 2008-03-31 11:15:26 +0200 | [diff] [blame] | 371 | sizeof(struct fsf_queue_designator), 0, |
| 372 | sizeof(struct fsf_queue_designator)); |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 373 | zfcp_dbf_outd(p, "payload", (char *)&r->payload, r->payload_size, 0, |
Martin Peschke | df29f4a | 2008-03-31 11:15:26 +0200 | [diff] [blame] | 374 | r->payload_size); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 375 | } |
| 376 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 377 | static void zfcp_dbf_hba_view_qdio(char **p, struct zfcp_dbf_hba_record_qdio *r) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 378 | { |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 379 | zfcp_dbf_out(p, "qdio_error", "0x%08x", r->qdio_error); |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 380 | zfcp_dbf_out(p, "sbal_index", "0x%02x", r->sbal_index); |
| 381 | zfcp_dbf_out(p, "sbal_count", "0x%02x", r->sbal_count); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 382 | } |
| 383 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 384 | static void zfcp_dbf_hba_view_berr(char **p, struct fsf_bit_error_payload *r) |
Swen Schillig | 5706938 | 2008-10-01 12:42:21 +0200 | [diff] [blame] | 385 | { |
| 386 | zfcp_dbf_out(p, "link_failures", "%d", r->link_failure_error_count); |
| 387 | zfcp_dbf_out(p, "loss_of_sync_err", "%d", r->loss_of_sync_error_count); |
| 388 | zfcp_dbf_out(p, "loss_of_sig_err", "%d", r->loss_of_signal_error_count); |
| 389 | zfcp_dbf_out(p, "prim_seq_err", "%d", |
| 390 | r->primitive_sequence_error_count); |
| 391 | zfcp_dbf_out(p, "inval_trans_word_err", "%d", |
| 392 | r->invalid_transmission_word_error_count); |
| 393 | zfcp_dbf_out(p, "CRC_errors", "%d", r->crc_error_count); |
| 394 | zfcp_dbf_out(p, "prim_seq_event_to", "%d", |
| 395 | r->primitive_sequence_event_timeout_count); |
| 396 | zfcp_dbf_out(p, "elast_buf_overrun_err", "%d", |
| 397 | r->elastic_buffer_overrun_error_count); |
| 398 | zfcp_dbf_out(p, "adv_rec_buf2buf_cred", "%d", |
| 399 | r->advertised_receive_b2b_credit); |
| 400 | zfcp_dbf_out(p, "curr_rec_buf2buf_cred", "%d", |
| 401 | r->current_receive_b2b_credit); |
| 402 | zfcp_dbf_out(p, "adv_trans_buf2buf_cred", "%d", |
| 403 | r->advertised_transmit_b2b_credit); |
| 404 | zfcp_dbf_out(p, "curr_trans_buf2buf_cred", "%d", |
| 405 | r->current_transmit_b2b_credit); |
| 406 | } |
| 407 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 408 | static int zfcp_dbf_hba_view_format(debug_info_t *id, struct debug_view *view, |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 409 | char *out_buf, const char *in_buf) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 410 | { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 411 | struct zfcp_dbf_hba_record *r = (struct zfcp_dbf_hba_record *)in_buf; |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 412 | char *p = out_buf; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 413 | |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 414 | if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 415 | return 0; |
| 416 | |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 417 | zfcp_dbf_tag(&p, "tag", r->tag); |
| 418 | if (isalpha(r->tag2[0])) |
| 419 | zfcp_dbf_tag(&p, "tag2", r->tag2); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 420 | |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 421 | if (strncmp(r->tag, "resp", ZFCP_DBF_TAG_SIZE) == 0) |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 422 | zfcp_dbf_hba_view_response(&p, &r->u.response); |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 423 | else if (strncmp(r->tag, "stat", ZFCP_DBF_TAG_SIZE) == 0) |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 424 | zfcp_dbf_hba_view_status(&p, &r->u.status); |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 425 | else if (strncmp(r->tag, "qdio", ZFCP_DBF_TAG_SIZE) == 0) |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 426 | zfcp_dbf_hba_view_qdio(&p, &r->u.qdio); |
Swen Schillig | 5706938 | 2008-10-01 12:42:21 +0200 | [diff] [blame] | 427 | else if (strncmp(r->tag, "berr", ZFCP_DBF_TAG_SIZE) == 0) |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 428 | zfcp_dbf_hba_view_berr(&p, &r->u.berr); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 429 | |
Christof Schmitt | d94ce6c | 2008-11-04 16:35:12 +0100 | [diff] [blame] | 430 | if (strncmp(r->tag, "resp", ZFCP_DBF_TAG_SIZE) != 0) |
| 431 | p += sprintf(p, "\n"); |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 432 | return p - out_buf; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 433 | } |
| 434 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 435 | static struct debug_view zfcp_dbf_hba_view = { |
| 436 | .name = "structured", |
| 437 | .header_proc = zfcp_dbf_view_header, |
| 438 | .format_proc = zfcp_dbf_hba_view_format, |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 439 | }; |
| 440 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 441 | static const char *zfcp_dbf_rec_tags[] = { |
Martin Peschke | 348447e | 2008-03-27 14:22:01 +0100 | [diff] [blame] | 442 | [ZFCP_REC_DBF_ID_THREAD] = "thread", |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 443 | [ZFCP_REC_DBF_ID_TARGET] = "target", |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 444 | [ZFCP_REC_DBF_ID_TRIGGER] = "trigger", |
Martin Peschke | 6f4f365 | 2008-03-27 14:22:04 +0100 | [diff] [blame] | 445 | [ZFCP_REC_DBF_ID_ACTION] = "action", |
Martin Peschke | d79a83d | 2008-03-27 14:22:00 +0100 | [diff] [blame] | 446 | }; |
| 447 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 448 | static int zfcp_dbf_rec_view_format(debug_info_t *id, struct debug_view *view, |
Martin Peschke | d79a83d | 2008-03-27 14:22:00 +0100 | [diff] [blame] | 449 | char *buf, const char *_rec) |
| 450 | { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 451 | struct zfcp_dbf_rec_record *r = (struct zfcp_dbf_rec_record *)_rec; |
Martin Peschke | d79a83d | 2008-03-27 14:22:00 +0100 | [diff] [blame] | 452 | char *p = buf; |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 453 | char hint[ZFCP_DBF_ID_SIZE + 1]; |
Martin Peschke | d79a83d | 2008-03-27 14:22:00 +0100 | [diff] [blame] | 454 | |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 455 | memcpy(hint, r->id2, ZFCP_DBF_ID_SIZE); |
| 456 | hint[ZFCP_DBF_ID_SIZE] = 0; |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 457 | zfcp_dbf_outs(&p, "tag", zfcp_dbf_rec_tags[r->id]); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 458 | zfcp_dbf_outs(&p, "hint", hint); |
Martin Peschke | d79a83d | 2008-03-27 14:22:00 +0100 | [diff] [blame] | 459 | switch (r->id) { |
Martin Peschke | 348447e | 2008-03-27 14:22:01 +0100 | [diff] [blame] | 460 | case ZFCP_REC_DBF_ID_THREAD: |
Martin Peschke | 348447e | 2008-03-27 14:22:01 +0100 | [diff] [blame] | 461 | zfcp_dbf_out(&p, "total", "%d", r->u.thread.total); |
| 462 | zfcp_dbf_out(&p, "ready", "%d", r->u.thread.ready); |
| 463 | zfcp_dbf_out(&p, "running", "%d", r->u.thread.running); |
| 464 | break; |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 465 | case ZFCP_REC_DBF_ID_TARGET: |
| 466 | zfcp_dbf_out(&p, "reference", "0x%016Lx", r->u.target.ref); |
| 467 | zfcp_dbf_out(&p, "status", "0x%08x", r->u.target.status); |
| 468 | zfcp_dbf_out(&p, "erp_count", "%d", r->u.target.erp_count); |
| 469 | zfcp_dbf_out(&p, "d_id", "0x%06x", r->u.target.d_id); |
| 470 | zfcp_dbf_out(&p, "wwpn", "0x%016Lx", r->u.target.wwpn); |
| 471 | zfcp_dbf_out(&p, "fcp_lun", "0x%016Lx", r->u.target.fcp_lun); |
| 472 | break; |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 473 | case ZFCP_REC_DBF_ID_TRIGGER: |
| 474 | zfcp_dbf_out(&p, "reference", "0x%016Lx", r->u.trigger.ref); |
| 475 | zfcp_dbf_out(&p, "erp_action", "0x%016Lx", r->u.trigger.action); |
| 476 | zfcp_dbf_out(&p, "requested", "%d", r->u.trigger.want); |
| 477 | zfcp_dbf_out(&p, "executed", "%d", r->u.trigger.need); |
| 478 | zfcp_dbf_out(&p, "wwpn", "0x%016Lx", r->u.trigger.wwpn); |
| 479 | zfcp_dbf_out(&p, "fcp_lun", "0x%016Lx", r->u.trigger.fcp_lun); |
| 480 | zfcp_dbf_out(&p, "adapter_status", "0x%08x", r->u.trigger.as); |
| 481 | zfcp_dbf_out(&p, "port_status", "0x%08x", r->u.trigger.ps); |
| 482 | zfcp_dbf_out(&p, "unit_status", "0x%08x", r->u.trigger.us); |
| 483 | break; |
Martin Peschke | 6f4f365 | 2008-03-27 14:22:04 +0100 | [diff] [blame] | 484 | case ZFCP_REC_DBF_ID_ACTION: |
| 485 | zfcp_dbf_out(&p, "erp_action", "0x%016Lx", r->u.action.action); |
| 486 | zfcp_dbf_out(&p, "fsf_req", "0x%016Lx", r->u.action.fsf_req); |
| 487 | zfcp_dbf_out(&p, "status", "0x%08Lx", r->u.action.status); |
| 488 | zfcp_dbf_out(&p, "step", "0x%08Lx", r->u.action.step); |
| 489 | break; |
Martin Peschke | d79a83d | 2008-03-27 14:22:00 +0100 | [diff] [blame] | 490 | } |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 491 | p += sprintf(p, "\n"); |
| 492 | return p - buf; |
Martin Peschke | d79a83d | 2008-03-27 14:22:00 +0100 | [diff] [blame] | 493 | } |
| 494 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 495 | static struct debug_view zfcp_dbf_rec_view = { |
| 496 | .name = "structured", |
| 497 | .header_proc = zfcp_dbf_view_header, |
| 498 | .format_proc = zfcp_dbf_rec_view_format, |
Martin Peschke | d79a83d | 2008-03-27 14:22:00 +0100 | [diff] [blame] | 499 | }; |
| 500 | |
Martin Peschke | 348447e | 2008-03-27 14:22:01 +0100 | [diff] [blame] | 501 | /** |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 502 | * zfcp_dbf_rec_thread - trace event related to recovery thread operation |
Martin Peschke | 348447e | 2008-03-27 14:22:01 +0100 | [diff] [blame] | 503 | * @id2: identifier for event |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 504 | * @dbf: reference to dbf structure |
Christof Schmitt | aa0fec6 | 2008-05-19 12:17:47 +0200 | [diff] [blame] | 505 | * This function assumes that the caller is holding erp_lock. |
Martin Peschke | 348447e | 2008-03-27 14:22:01 +0100 | [diff] [blame] | 506 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 507 | void zfcp_dbf_rec_thread(char *id2, struct zfcp_dbf *dbf) |
Martin Peschke | 348447e | 2008-03-27 14:22:01 +0100 | [diff] [blame] | 508 | { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 509 | struct zfcp_adapter *adapter = dbf->adapter; |
| 510 | struct zfcp_dbf_rec_record *r = &dbf->rec_buf; |
Martin Peschke | 348447e | 2008-03-27 14:22:01 +0100 | [diff] [blame] | 511 | unsigned long flags = 0; |
| 512 | struct list_head *entry; |
| 513 | unsigned ready = 0, running = 0, total; |
| 514 | |
Martin Peschke | 348447e | 2008-03-27 14:22:01 +0100 | [diff] [blame] | 515 | list_for_each(entry, &adapter->erp_ready_head) |
| 516 | ready++; |
| 517 | list_for_each(entry, &adapter->erp_running_head) |
| 518 | running++; |
| 519 | total = adapter->erp_total_count; |
Martin Peschke | 348447e | 2008-03-27 14:22:01 +0100 | [diff] [blame] | 520 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 521 | spin_lock_irqsave(&dbf->rec_lock, flags); |
Martin Peschke | 348447e | 2008-03-27 14:22:01 +0100 | [diff] [blame] | 522 | memset(r, 0, sizeof(*r)); |
| 523 | r->id = ZFCP_REC_DBF_ID_THREAD; |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 524 | memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE); |
Martin Peschke | 348447e | 2008-03-27 14:22:01 +0100 | [diff] [blame] | 525 | r->u.thread.total = total; |
| 526 | r->u.thread.ready = ready; |
| 527 | r->u.thread.running = running; |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 528 | debug_event(dbf->rec, 6, r, sizeof(*r)); |
| 529 | spin_unlock_irqrestore(&dbf->rec_lock, flags); |
Martin Peschke | 348447e | 2008-03-27 14:22:01 +0100 | [diff] [blame] | 530 | } |
| 531 | |
Christof Schmitt | aa0fec6 | 2008-05-19 12:17:47 +0200 | [diff] [blame] | 532 | /** |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 533 | * zfcp_dbf_rec_thread - trace event related to recovery thread operation |
Christof Schmitt | aa0fec6 | 2008-05-19 12:17:47 +0200 | [diff] [blame] | 534 | * @id2: identifier for event |
| 535 | * @adapter: adapter |
| 536 | * This function assumes that the caller does not hold erp_lock. |
| 537 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 538 | void zfcp_dbf_rec_thread_lock(char *id2, struct zfcp_dbf *dbf) |
Christof Schmitt | aa0fec6 | 2008-05-19 12:17:47 +0200 | [diff] [blame] | 539 | { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 540 | struct zfcp_adapter *adapter = dbf->adapter; |
Christof Schmitt | aa0fec6 | 2008-05-19 12:17:47 +0200 | [diff] [blame] | 541 | unsigned long flags; |
| 542 | |
| 543 | read_lock_irqsave(&adapter->erp_lock, flags); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 544 | zfcp_dbf_rec_thread(id2, dbf); |
Christof Schmitt | aa0fec6 | 2008-05-19 12:17:47 +0200 | [diff] [blame] | 545 | read_unlock_irqrestore(&adapter->erp_lock, flags); |
| 546 | } |
| 547 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 548 | static void zfcp_dbf_rec_target(char *id2, void *ref, struct zfcp_dbf *dbf, |
| 549 | atomic_t *status, atomic_t *erp_count, u64 wwpn, |
| 550 | u32 d_id, u64 fcp_lun) |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 551 | { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 552 | struct zfcp_dbf_rec_record *r = &dbf->rec_buf; |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 553 | unsigned long flags; |
| 554 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 555 | spin_lock_irqsave(&dbf->rec_lock, flags); |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 556 | memset(r, 0, sizeof(*r)); |
| 557 | r->id = ZFCP_REC_DBF_ID_TARGET; |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 558 | memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE); |
Martin Peschke | 1f6f712 | 2008-04-18 12:51:55 +0200 | [diff] [blame] | 559 | r->u.target.ref = (unsigned long)ref; |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 560 | r->u.target.status = atomic_read(status); |
| 561 | r->u.target.wwpn = wwpn; |
| 562 | r->u.target.d_id = d_id; |
| 563 | r->u.target.fcp_lun = fcp_lun; |
| 564 | r->u.target.erp_count = atomic_read(erp_count); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 565 | debug_event(dbf->rec, 3, r, sizeof(*r)); |
| 566 | spin_unlock_irqrestore(&dbf->rec_lock, flags); |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 567 | } |
| 568 | |
| 569 | /** |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 570 | * zfcp_dbf_rec_adapter - trace event for adapter state change |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 571 | * @id: identifier for trigger of state change |
| 572 | * @ref: additional reference (e.g. request) |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 573 | * @dbf: reference to dbf structure |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 574 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 575 | void zfcp_dbf_rec_adapter(char *id, void *ref, struct zfcp_dbf *dbf) |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 576 | { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 577 | struct zfcp_adapter *adapter = dbf->adapter; |
| 578 | |
| 579 | zfcp_dbf_rec_target(id, ref, dbf, &adapter->status, |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 580 | &adapter->erp_counter, 0, 0, 0); |
| 581 | } |
| 582 | |
| 583 | /** |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 584 | * zfcp_dbf_rec_port - trace event for port state change |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 585 | * @id: identifier for trigger of state change |
| 586 | * @ref: additional reference (e.g. request) |
| 587 | * @port: port |
| 588 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 589 | void zfcp_dbf_rec_port(char *id, void *ref, struct zfcp_port *port) |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 590 | { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 591 | struct zfcp_dbf *dbf = port->adapter->dbf; |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 592 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 593 | zfcp_dbf_rec_target(id, ref, dbf, &port->status, |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 594 | &port->erp_counter, port->wwpn, port->d_id, |
| 595 | 0); |
| 596 | } |
| 597 | |
| 598 | /** |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 599 | * zfcp_dbf_rec_unit - trace event for unit state change |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 600 | * @id: identifier for trigger of state change |
| 601 | * @ref: additional reference (e.g. request) |
| 602 | * @unit: unit |
| 603 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 604 | void zfcp_dbf_rec_unit(char *id, void *ref, struct zfcp_unit *unit) |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 605 | { |
| 606 | struct zfcp_port *port = unit->port; |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 607 | struct zfcp_dbf *dbf = port->adapter->dbf; |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 608 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 609 | zfcp_dbf_rec_target(id, ref, dbf, &unit->status, |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 610 | &unit->erp_counter, port->wwpn, port->d_id, |
| 611 | unit->fcp_lun); |
| 612 | } |
| 613 | |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 614 | /** |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 615 | * zfcp_dbf_rec_trigger - trace event for triggered error recovery |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 616 | * @id2: identifier for error recovery trigger |
| 617 | * @ref: additional reference (e.g. request) |
| 618 | * @want: originally requested error recovery action |
| 619 | * @need: error recovery action actually initiated |
| 620 | * @action: address of error recovery action struct |
| 621 | * @adapter: adapter |
| 622 | * @port: port |
| 623 | * @unit: unit |
| 624 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 625 | void zfcp_dbf_rec_trigger(char *id2, void *ref, u8 want, u8 need, void *action, |
| 626 | struct zfcp_adapter *adapter, struct zfcp_port *port, |
| 627 | struct zfcp_unit *unit) |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 628 | { |
Christof Schmitt | d46f384 | 2009-08-18 15:43:07 +0200 | [diff] [blame] | 629 | struct zfcp_dbf *dbf = adapter->dbf; |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 630 | struct zfcp_dbf_rec_record *r = &dbf->rec_buf; |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 631 | unsigned long flags; |
| 632 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 633 | spin_lock_irqsave(&dbf->rec_lock, flags); |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 634 | memset(r, 0, sizeof(*r)); |
| 635 | r->id = ZFCP_REC_DBF_ID_TRIGGER; |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 636 | memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE); |
Martin Peschke | 1f6f712 | 2008-04-18 12:51:55 +0200 | [diff] [blame] | 637 | r->u.trigger.ref = (unsigned long)ref; |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 638 | r->u.trigger.want = want; |
| 639 | r->u.trigger.need = need; |
Martin Peschke | 1f6f712 | 2008-04-18 12:51:55 +0200 | [diff] [blame] | 640 | r->u.trigger.action = (unsigned long)action; |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 641 | r->u.trigger.as = atomic_read(&adapter->status); |
| 642 | if (port) { |
| 643 | r->u.trigger.ps = atomic_read(&port->status); |
| 644 | r->u.trigger.wwpn = port->wwpn; |
| 645 | } |
| 646 | if (unit) { |
| 647 | r->u.trigger.us = atomic_read(&unit->status); |
| 648 | r->u.trigger.fcp_lun = unit->fcp_lun; |
| 649 | } |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 650 | debug_event(dbf->rec, action ? 1 : 4, r, sizeof(*r)); |
| 651 | spin_unlock_irqrestore(&dbf->rec_lock, flags); |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 652 | } |
| 653 | |
Martin Peschke | 6f4f365 | 2008-03-27 14:22:04 +0100 | [diff] [blame] | 654 | /** |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 655 | * zfcp_dbf_rec_action - trace event showing progress of recovery action |
Martin Peschke | 6f4f365 | 2008-03-27 14:22:04 +0100 | [diff] [blame] | 656 | * @id2: identifier |
| 657 | * @erp_action: error recovery action struct pointer |
| 658 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 659 | void zfcp_dbf_rec_action(char *id2, struct zfcp_erp_action *erp_action) |
Martin Peschke | 6f4f365 | 2008-03-27 14:22:04 +0100 | [diff] [blame] | 660 | { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 661 | struct zfcp_dbf *dbf = erp_action->adapter->dbf; |
| 662 | struct zfcp_dbf_rec_record *r = &dbf->rec_buf; |
Martin Peschke | 6f4f365 | 2008-03-27 14:22:04 +0100 | [diff] [blame] | 663 | unsigned long flags; |
| 664 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 665 | spin_lock_irqsave(&dbf->rec_lock, flags); |
Martin Peschke | 6f4f365 | 2008-03-27 14:22:04 +0100 | [diff] [blame] | 666 | memset(r, 0, sizeof(*r)); |
| 667 | r->id = ZFCP_REC_DBF_ID_ACTION; |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 668 | memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE); |
Martin Peschke | 1f6f712 | 2008-04-18 12:51:55 +0200 | [diff] [blame] | 669 | r->u.action.action = (unsigned long)erp_action; |
Martin Peschke | 6f4f365 | 2008-03-27 14:22:04 +0100 | [diff] [blame] | 670 | r->u.action.status = erp_action->status; |
| 671 | r->u.action.step = erp_action->step; |
Martin Peschke | 1f6f712 | 2008-04-18 12:51:55 +0200 | [diff] [blame] | 672 | r->u.action.fsf_req = (unsigned long)erp_action->fsf_req; |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 673 | debug_event(dbf->rec, 5, r, sizeof(*r)); |
| 674 | spin_unlock_irqrestore(&dbf->rec_lock, flags); |
Martin Peschke | 6f4f365 | 2008-03-27 14:22:04 +0100 | [diff] [blame] | 675 | } |
| 676 | |
Martin Peschke | bfab163 | 2008-03-31 11:15:31 +0200 | [diff] [blame] | 677 | /** |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 678 | * zfcp_dbf_san_ct_request - trace event for issued CT request |
Martin Peschke | bfab163 | 2008-03-31 11:15:31 +0200 | [diff] [blame] | 679 | * @fsf_req: request containing issued CT data |
| 680 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 681 | void zfcp_dbf_san_ct_request(struct zfcp_fsf_req *fsf_req) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 682 | { |
| 683 | struct zfcp_send_ct *ct = (struct zfcp_send_ct *)fsf_req->data; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 684 | struct zfcp_wka_port *wka_port = ct->wka_port; |
| 685 | struct zfcp_adapter *adapter = wka_port->adapter; |
Christof Schmitt | d46f384 | 2009-08-18 15:43:07 +0200 | [diff] [blame] | 686 | struct zfcp_dbf *dbf = adapter->dbf; |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame^] | 687 | struct fc_ct_hdr *hdr = sg_virt(ct->req); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 688 | struct zfcp_dbf_san_record *r = &dbf->san_buf; |
| 689 | struct zfcp_dbf_san_record_ct_request *oct = &r->u.ct_req; |
Christof Schmitt | d94ce6c | 2008-11-04 16:35:12 +0100 | [diff] [blame] | 690 | int level = 3; |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 691 | unsigned long flags; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 692 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 693 | spin_lock_irqsave(&dbf->san_lock, flags); |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 694 | memset(r, 0, sizeof(*r)); |
| 695 | strncpy(r->tag, "octc", ZFCP_DBF_TAG_SIZE); |
Christof Schmitt | f0216ae | 2009-05-15 13:18:14 +0200 | [diff] [blame] | 696 | r->fsf_reqid = fsf_req->req_id; |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 697 | r->fsf_seqno = fsf_req->seq_no; |
| 698 | r->s_id = fc_host_port_id(adapter->scsi_host); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 699 | r->d_id = wka_port->d_id; |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame^] | 700 | oct->cmd_req_code = hdr->ct_cmd; |
| 701 | oct->revision = hdr->ct_rev; |
| 702 | oct->gs_type = hdr->ct_fs_type; |
| 703 | oct->gs_subtype = hdr->ct_fs_subtype; |
| 704 | oct->options = hdr->ct_options; |
| 705 | oct->max_res_size = hdr->ct_mr_size; |
| 706 | oct->len = min((int)ct->req->length - (int)sizeof(struct fc_ct_hdr), |
Christof Schmitt | d94ce6c | 2008-11-04 16:35:12 +0100 | [diff] [blame] | 707 | ZFCP_DBF_SAN_MAX_PAYLOAD); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 708 | debug_event(dbf->san, level, r, sizeof(*r)); |
| 709 | zfcp_dbf_hexdump(dbf->san, r, sizeof(*r), level, |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame^] | 710 | (void *)hdr + sizeof(struct fc_ct_hdr), oct->len); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 711 | spin_unlock_irqrestore(&dbf->san_lock, flags); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 712 | } |
| 713 | |
Martin Peschke | bfab163 | 2008-03-31 11:15:31 +0200 | [diff] [blame] | 714 | /** |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 715 | * zfcp_dbf_san_ct_response - trace event for completion of CT request |
Martin Peschke | bfab163 | 2008-03-31 11:15:31 +0200 | [diff] [blame] | 716 | * @fsf_req: request containing CT response |
| 717 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 718 | void zfcp_dbf_san_ct_response(struct zfcp_fsf_req *fsf_req) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 719 | { |
| 720 | struct zfcp_send_ct *ct = (struct zfcp_send_ct *)fsf_req->data; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 721 | struct zfcp_wka_port *wka_port = ct->wka_port; |
| 722 | struct zfcp_adapter *adapter = wka_port->adapter; |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame^] | 723 | struct fc_ct_hdr *hdr = sg_virt(ct->resp); |
Christof Schmitt | d46f384 | 2009-08-18 15:43:07 +0200 | [diff] [blame] | 724 | struct zfcp_dbf *dbf = adapter->dbf; |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 725 | struct zfcp_dbf_san_record *r = &dbf->san_buf; |
| 726 | struct zfcp_dbf_san_record_ct_response *rct = &r->u.ct_resp; |
Christof Schmitt | d94ce6c | 2008-11-04 16:35:12 +0100 | [diff] [blame] | 727 | int level = 3; |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 728 | unsigned long flags; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 729 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 730 | spin_lock_irqsave(&dbf->san_lock, flags); |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 731 | memset(r, 0, sizeof(*r)); |
| 732 | strncpy(r->tag, "rctc", ZFCP_DBF_TAG_SIZE); |
Christof Schmitt | f0216ae | 2009-05-15 13:18:14 +0200 | [diff] [blame] | 733 | r->fsf_reqid = fsf_req->req_id; |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 734 | r->fsf_seqno = fsf_req->seq_no; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 735 | r->s_id = wka_port->d_id; |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 736 | r->d_id = fc_host_port_id(adapter->scsi_host); |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame^] | 737 | rct->cmd_rsp_code = hdr->ct_cmd; |
| 738 | rct->revision = hdr->ct_rev; |
| 739 | rct->reason_code = hdr->ct_reason; |
| 740 | rct->expl = hdr->ct_explan; |
| 741 | rct->vendor_unique = hdr->ct_vendor; |
| 742 | rct->max_res_size = hdr->ct_mr_size; |
| 743 | rct->len = min((int)ct->resp->length - (int)sizeof(struct fc_ct_hdr), |
Christof Schmitt | d94ce6c | 2008-11-04 16:35:12 +0100 | [diff] [blame] | 744 | ZFCP_DBF_SAN_MAX_PAYLOAD); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 745 | debug_event(dbf->san, level, r, sizeof(*r)); |
| 746 | zfcp_dbf_hexdump(dbf->san, r, sizeof(*r), level, |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame^] | 747 | (void *)hdr + sizeof(struct fc_ct_hdr), rct->len); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 748 | spin_unlock_irqrestore(&dbf->san_lock, flags); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 749 | } |
| 750 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 751 | static void zfcp_dbf_san_els(const char *tag, int level, |
| 752 | struct zfcp_fsf_req *fsf_req, u32 s_id, u32 d_id, |
| 753 | u8 ls_code, void *buffer, int buflen) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 754 | { |
| 755 | struct zfcp_adapter *adapter = fsf_req->adapter; |
Christof Schmitt | d46f384 | 2009-08-18 15:43:07 +0200 | [diff] [blame] | 756 | struct zfcp_dbf *dbf = adapter->dbf; |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 757 | struct zfcp_dbf_san_record *rec = &dbf->san_buf; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 758 | unsigned long flags; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 759 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 760 | spin_lock_irqsave(&dbf->san_lock, flags); |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 761 | memset(rec, 0, sizeof(*rec)); |
Martin Peschke | 0f65e95 | 2008-03-27 14:21:56 +0100 | [diff] [blame] | 762 | strncpy(rec->tag, tag, ZFCP_DBF_TAG_SIZE); |
Christof Schmitt | f0216ae | 2009-05-15 13:18:14 +0200 | [diff] [blame] | 763 | rec->fsf_reqid = fsf_req->req_id; |
Martin Peschke | 0f65e95 | 2008-03-27 14:21:56 +0100 | [diff] [blame] | 764 | rec->fsf_seqno = fsf_req->seq_no; |
| 765 | rec->s_id = s_id; |
| 766 | rec->d_id = d_id; |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 767 | rec->u.els.ls_code = ls_code; |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 768 | debug_event(dbf->san, level, rec, sizeof(*rec)); |
| 769 | zfcp_dbf_hexdump(dbf->san, rec, sizeof(*rec), level, |
Christof Schmitt | d94ce6c | 2008-11-04 16:35:12 +0100 | [diff] [blame] | 770 | buffer, min(buflen, ZFCP_DBF_SAN_MAX_PAYLOAD)); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 771 | spin_unlock_irqrestore(&dbf->san_lock, flags); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 772 | } |
| 773 | |
Martin Peschke | bfab163 | 2008-03-31 11:15:31 +0200 | [diff] [blame] | 774 | /** |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 775 | * zfcp_dbf_san_els_request - trace event for issued ELS |
Martin Peschke | bfab163 | 2008-03-31 11:15:31 +0200 | [diff] [blame] | 776 | * @fsf_req: request containing issued ELS |
| 777 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 778 | void zfcp_dbf_san_els_request(struct zfcp_fsf_req *fsf_req) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 779 | { |
| 780 | struct zfcp_send_els *els = (struct zfcp_send_els *)fsf_req->data; |
| 781 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 782 | zfcp_dbf_san_els("oels", 2, fsf_req, |
Martin Peschke | 92c7a83 | 2008-03-31 11:15:30 +0200 | [diff] [blame] | 783 | fc_host_port_id(els->adapter->scsi_host), |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 784 | els->d_id, *(u8 *) sg_virt(els->req), |
| 785 | sg_virt(els->req), els->req->length); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 786 | } |
| 787 | |
Martin Peschke | bfab163 | 2008-03-31 11:15:31 +0200 | [diff] [blame] | 788 | /** |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 789 | * zfcp_dbf_san_els_response - trace event for completed ELS |
Martin Peschke | bfab163 | 2008-03-31 11:15:31 +0200 | [diff] [blame] | 790 | * @fsf_req: request containing ELS response |
| 791 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 792 | void zfcp_dbf_san_els_response(struct zfcp_fsf_req *fsf_req) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 793 | { |
| 794 | struct zfcp_send_els *els = (struct zfcp_send_els *)fsf_req->data; |
| 795 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 796 | zfcp_dbf_san_els("rels", 2, fsf_req, els->d_id, |
Martin Peschke | 92c7a83 | 2008-03-31 11:15:30 +0200 | [diff] [blame] | 797 | fc_host_port_id(els->adapter->scsi_host), |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 798 | *(u8 *)sg_virt(els->req), sg_virt(els->resp), |
Martin Peschke | 92c7a83 | 2008-03-31 11:15:30 +0200 | [diff] [blame] | 799 | els->resp->length); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 800 | } |
| 801 | |
Martin Peschke | bfab163 | 2008-03-31 11:15:31 +0200 | [diff] [blame] | 802 | /** |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 803 | * zfcp_dbf_san_incoming_els - trace event for incomig ELS |
Martin Peschke | bfab163 | 2008-03-31 11:15:31 +0200 | [diff] [blame] | 804 | * @fsf_req: request containing unsolicited status buffer with incoming ELS |
| 805 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 806 | void zfcp_dbf_san_incoming_els(struct zfcp_fsf_req *fsf_req) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 807 | { |
| 808 | struct zfcp_adapter *adapter = fsf_req->adapter; |
Martin Peschke | 92c7a83 | 2008-03-31 11:15:30 +0200 | [diff] [blame] | 809 | struct fsf_status_read_buffer *buf = |
| 810 | (struct fsf_status_read_buffer *)fsf_req->data; |
| 811 | int length = (int)buf->length - |
| 812 | (int)((void *)&buf->payload - (void *)buf); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 813 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 814 | zfcp_dbf_san_els("iels", 1, fsf_req, buf->d_id, |
Martin Peschke | 92c7a83 | 2008-03-31 11:15:30 +0200 | [diff] [blame] | 815 | fc_host_port_id(adapter->scsi_host), |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 816 | buf->payload.data[0], (void *)buf->payload.data, |
Martin Peschke | 92c7a83 | 2008-03-31 11:15:30 +0200 | [diff] [blame] | 817 | length); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 818 | } |
| 819 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 820 | static int zfcp_dbf_san_view_format(debug_info_t *id, struct debug_view *view, |
Martin Peschke | 92c7a83 | 2008-03-31 11:15:30 +0200 | [diff] [blame] | 821 | char *out_buf, const char *in_buf) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 822 | { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 823 | struct zfcp_dbf_san_record *r = (struct zfcp_dbf_san_record *)in_buf; |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 824 | char *p = out_buf; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 825 | |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 826 | if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 827 | return 0; |
| 828 | |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 829 | zfcp_dbf_tag(&p, "tag", r->tag); |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 830 | zfcp_dbf_out(&p, "fsf_reqid", "0x%0Lx", r->fsf_reqid); |
| 831 | zfcp_dbf_out(&p, "fsf_seqno", "0x%08x", r->fsf_seqno); |
| 832 | zfcp_dbf_out(&p, "s_id", "0x%06x", r->s_id); |
| 833 | zfcp_dbf_out(&p, "d_id", "0x%06x", r->d_id); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 834 | |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 835 | if (strncmp(r->tag, "octc", ZFCP_DBF_TAG_SIZE) == 0) { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 836 | struct zfcp_dbf_san_record_ct_request *ct = &r->u.ct_req; |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 837 | zfcp_dbf_out(&p, "cmd_req_code", "0x%04x", ct->cmd_req_code); |
| 838 | zfcp_dbf_out(&p, "revision", "0x%02x", ct->revision); |
| 839 | zfcp_dbf_out(&p, "gs_type", "0x%02x", ct->gs_type); |
| 840 | zfcp_dbf_out(&p, "gs_subtype", "0x%02x", ct->gs_subtype); |
| 841 | zfcp_dbf_out(&p, "options", "0x%02x", ct->options); |
| 842 | zfcp_dbf_out(&p, "max_res_size", "0x%04x", ct->max_res_size); |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 843 | } else if (strncmp(r->tag, "rctc", ZFCP_DBF_TAG_SIZE) == 0) { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 844 | struct zfcp_dbf_san_record_ct_response *ct = &r->u.ct_resp; |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 845 | zfcp_dbf_out(&p, "cmd_rsp_code", "0x%04x", ct->cmd_rsp_code); |
| 846 | zfcp_dbf_out(&p, "revision", "0x%02x", ct->revision); |
| 847 | zfcp_dbf_out(&p, "reason_code", "0x%02x", ct->reason_code); |
| 848 | zfcp_dbf_out(&p, "reason_code_expl", "0x%02x", ct->expl); |
| 849 | zfcp_dbf_out(&p, "vendor_unique", "0x%02x", ct->vendor_unique); |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 850 | zfcp_dbf_out(&p, "max_res_size", "0x%04x", ct->max_res_size); |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 851 | } else if (strncmp(r->tag, "oels", ZFCP_DBF_TAG_SIZE) == 0 || |
| 852 | strncmp(r->tag, "rels", ZFCP_DBF_TAG_SIZE) == 0 || |
| 853 | strncmp(r->tag, "iels", ZFCP_DBF_TAG_SIZE) == 0) { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 854 | struct zfcp_dbf_san_record_els *els = &r->u.els; |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 855 | zfcp_dbf_out(&p, "ls_code", "0x%02x", els->ls_code); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 856 | } |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 857 | return p - out_buf; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 858 | } |
| 859 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 860 | static struct debug_view zfcp_dbf_san_view = { |
| 861 | .name = "structured", |
| 862 | .header_proc = zfcp_dbf_view_header, |
| 863 | .format_proc = zfcp_dbf_san_view_format, |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 864 | }; |
| 865 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 866 | void _zfcp_dbf_scsi(const char *tag, const char *tag2, int level, |
| 867 | struct zfcp_dbf *dbf, struct scsi_cmnd *scsi_cmnd, |
| 868 | struct zfcp_fsf_req *fsf_req, unsigned long old_req_id) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 869 | { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 870 | struct zfcp_dbf_scsi_record *rec = &dbf->scsi_buf; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 871 | struct zfcp_dbf_dump *dump = (struct zfcp_dbf_dump *)rec; |
| 872 | unsigned long flags; |
Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 873 | struct fcp_resp_with_ext *fcp_rsp; |
| 874 | struct fcp_resp_rsp_info *fcp_rsp_info = NULL; |
| 875 | char *fcp_sns_info = NULL; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 876 | int offset = 0, buflen = 0; |
| 877 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 878 | spin_lock_irqsave(&dbf->scsi_lock, flags); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 879 | do { |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 880 | memset(rec, 0, sizeof(*rec)); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 881 | if (offset == 0) { |
| 882 | strncpy(rec->tag, tag, ZFCP_DBF_TAG_SIZE); |
| 883 | strncpy(rec->tag2, tag2, ZFCP_DBF_TAG_SIZE); |
Maxim Shchetynin | ed829ad | 2006-02-11 01:42:58 +0100 | [diff] [blame] | 884 | if (scsi_cmnd != NULL) { |
| 885 | if (scsi_cmnd->device) { |
| 886 | rec->scsi_id = scsi_cmnd->device->id; |
| 887 | rec->scsi_lun = scsi_cmnd->device->lun; |
| 888 | } |
| 889 | rec->scsi_result = scsi_cmnd->result; |
| 890 | rec->scsi_cmnd = (unsigned long)scsi_cmnd; |
| 891 | rec->scsi_serial = scsi_cmnd->serial_number; |
Boaz Harrosh | 64a87b2 | 2008-04-30 11:19:47 +0300 | [diff] [blame] | 892 | memcpy(rec->scsi_opcode, scsi_cmnd->cmnd, |
Maxim Shchetynin | ed829ad | 2006-02-11 01:42:58 +0100 | [diff] [blame] | 893 | min((int)scsi_cmnd->cmd_len, |
| 894 | ZFCP_DBF_SCSI_OPCODE)); |
| 895 | rec->scsi_retries = scsi_cmnd->retries; |
| 896 | rec->scsi_allowed = scsi_cmnd->allowed; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 897 | } |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 898 | if (fsf_req != NULL) { |
Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 899 | fcp_rsp = (struct fcp_resp_with_ext *) |
| 900 | &(fsf_req->qtcb->bottom.io.fcp_rsp); |
| 901 | fcp_rsp_info = (struct fcp_resp_rsp_info *) |
| 902 | &fcp_rsp[1]; |
| 903 | fcp_sns_info = (char *) &fcp_rsp[1]; |
| 904 | if (fcp_rsp->resp.fr_flags & FCP_RSP_LEN_VAL) |
| 905 | fcp_sns_info += fcp_rsp->ext.fr_sns_len; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 906 | |
Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 907 | rec->rsp_validity = fcp_rsp->resp.fr_flags; |
| 908 | rec->rsp_scsi_status = fcp_rsp->resp.fr_status; |
| 909 | rec->rsp_resid = fcp_rsp->ext.fr_resid; |
| 910 | if (fcp_rsp->resp.fr_flags & FCP_RSP_LEN_VAL) |
| 911 | rec->rsp_code = fcp_rsp_info->rsp_code; |
| 912 | if (fcp_rsp->resp.fr_flags & FCP_SNS_LEN_VAL) { |
| 913 | buflen = min(fcp_rsp->ext.fr_sns_len, |
| 914 | (u32)ZFCP_DBF_SCSI_MAX_FCP_SNS_INFO); |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 915 | rec->sns_info_len = buflen; |
| 916 | memcpy(rec->sns_info, fcp_sns_info, |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 917 | min(buflen, |
| 918 | ZFCP_DBF_SCSI_FCP_SNS_INFO)); |
| 919 | offset += min(buflen, |
| 920 | ZFCP_DBF_SCSI_FCP_SNS_INFO); |
| 921 | } |
| 922 | |
Christof Schmitt | f0216ae | 2009-05-15 13:18:14 +0200 | [diff] [blame] | 923 | rec->fsf_reqid = fsf_req->req_id; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 924 | rec->fsf_seqno = fsf_req->seq_no; |
| 925 | rec->fsf_issued = fsf_req->issued; |
| 926 | } |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 927 | rec->old_fsf_reqid = old_req_id; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 928 | } else { |
| 929 | strncpy(dump->tag, "dump", ZFCP_DBF_TAG_SIZE); |
| 930 | dump->total_size = buflen; |
| 931 | dump->offset = offset; |
| 932 | dump->size = min(buflen - offset, |
| 933 | (int)sizeof(struct |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 934 | zfcp_dbf_scsi_record) - |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 935 | (int)sizeof(struct zfcp_dbf_dump)); |
| 936 | memcpy(dump->data, fcp_sns_info + offset, dump->size); |
| 937 | offset += dump->size; |
| 938 | } |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 939 | debug_event(dbf->scsi, level, rec, sizeof(*rec)); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 940 | } while (offset < buflen); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 941 | spin_unlock_irqrestore(&dbf->scsi_lock, flags); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 942 | } |
| 943 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 944 | static int zfcp_dbf_scsi_view_format(debug_info_t *id, struct debug_view *view, |
Martin Peschke | 92c7a83 | 2008-03-31 11:15:30 +0200 | [diff] [blame] | 945 | char *out_buf, const char *in_buf) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 946 | { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 947 | struct zfcp_dbf_scsi_record *r = (struct zfcp_dbf_scsi_record *)in_buf; |
Martin Peschke | 8fc5af1 | 2008-03-31 11:15:23 +0200 | [diff] [blame] | 948 | struct timespec t; |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 949 | char *p = out_buf; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 950 | |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 951 | if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 952 | return 0; |
| 953 | |
Martin Peschke | a9c8577 | 2008-03-31 11:15:27 +0200 | [diff] [blame] | 954 | zfcp_dbf_tag(&p, "tag", r->tag); |
| 955 | zfcp_dbf_tag(&p, "tag2", r->tag2); |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 956 | zfcp_dbf_out(&p, "scsi_id", "0x%08x", r->scsi_id); |
| 957 | zfcp_dbf_out(&p, "scsi_lun", "0x%08x", r->scsi_lun); |
| 958 | zfcp_dbf_out(&p, "scsi_result", "0x%08x", r->scsi_result); |
| 959 | zfcp_dbf_out(&p, "scsi_cmnd", "0x%0Lx", r->scsi_cmnd); |
| 960 | zfcp_dbf_out(&p, "scsi_serial", "0x%016Lx", r->scsi_serial); |
Martin Peschke | df29f4a | 2008-03-31 11:15:26 +0200 | [diff] [blame] | 961 | zfcp_dbf_outd(&p, "scsi_opcode", r->scsi_opcode, ZFCP_DBF_SCSI_OPCODE, |
| 962 | 0, ZFCP_DBF_SCSI_OPCODE); |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 963 | zfcp_dbf_out(&p, "scsi_retries", "0x%02x", r->scsi_retries); |
| 964 | zfcp_dbf_out(&p, "scsi_allowed", "0x%02x", r->scsi_allowed); |
| 965 | if (strncmp(r->tag, "abrt", ZFCP_DBF_TAG_SIZE) == 0) |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 966 | zfcp_dbf_out(&p, "old_fsf_reqid", "0x%0Lx", r->old_fsf_reqid); |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 967 | zfcp_dbf_out(&p, "fsf_reqid", "0x%0Lx", r->fsf_reqid); |
| 968 | zfcp_dbf_out(&p, "fsf_seqno", "0x%08x", r->fsf_seqno); |
Christof Schmitt | b592e89 | 2009-08-18 15:43:31 +0200 | [diff] [blame] | 969 | stck_to_timespec(r->fsf_issued, &t); |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 970 | zfcp_dbf_out(&p, "fsf_issued", "%011lu:%06lu", t.tv_sec, t.tv_nsec); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 971 | |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 972 | if (strncmp(r->tag, "rslt", ZFCP_DBF_TAG_SIZE) == 0) { |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 973 | zfcp_dbf_out(&p, "fcp_rsp_validity", "0x%02x", r->rsp_validity); |
| 974 | zfcp_dbf_out(&p, "fcp_rsp_scsi_status", "0x%02x", |
| 975 | r->rsp_scsi_status); |
| 976 | zfcp_dbf_out(&p, "fcp_rsp_resid", "0x%08x", r->rsp_resid); |
| 977 | zfcp_dbf_out(&p, "fcp_rsp_code", "0x%08x", r->rsp_code); |
| 978 | zfcp_dbf_out(&p, "fcp_sns_info_len", "0x%08x", r->sns_info_len); |
| 979 | zfcp_dbf_outd(&p, "fcp_sns_info", r->sns_info, |
| 980 | min((int)r->sns_info_len, |
Martin Peschke | df29f4a | 2008-03-31 11:15:26 +0200 | [diff] [blame] | 981 | ZFCP_DBF_SCSI_FCP_SNS_INFO), 0, |
Martin Peschke | 6bc473d | 2008-03-31 11:15:29 +0200 | [diff] [blame] | 982 | r->sns_info_len); |
Martin Peschke | b634fff | 2008-03-31 11:15:24 +0200 | [diff] [blame] | 983 | } |
| 984 | p += sprintf(p, "\n"); |
| 985 | return p - out_buf; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 986 | } |
| 987 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 988 | static struct debug_view zfcp_dbf_scsi_view = { |
| 989 | .name = "structured", |
| 990 | .header_proc = zfcp_dbf_view_header, |
| 991 | .format_proc = zfcp_dbf_scsi_view_format, |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 992 | }; |
| 993 | |
Christof Schmitt | d46f384 | 2009-08-18 15:43:07 +0200 | [diff] [blame] | 994 | static debug_info_t *zfcp_dbf_reg(const char *name, int level, |
| 995 | struct debug_view *view, int size) |
| 996 | { |
| 997 | struct debug_info *d; |
| 998 | |
| 999 | d = debug_register(name, dbfsize, level, size); |
| 1000 | if (!d) |
| 1001 | return NULL; |
| 1002 | |
| 1003 | debug_register_view(d, &debug_hex_ascii_view); |
| 1004 | debug_register_view(d, view); |
| 1005 | debug_set_level(d, level); |
| 1006 | |
| 1007 | return d; |
| 1008 | } |
| 1009 | |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 1010 | /** |
| 1011 | * zfcp_adapter_debug_register - registers debug feature for an adapter |
| 1012 | * @adapter: pointer to adapter for which debug features should be registered |
| 1013 | * return: -ENOMEM on error, 0 otherwise |
| 1014 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1015 | int zfcp_dbf_adapter_register(struct zfcp_adapter *adapter) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 1016 | { |
| 1017 | char dbf_name[DEBUG_MAX_NAME_LEN]; |
Christof Schmitt | d46f384 | 2009-08-18 15:43:07 +0200 | [diff] [blame] | 1018 | struct zfcp_dbf *dbf; |
| 1019 | |
| 1020 | dbf = kmalloc(sizeof(struct zfcp_dbf), GFP_KERNEL); |
| 1021 | if (!dbf) |
| 1022 | return -ENOMEM; |
| 1023 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1024 | dbf->adapter = adapter; |
| 1025 | |
| 1026 | spin_lock_init(&dbf->hba_lock); |
| 1027 | spin_lock_init(&dbf->san_lock); |
| 1028 | spin_lock_init(&dbf->scsi_lock); |
| 1029 | spin_lock_init(&dbf->rec_lock); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 1030 | |
| 1031 | /* debug feature area which records recovery activity */ |
Christof Schmitt | b225cf9 | 2008-12-19 16:57:00 +0100 | [diff] [blame] | 1032 | sprintf(dbf_name, "zfcp_%s_rec", dev_name(&adapter->ccw_device->dev)); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1033 | dbf->rec = zfcp_dbf_reg(dbf_name, 3, &zfcp_dbf_rec_view, |
| 1034 | sizeof(struct zfcp_dbf_rec_record)); |
| 1035 | if (!dbf->rec) |
| 1036 | goto err_out; |
Martin Peschke | d79a83d | 2008-03-27 14:22:00 +0100 | [diff] [blame] | 1037 | |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 1038 | /* debug feature area which records HBA (FSF and QDIO) conditions */ |
Christof Schmitt | b225cf9 | 2008-12-19 16:57:00 +0100 | [diff] [blame] | 1039 | sprintf(dbf_name, "zfcp_%s_hba", dev_name(&adapter->ccw_device->dev)); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1040 | dbf->hba = zfcp_dbf_reg(dbf_name, 3, &zfcp_dbf_hba_view, |
| 1041 | sizeof(struct zfcp_dbf_hba_record)); |
| 1042 | if (!dbf->hba) |
| 1043 | goto err_out; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 1044 | |
| 1045 | /* debug feature area which records SAN command failures and recovery */ |
Christof Schmitt | b225cf9 | 2008-12-19 16:57:00 +0100 | [diff] [blame] | 1046 | sprintf(dbf_name, "zfcp_%s_san", dev_name(&adapter->ccw_device->dev)); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1047 | dbf->san = zfcp_dbf_reg(dbf_name, 6, &zfcp_dbf_san_view, |
| 1048 | sizeof(struct zfcp_dbf_san_record)); |
| 1049 | if (!dbf->san) |
| 1050 | goto err_out; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 1051 | |
| 1052 | /* debug feature area which records SCSI command failures and recovery */ |
Christof Schmitt | b225cf9 | 2008-12-19 16:57:00 +0100 | [diff] [blame] | 1053 | sprintf(dbf_name, "zfcp_%s_scsi", dev_name(&adapter->ccw_device->dev)); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1054 | dbf->scsi = zfcp_dbf_reg(dbf_name, 3, &zfcp_dbf_scsi_view, |
| 1055 | sizeof(struct zfcp_dbf_scsi_record)); |
| 1056 | if (!dbf->scsi) |
| 1057 | goto err_out; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 1058 | |
Christof Schmitt | d46f384 | 2009-08-18 15:43:07 +0200 | [diff] [blame] | 1059 | adapter->dbf = dbf; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 1060 | return 0; |
| 1061 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1062 | err_out: |
| 1063 | zfcp_dbf_adapter_unregister(dbf); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 1064 | return -ENOMEM; |
| 1065 | } |
| 1066 | |
| 1067 | /** |
| 1068 | * zfcp_adapter_debug_unregister - unregisters debug feature for an adapter |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1069 | * @dbf: pointer to dbf for which debug features should be unregistered |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 1070 | */ |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1071 | void zfcp_dbf_adapter_unregister(struct zfcp_dbf *dbf) |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 1072 | { |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 1073 | if (!dbf) |
| 1074 | return; |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1075 | debug_unregister(dbf->scsi); |
| 1076 | debug_unregister(dbf->san); |
| 1077 | debug_unregister(dbf->hba); |
| 1078 | debug_unregister(dbf->rec); |
| 1079 | dbf->adapter->dbf = NULL; |
| 1080 | kfree(dbf); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 1081 | } |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1082 | |