blob: 995e6128b6c94e7afe1a40a76c1951b5cfba2ba4 [file] [log] [blame]
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001/*
Christof Schmitt553448f2008-06-10 18:20:58 +02002 * zfcp device driver
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02003 *
Christof Schmitt553448f2008-06-10 18:20:58 +02004 * Debug traces for zfcp.
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02005 *
Christof Schmittd46f3842009-08-18 15:43:07 +02006 * Copyright IBM Corporation 2002, 2009
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02007 */
8
Christof Schmittecf39d42008-12-25 13:39:53 +01009#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020012#include <linux/ctype.h>
Heiko Carstens364c8552007-10-12 16:11:35 +020013#include <asm/debug.h>
Christof Schmittd46f3842009-08-18 15:43:07 +020014#include "zfcp_dbf.h"
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020015#include "zfcp_ext.h"
16
17static u32 dbfsize = 4;
18
19module_param(dbfsize, uint, 0400);
20MODULE_PARM_DESC(dbfsize,
21 "number of pages for each debug feature area (default 4)");
22
Martin Peschkec15450e2008-03-27 14:21:55 +010023static 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 Schmittd94ce6c2008-11-04 16:35:12 +010037 debug_event(dbf, level, dump, dump->size + sizeof(*dump));
Martin Peschkec15450e2008-03-27 14:21:55 +010038 }
39}
40
Martin Peschke8fc5af12008-03-31 11:15:23 +020041/* FIXME: this duplicate this code in s390 debug feature */
42static void zfcp_dbf_timestamp(unsigned long long stck, struct timespec *time)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020043{
44 unsigned long long sec;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020045
46 stck -= 0x8126d60e46000000LL - (0x3c26700LL * 1000000 * 4096);
47 sec = stck >> 12;
48 do_div(sec, 1000000);
Martin Peschke8fc5af12008-03-31 11:15:23 +020049 time->tv_sec = sec;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020050 stck -= (sec * 1000000) << 12;
Martin Peschke8fc5af12008-03-31 11:15:23 +020051 time->tv_nsec = ((stck * 1000) >> 12);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020052}
53
Martin Peschkea9c85772008-03-31 11:15:27 +020054static void zfcp_dbf_tag(char **p, const char *label, const char *tag)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020055{
Martin Peschkea9c85772008-03-31 11:15:27 +020056 int i;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020057
Martin Peschkea9c85772008-03-31 11:15:27 +020058 *p += sprintf(*p, "%-24s", label);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020059 for (i = 0; i < ZFCP_DBF_TAG_SIZE; i++)
Martin Peschkea9c85772008-03-31 11:15:27 +020060 *p += sprintf(*p, "%c", tag[i]);
61 *p += sprintf(*p, "\n");
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020062}
63
Martin Peschke10223c62008-03-27 14:21:59 +010064static void zfcp_dbf_outs(char **buf, const char *s1, const char *s2)
65{
66 *buf += sprintf(*buf, "%-24s%s\n", s1, s2);
67}
68
69static void zfcp_dbf_out(char **buf, const char *s, const char *format, ...)
70{
71 va_list arg;
72
73 *buf += sprintf(*buf, "%-24s", s);
74 va_start(arg, format);
75 *buf += vsprintf(*buf, format, arg);
76 va_end(arg);
77 *buf += sprintf(*buf, "\n");
78}
79
Martin Peschkedf29f4a2008-03-31 11:15:26 +020080static void zfcp_dbf_outd(char **p, const char *label, char *buffer,
81 int buflen, int offset, int total_size)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020082{
Martin Peschkedf29f4a2008-03-31 11:15:26 +020083 if (!offset)
84 *p += sprintf(*p, "%-24s ", label);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020085 while (buflen--) {
86 if (offset > 0) {
87 if ((offset % 32) == 0)
Martin Peschkedf29f4a2008-03-31 11:15:26 +020088 *p += sprintf(*p, "\n%-24c ", ' ');
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020089 else if ((offset % 4) == 0)
Martin Peschkedf29f4a2008-03-31 11:15:26 +020090 *p += sprintf(*p, " ");
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020091 }
Martin Peschkedf29f4a2008-03-31 11:15:26 +020092 *p += sprintf(*p, "%02x", *buffer++);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020093 if (++offset == total_size) {
Martin Peschkedf29f4a2008-03-31 11:15:26 +020094 *p += sprintf(*p, "\n");
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020095 break;
96 }
97 }
Martin Peschkedf29f4a2008-03-31 11:15:26 +020098 if (!total_size)
99 *p += sprintf(*p, "\n");
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200100}
101
Martin Peschke92c7a832008-03-31 11:15:30 +0200102static int zfcp_dbf_view_header(debug_info_t *id, struct debug_view *view,
103 int area, debug_entry_t *entry, char *out_buf)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200104{
105 struct zfcp_dbf_dump *dump = (struct zfcp_dbf_dump *)DEBUG_DATA(entry);
Martin Peschke8fc5af12008-03-31 11:15:23 +0200106 struct timespec t;
Martin Peschkeb634fff2008-03-31 11:15:24 +0200107 char *p = out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200108
109 if (strncmp(dump->tag, "dump", ZFCP_DBF_TAG_SIZE) != 0) {
Martin Peschke8fc5af12008-03-31 11:15:23 +0200110 zfcp_dbf_timestamp(entry->id.stck, &t);
Martin Peschkeb634fff2008-03-31 11:15:24 +0200111 zfcp_dbf_out(&p, "timestamp", "%011lu:%06lu",
112 t.tv_sec, t.tv_nsec);
113 zfcp_dbf_out(&p, "cpu", "%02i", entry->id.fields.cpuid);
114 } else {
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100115 zfcp_dbf_outd(&p, "", dump->data, dump->size, dump->offset,
Martin Peschkedf29f4a2008-03-31 11:15:26 +0200116 dump->total_size);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200117 if ((dump->offset + dump->size) == dump->total_size)
Martin Peschkeb634fff2008-03-31 11:15:24 +0200118 p += sprintf(p, "\n");
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200119 }
Martin Peschkeb634fff2008-03-31 11:15:24 +0200120 return p - out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200121}
122
Martin Peschkebfab1632008-03-31 11:15:31 +0200123/**
124 * zfcp_hba_dbf_event_fsf_response - trace event for request completion
125 * @fsf_req: request that has been completed
126 */
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100127void zfcp_hba_dbf_event_fsf_response(struct zfcp_fsf_req *fsf_req)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200128{
129 struct zfcp_adapter *adapter = fsf_req->adapter;
Christof Schmittd46f3842009-08-18 15:43:07 +0200130 struct zfcp_dbf *dbf = adapter->dbf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200131 struct fsf_qtcb *qtcb = fsf_req->qtcb;
132 union fsf_prot_status_qual *prot_status_qual =
Martin Peschke92c7a832008-03-31 11:15:30 +0200133 &qtcb->prefix.prot_status_qual;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200134 union fsf_status_qual *fsf_status_qual = &qtcb->header.fsf_status_qual;
135 struct scsi_cmnd *scsi_cmnd;
136 struct zfcp_port *port;
137 struct zfcp_unit *unit;
138 struct zfcp_send_els *send_els;
Christof Schmittd46f3842009-08-18 15:43:07 +0200139 struct zfcp_hba_dbf_record *rec = &dbf->hba_dbf_buf;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200140 struct zfcp_hba_dbf_record_response *response = &rec->u.response;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200141 int level;
142 unsigned long flags;
143
Christof Schmittd46f3842009-08-18 15:43:07 +0200144 spin_lock_irqsave(&dbf->hba_dbf_lock, flags);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200145 memset(rec, 0, sizeof(*rec));
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200146 strncpy(rec->tag, "resp", ZFCP_DBF_TAG_SIZE);
147
148 if ((qtcb->prefix.prot_status != FSF_PROT_GOOD) &&
149 (qtcb->prefix.prot_status != FSF_PROT_FSF_STATUS_PRESENTED)) {
150 strncpy(rec->tag2, "perr", ZFCP_DBF_TAG_SIZE);
151 level = 1;
152 } else if (qtcb->header.fsf_status != FSF_GOOD) {
153 strncpy(rec->tag2, "ferr", ZFCP_DBF_TAG_SIZE);
154 level = 1;
155 } else if ((fsf_req->fsf_command == FSF_QTCB_OPEN_PORT_WITH_DID) ||
156 (fsf_req->fsf_command == FSF_QTCB_OPEN_LUN)) {
157 strncpy(rec->tag2, "open", ZFCP_DBF_TAG_SIZE);
158 level = 4;
Martin Peschkeb75db732008-03-27 14:21:58 +0100159 } else if (qtcb->header.log_length) {
160 strncpy(rec->tag2, "qtcb", ZFCP_DBF_TAG_SIZE);
161 level = 5;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200162 } else {
163 strncpy(rec->tag2, "norm", ZFCP_DBF_TAG_SIZE);
164 level = 6;
165 }
166
167 response->fsf_command = fsf_req->fsf_command;
Christof Schmittf0216ae2009-05-15 13:18:14 +0200168 response->fsf_reqid = fsf_req->req_id;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200169 response->fsf_seqno = fsf_req->seq_no;
170 response->fsf_issued = fsf_req->issued;
171 response->fsf_prot_status = qtcb->prefix.prot_status;
172 response->fsf_status = qtcb->header.fsf_status;
173 memcpy(response->fsf_prot_status_qual,
174 prot_status_qual, FSF_PROT_STATUS_QUAL_SIZE);
175 memcpy(response->fsf_status_qual,
176 fsf_status_qual, FSF_STATUS_QUALIFIER_SIZE);
177 response->fsf_req_status = fsf_req->status;
178 response->sbal_first = fsf_req->sbal_first;
Martin Peschkee891bff2008-05-19 12:17:43 +0200179 response->sbal_last = fsf_req->sbal_last;
Martin Peschkec3baa9a22008-05-19 12:17:44 +0200180 response->sbal_response = fsf_req->sbal_response;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200181 response->pool = fsf_req->pool != NULL;
182 response->erp_action = (unsigned long)fsf_req->erp_action;
183
184 switch (fsf_req->fsf_command) {
185 case FSF_QTCB_FCP_CMND:
186 if (fsf_req->status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT)
187 break;
188 scsi_cmnd = (struct scsi_cmnd *)fsf_req->data;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200189 if (scsi_cmnd) {
190 response->u.fcp.cmnd = (unsigned long)scsi_cmnd;
191 response->u.fcp.serial = scsi_cmnd->serial_number;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200192 }
193 break;
194
195 case FSF_QTCB_OPEN_PORT_WITH_DID:
196 case FSF_QTCB_CLOSE_PORT:
197 case FSF_QTCB_CLOSE_PHYSICAL_PORT:
198 port = (struct zfcp_port *)fsf_req->data;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200199 response->u.port.wwpn = port->wwpn;
200 response->u.port.d_id = port->d_id;
201 response->u.port.port_handle = qtcb->header.port_handle;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200202 break;
203
204 case FSF_QTCB_OPEN_LUN:
205 case FSF_QTCB_CLOSE_LUN:
206 unit = (struct zfcp_unit *)fsf_req->data;
207 port = unit->port;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200208 response->u.unit.wwpn = port->wwpn;
209 response->u.unit.fcp_lun = unit->fcp_lun;
210 response->u.unit.port_handle = qtcb->header.port_handle;
211 response->u.unit.lun_handle = qtcb->header.lun_handle;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200212 break;
213
214 case FSF_QTCB_SEND_ELS:
215 send_els = (struct zfcp_send_els *)fsf_req->data;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200216 response->u.els.d_id = qtcb->bottom.support.d_id;
217 response->u.els.ls_code = send_els->ls_code >> 24;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200218 break;
219
220 case FSF_QTCB_ABORT_FCP_CMND:
221 case FSF_QTCB_SEND_GENERIC:
222 case FSF_QTCB_EXCHANGE_CONFIG_DATA:
223 case FSF_QTCB_EXCHANGE_PORT_DATA:
224 case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
225 case FSF_QTCB_UPLOAD_CONTROL_FILE:
226 break;
227 }
228
Christof Schmittd46f3842009-08-18 15:43:07 +0200229 debug_event(dbf->hba_dbf, level, rec, sizeof(*rec));
Martin Peschkeb75db732008-03-27 14:21:58 +0100230
231 /* have fcp channel microcode fixed to use as little as possible */
232 if (fsf_req->fsf_command != FSF_QTCB_FCP_CMND) {
233 /* adjust length skipping trailing zeros */
234 char *buf = (char *)qtcb + qtcb->header.log_start;
235 int len = qtcb->header.log_length;
236 for (; len && !buf[len - 1]; len--);
Christof Schmittd46f3842009-08-18 15:43:07 +0200237 zfcp_dbf_hexdump(dbf->hba_dbf, rec, sizeof(*rec), level, buf,
238 len);
Martin Peschkeb75db732008-03-27 14:21:58 +0100239 }
240
Christof Schmittd46f3842009-08-18 15:43:07 +0200241 spin_unlock_irqrestore(&dbf->hba_dbf_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200242}
243
Martin Peschkebfab1632008-03-31 11:15:31 +0200244/**
245 * zfcp_hba_dbf_event_fsf_unsol - trace event for an unsolicited status buffer
246 * @tag: tag indicating which kind of unsolicited status has been received
247 * @adapter: adapter that has issued the unsolicited status buffer
248 * @status_buffer: buffer containing payload of unsolicited status
249 */
Martin Peschke92c7a832008-03-31 11:15:30 +0200250void zfcp_hba_dbf_event_fsf_unsol(const char *tag, struct zfcp_adapter *adapter,
251 struct fsf_status_read_buffer *status_buffer)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200252{
Christof Schmittd46f3842009-08-18 15:43:07 +0200253 struct zfcp_dbf *dbf = adapter->dbf;
254 struct zfcp_hba_dbf_record *rec = &dbf->hba_dbf_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200255 unsigned long flags;
256
Christof Schmittd46f3842009-08-18 15:43:07 +0200257 spin_lock_irqsave(&dbf->hba_dbf_lock, flags);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200258 memset(rec, 0, sizeof(*rec));
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200259 strncpy(rec->tag, "stat", ZFCP_DBF_TAG_SIZE);
260 strncpy(rec->tag2, tag, ZFCP_DBF_TAG_SIZE);
261
Swen Schilligd26ab062008-05-19 12:17:37 +0200262 rec->u.status.failed = atomic_read(&adapter->stat_miss);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200263 if (status_buffer != NULL) {
Martin Peschke6bc473d2008-03-31 11:15:29 +0200264 rec->u.status.status_type = status_buffer->status_type;
265 rec->u.status.status_subtype = status_buffer->status_subtype;
266 memcpy(&rec->u.status.queue_designator,
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200267 &status_buffer->queue_designator,
268 sizeof(struct fsf_queue_designator));
269
270 switch (status_buffer->status_type) {
271 case FSF_STATUS_READ_SENSE_DATA_AVAIL:
Martin Peschke6bc473d2008-03-31 11:15:29 +0200272 rec->u.status.payload_size =
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200273 ZFCP_DBF_UNSOL_PAYLOAD_SENSE_DATA_AVAIL;
274 break;
275
276 case FSF_STATUS_READ_BIT_ERROR_THRESHOLD:
Martin Peschke6bc473d2008-03-31 11:15:29 +0200277 rec->u.status.payload_size =
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200278 ZFCP_DBF_UNSOL_PAYLOAD_BIT_ERROR_THRESHOLD;
279 break;
280
281 case FSF_STATUS_READ_LINK_DOWN:
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200282 switch (status_buffer->status_subtype) {
283 case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK:
284 case FSF_STATUS_READ_SUB_FDISC_FAILED:
Martin Peschke6bc473d2008-03-31 11:15:29 +0200285 rec->u.status.payload_size =
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200286 sizeof(struct fsf_link_down_info);
287 }
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200288 break;
289
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200290 case FSF_STATUS_READ_FEATURE_UPDATE_ALERT:
Martin Peschke6bc473d2008-03-31 11:15:29 +0200291 rec->u.status.payload_size =
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200292 ZFCP_DBF_UNSOL_PAYLOAD_FEATURE_UPDATE_ALERT;
293 break;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200294 }
Martin Peschke6bc473d2008-03-31 11:15:29 +0200295 memcpy(&rec->u.status.payload,
296 &status_buffer->payload, rec->u.status.payload_size);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200297 }
298
Christof Schmittd46f3842009-08-18 15:43:07 +0200299 debug_event(dbf->hba_dbf, 2, rec, sizeof(*rec));
300 spin_unlock_irqrestore(&dbf->hba_dbf_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200301}
302
Martin Peschkebfab1632008-03-31 11:15:31 +0200303/**
304 * zfcp_hba_dbf_event_qdio - trace event for QDIO related failure
305 * @adapter: adapter affected by this QDIO related event
Martin Peschkebfab1632008-03-31 11:15:31 +0200306 * @qdio_error: as passed by qdio module
Martin Peschkebfab1632008-03-31 11:15:31 +0200307 * @sbal_index: first buffer with error condition, as passed by qdio module
308 * @sbal_count: number of buffers affected, as passed by qdio module
309 */
Jan Glauber779e6e12008-07-17 17:16:48 +0200310void zfcp_hba_dbf_event_qdio(struct zfcp_adapter *adapter,
311 unsigned int qdio_error, int sbal_index,
312 int sbal_count)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200313{
Christof Schmittd46f3842009-08-18 15:43:07 +0200314 struct zfcp_dbf *dbf = adapter->dbf;
315 struct zfcp_hba_dbf_record *r = &dbf->hba_dbf_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200316 unsigned long flags;
317
Christof Schmittd46f3842009-08-18 15:43:07 +0200318 spin_lock_irqsave(&dbf->hba_dbf_lock, flags);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200319 memset(r, 0, sizeof(*r));
320 strncpy(r->tag, "qdio", ZFCP_DBF_TAG_SIZE);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200321 r->u.qdio.qdio_error = qdio_error;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200322 r->u.qdio.sbal_index = sbal_index;
323 r->u.qdio.sbal_count = sbal_count;
Christof Schmittd46f3842009-08-18 15:43:07 +0200324 debug_event(dbf->hba_dbf, 0, r, sizeof(*r));
325 spin_unlock_irqrestore(&dbf->hba_dbf_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200326}
327
Swen Schillig57069382008-10-01 12:42:21 +0200328/**
329 * zfcp_hba_dbf_event_berr - trace event for bit error threshold
330 * @adapter: adapter affected by this QDIO related event
331 * @req: fsf request
332 */
333void zfcp_hba_dbf_event_berr(struct zfcp_adapter *adapter,
334 struct zfcp_fsf_req *req)
335{
Christof Schmittd46f3842009-08-18 15:43:07 +0200336 struct zfcp_dbf *dbf = adapter->dbf;
337 struct zfcp_hba_dbf_record *r = &dbf->hba_dbf_buf;
Swen Schillig57069382008-10-01 12:42:21 +0200338 struct fsf_status_read_buffer *sr_buf = req->data;
339 struct fsf_bit_error_payload *err = &sr_buf->payload.bit_error;
340 unsigned long flags;
341
Christof Schmittd46f3842009-08-18 15:43:07 +0200342 spin_lock_irqsave(&dbf->hba_dbf_lock, flags);
Swen Schillig57069382008-10-01 12:42:21 +0200343 memset(r, 0, sizeof(*r));
344 strncpy(r->tag, "berr", ZFCP_DBF_TAG_SIZE);
345 memcpy(&r->u.berr, err, sizeof(struct fsf_bit_error_payload));
Christof Schmittd46f3842009-08-18 15:43:07 +0200346 debug_event(dbf->hba_dbf, 0, r, sizeof(*r));
347 spin_unlock_irqrestore(&dbf->hba_dbf_lock, flags);
Swen Schillig57069382008-10-01 12:42:21 +0200348}
Martin Peschkea9c85772008-03-31 11:15:27 +0200349static void zfcp_hba_dbf_view_response(char **p,
350 struct zfcp_hba_dbf_record_response *r)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200351{
Martin Peschke8fc5af12008-03-31 11:15:23 +0200352 struct timespec t;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200353
Martin Peschkea9c85772008-03-31 11:15:27 +0200354 zfcp_dbf_out(p, "fsf_command", "0x%08x", r->fsf_command);
355 zfcp_dbf_out(p, "fsf_reqid", "0x%0Lx", r->fsf_reqid);
356 zfcp_dbf_out(p, "fsf_seqno", "0x%08x", r->fsf_seqno);
Martin Peschkeb634fff2008-03-31 11:15:24 +0200357 zfcp_dbf_timestamp(r->fsf_issued, &t);
Martin Peschkea9c85772008-03-31 11:15:27 +0200358 zfcp_dbf_out(p, "fsf_issued", "%011lu:%06lu", t.tv_sec, t.tv_nsec);
359 zfcp_dbf_out(p, "fsf_prot_status", "0x%08x", r->fsf_prot_status);
360 zfcp_dbf_out(p, "fsf_status", "0x%08x", r->fsf_status);
361 zfcp_dbf_outd(p, "fsf_prot_status_qual", r->fsf_prot_status_qual,
Martin Peschkedf29f4a2008-03-31 11:15:26 +0200362 FSF_PROT_STATUS_QUAL_SIZE, 0, FSF_PROT_STATUS_QUAL_SIZE);
Martin Peschkea9c85772008-03-31 11:15:27 +0200363 zfcp_dbf_outd(p, "fsf_status_qual", r->fsf_status_qual,
Martin Peschkedf29f4a2008-03-31 11:15:26 +0200364 FSF_STATUS_QUALIFIER_SIZE, 0, FSF_STATUS_QUALIFIER_SIZE);
Martin Peschkea9c85772008-03-31 11:15:27 +0200365 zfcp_dbf_out(p, "fsf_req_status", "0x%08x", r->fsf_req_status);
366 zfcp_dbf_out(p, "sbal_first", "0x%02x", r->sbal_first);
Martin Peschkee891bff2008-05-19 12:17:43 +0200367 zfcp_dbf_out(p, "sbal_last", "0x%02x", r->sbal_last);
Martin Peschkec3baa9a22008-05-19 12:17:44 +0200368 zfcp_dbf_out(p, "sbal_response", "0x%02x", r->sbal_response);
Martin Peschkea9c85772008-03-31 11:15:27 +0200369 zfcp_dbf_out(p, "pool", "0x%02x", r->pool);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200370
Martin Peschkeb634fff2008-03-31 11:15:24 +0200371 switch (r->fsf_command) {
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200372 case FSF_QTCB_FCP_CMND:
Martin Peschkeb634fff2008-03-31 11:15:24 +0200373 if (r->fsf_req_status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200374 break;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200375 zfcp_dbf_out(p, "scsi_cmnd", "0x%0Lx", r->u.fcp.cmnd);
376 zfcp_dbf_out(p, "scsi_serial", "0x%016Lx", r->u.fcp.serial);
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100377 p += sprintf(*p, "\n");
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200378 break;
379
380 case FSF_QTCB_OPEN_PORT_WITH_DID:
381 case FSF_QTCB_CLOSE_PORT:
382 case FSF_QTCB_CLOSE_PHYSICAL_PORT:
Martin Peschke6bc473d2008-03-31 11:15:29 +0200383 zfcp_dbf_out(p, "wwpn", "0x%016Lx", r->u.port.wwpn);
384 zfcp_dbf_out(p, "d_id", "0x%06x", r->u.port.d_id);
385 zfcp_dbf_out(p, "port_handle", "0x%08x", r->u.port.port_handle);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200386 break;
387
388 case FSF_QTCB_OPEN_LUN:
389 case FSF_QTCB_CLOSE_LUN:
Martin Peschke6bc473d2008-03-31 11:15:29 +0200390 zfcp_dbf_out(p, "wwpn", "0x%016Lx", r->u.unit.wwpn);
391 zfcp_dbf_out(p, "fcp_lun", "0x%016Lx", r->u.unit.fcp_lun);
392 zfcp_dbf_out(p, "port_handle", "0x%08x", r->u.unit.port_handle);
393 zfcp_dbf_out(p, "lun_handle", "0x%08x", r->u.unit.lun_handle);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200394 break;
395
396 case FSF_QTCB_SEND_ELS:
Martin Peschke6bc473d2008-03-31 11:15:29 +0200397 zfcp_dbf_out(p, "d_id", "0x%06x", r->u.els.d_id);
398 zfcp_dbf_out(p, "ls_code", "0x%02x", r->u.els.ls_code);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200399 break;
400
401 case FSF_QTCB_ABORT_FCP_CMND:
402 case FSF_QTCB_SEND_GENERIC:
403 case FSF_QTCB_EXCHANGE_CONFIG_DATA:
404 case FSF_QTCB_EXCHANGE_PORT_DATA:
405 case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
406 case FSF_QTCB_UPLOAD_CONTROL_FILE:
407 break;
408 }
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200409}
410
Martin Peschkea9c85772008-03-31 11:15:27 +0200411static void zfcp_hba_dbf_view_status(char **p,
412 struct zfcp_hba_dbf_record_status *r)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200413{
Martin Peschkea9c85772008-03-31 11:15:27 +0200414 zfcp_dbf_out(p, "failed", "0x%02x", r->failed);
415 zfcp_dbf_out(p, "status_type", "0x%08x", r->status_type);
416 zfcp_dbf_out(p, "status_subtype", "0x%08x", r->status_subtype);
417 zfcp_dbf_outd(p, "queue_designator", (char *)&r->queue_designator,
Martin Peschkedf29f4a2008-03-31 11:15:26 +0200418 sizeof(struct fsf_queue_designator), 0,
419 sizeof(struct fsf_queue_designator));
Martin Peschkea9c85772008-03-31 11:15:27 +0200420 zfcp_dbf_outd(p, "payload", (char *)&r->payload, r->payload_size, 0,
Martin Peschkedf29f4a2008-03-31 11:15:26 +0200421 r->payload_size);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200422}
423
Martin Peschkea9c85772008-03-31 11:15:27 +0200424static void zfcp_hba_dbf_view_qdio(char **p, struct zfcp_hba_dbf_record_qdio *r)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200425{
Martin Peschkea9c85772008-03-31 11:15:27 +0200426 zfcp_dbf_out(p, "qdio_error", "0x%08x", r->qdio_error);
Martin Peschkea9c85772008-03-31 11:15:27 +0200427 zfcp_dbf_out(p, "sbal_index", "0x%02x", r->sbal_index);
428 zfcp_dbf_out(p, "sbal_count", "0x%02x", r->sbal_count);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200429}
430
Swen Schillig57069382008-10-01 12:42:21 +0200431static void zfcp_hba_dbf_view_berr(char **p, struct fsf_bit_error_payload *r)
432{
433 zfcp_dbf_out(p, "link_failures", "%d", r->link_failure_error_count);
434 zfcp_dbf_out(p, "loss_of_sync_err", "%d", r->loss_of_sync_error_count);
435 zfcp_dbf_out(p, "loss_of_sig_err", "%d", r->loss_of_signal_error_count);
436 zfcp_dbf_out(p, "prim_seq_err", "%d",
437 r->primitive_sequence_error_count);
438 zfcp_dbf_out(p, "inval_trans_word_err", "%d",
439 r->invalid_transmission_word_error_count);
440 zfcp_dbf_out(p, "CRC_errors", "%d", r->crc_error_count);
441 zfcp_dbf_out(p, "prim_seq_event_to", "%d",
442 r->primitive_sequence_event_timeout_count);
443 zfcp_dbf_out(p, "elast_buf_overrun_err", "%d",
444 r->elastic_buffer_overrun_error_count);
445 zfcp_dbf_out(p, "adv_rec_buf2buf_cred", "%d",
446 r->advertised_receive_b2b_credit);
447 zfcp_dbf_out(p, "curr_rec_buf2buf_cred", "%d",
448 r->current_receive_b2b_credit);
449 zfcp_dbf_out(p, "adv_trans_buf2buf_cred", "%d",
450 r->advertised_transmit_b2b_credit);
451 zfcp_dbf_out(p, "curr_trans_buf2buf_cred", "%d",
452 r->current_transmit_b2b_credit);
453}
454
Martin Peschkea9c85772008-03-31 11:15:27 +0200455static int zfcp_hba_dbf_view_format(debug_info_t *id, struct debug_view *view,
456 char *out_buf, const char *in_buf)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200457{
Martin Peschkea9c85772008-03-31 11:15:27 +0200458 struct zfcp_hba_dbf_record *r = (struct zfcp_hba_dbf_record *)in_buf;
459 char *p = out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200460
Martin Peschkea9c85772008-03-31 11:15:27 +0200461 if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200462 return 0;
463
Martin Peschkea9c85772008-03-31 11:15:27 +0200464 zfcp_dbf_tag(&p, "tag", r->tag);
465 if (isalpha(r->tag2[0]))
466 zfcp_dbf_tag(&p, "tag2", r->tag2);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200467
Martin Peschkea9c85772008-03-31 11:15:27 +0200468 if (strncmp(r->tag, "resp", ZFCP_DBF_TAG_SIZE) == 0)
Martin Peschke6bc473d2008-03-31 11:15:29 +0200469 zfcp_hba_dbf_view_response(&p, &r->u.response);
Martin Peschkea9c85772008-03-31 11:15:27 +0200470 else if (strncmp(r->tag, "stat", ZFCP_DBF_TAG_SIZE) == 0)
Martin Peschke6bc473d2008-03-31 11:15:29 +0200471 zfcp_hba_dbf_view_status(&p, &r->u.status);
Martin Peschkea9c85772008-03-31 11:15:27 +0200472 else if (strncmp(r->tag, "qdio", ZFCP_DBF_TAG_SIZE) == 0)
Martin Peschke6bc473d2008-03-31 11:15:29 +0200473 zfcp_hba_dbf_view_qdio(&p, &r->u.qdio);
Swen Schillig57069382008-10-01 12:42:21 +0200474 else if (strncmp(r->tag, "berr", ZFCP_DBF_TAG_SIZE) == 0)
475 zfcp_hba_dbf_view_berr(&p, &r->u.berr);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200476
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100477 if (strncmp(r->tag, "resp", ZFCP_DBF_TAG_SIZE) != 0)
478 p += sprintf(p, "\n");
Martin Peschkea9c85772008-03-31 11:15:27 +0200479 return p - out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200480}
481
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100482static struct debug_view zfcp_hba_dbf_view = {
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200483 "structured",
484 NULL,
485 &zfcp_dbf_view_header,
486 &zfcp_hba_dbf_view_format,
487 NULL,
488 NULL
489};
490
Martin Peschked79a83d2008-03-27 14:22:00 +0100491static const char *zfcp_rec_dbf_tags[] = {
Martin Peschke348447e2008-03-27 14:22:01 +0100492 [ZFCP_REC_DBF_ID_THREAD] = "thread",
Martin Peschke698ec0162008-03-27 14:22:02 +0100493 [ZFCP_REC_DBF_ID_TARGET] = "target",
Martin Peschke9467a9b2008-03-27 14:22:03 +0100494 [ZFCP_REC_DBF_ID_TRIGGER] = "trigger",
Martin Peschke6f4f3652008-03-27 14:22:04 +0100495 [ZFCP_REC_DBF_ID_ACTION] = "action",
Martin Peschked79a83d2008-03-27 14:22:00 +0100496};
497
Martin Peschked79a83d2008-03-27 14:22:00 +0100498static int zfcp_rec_dbf_view_format(debug_info_t *id, struct debug_view *view,
499 char *buf, const char *_rec)
500{
501 struct zfcp_rec_dbf_record *r = (struct zfcp_rec_dbf_record *)_rec;
502 char *p = buf;
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100503 char hint[ZFCP_DBF_ID_SIZE + 1];
Martin Peschked79a83d2008-03-27 14:22:00 +0100504
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100505 memcpy(hint, r->id2, ZFCP_DBF_ID_SIZE);
506 hint[ZFCP_DBF_ID_SIZE] = 0;
Martin Peschked79a83d2008-03-27 14:22:00 +0100507 zfcp_dbf_outs(&p, "tag", zfcp_rec_dbf_tags[r->id]);
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100508 zfcp_dbf_outs(&p, "hint", hint);
Martin Peschked79a83d2008-03-27 14:22:00 +0100509 switch (r->id) {
Martin Peschke348447e2008-03-27 14:22:01 +0100510 case ZFCP_REC_DBF_ID_THREAD:
Martin Peschke348447e2008-03-27 14:22:01 +0100511 zfcp_dbf_out(&p, "total", "%d", r->u.thread.total);
512 zfcp_dbf_out(&p, "ready", "%d", r->u.thread.ready);
513 zfcp_dbf_out(&p, "running", "%d", r->u.thread.running);
514 break;
Martin Peschke698ec0162008-03-27 14:22:02 +0100515 case ZFCP_REC_DBF_ID_TARGET:
516 zfcp_dbf_out(&p, "reference", "0x%016Lx", r->u.target.ref);
517 zfcp_dbf_out(&p, "status", "0x%08x", r->u.target.status);
518 zfcp_dbf_out(&p, "erp_count", "%d", r->u.target.erp_count);
519 zfcp_dbf_out(&p, "d_id", "0x%06x", r->u.target.d_id);
520 zfcp_dbf_out(&p, "wwpn", "0x%016Lx", r->u.target.wwpn);
521 zfcp_dbf_out(&p, "fcp_lun", "0x%016Lx", r->u.target.fcp_lun);
522 break;
Martin Peschke9467a9b2008-03-27 14:22:03 +0100523 case ZFCP_REC_DBF_ID_TRIGGER:
524 zfcp_dbf_out(&p, "reference", "0x%016Lx", r->u.trigger.ref);
525 zfcp_dbf_out(&p, "erp_action", "0x%016Lx", r->u.trigger.action);
526 zfcp_dbf_out(&p, "requested", "%d", r->u.trigger.want);
527 zfcp_dbf_out(&p, "executed", "%d", r->u.trigger.need);
528 zfcp_dbf_out(&p, "wwpn", "0x%016Lx", r->u.trigger.wwpn);
529 zfcp_dbf_out(&p, "fcp_lun", "0x%016Lx", r->u.trigger.fcp_lun);
530 zfcp_dbf_out(&p, "adapter_status", "0x%08x", r->u.trigger.as);
531 zfcp_dbf_out(&p, "port_status", "0x%08x", r->u.trigger.ps);
532 zfcp_dbf_out(&p, "unit_status", "0x%08x", r->u.trigger.us);
533 break;
Martin Peschke6f4f3652008-03-27 14:22:04 +0100534 case ZFCP_REC_DBF_ID_ACTION:
535 zfcp_dbf_out(&p, "erp_action", "0x%016Lx", r->u.action.action);
536 zfcp_dbf_out(&p, "fsf_req", "0x%016Lx", r->u.action.fsf_req);
537 zfcp_dbf_out(&p, "status", "0x%08Lx", r->u.action.status);
538 zfcp_dbf_out(&p, "step", "0x%08Lx", r->u.action.step);
539 break;
Martin Peschked79a83d2008-03-27 14:22:00 +0100540 }
Martin Peschkeb634fff2008-03-31 11:15:24 +0200541 p += sprintf(p, "\n");
542 return p - buf;
Martin Peschked79a83d2008-03-27 14:22:00 +0100543}
544
545static struct debug_view zfcp_rec_dbf_view = {
546 "structured",
547 NULL,
548 &zfcp_dbf_view_header,
549 &zfcp_rec_dbf_view_format,
550 NULL,
551 NULL
552};
553
Martin Peschke348447e2008-03-27 14:22:01 +0100554/**
555 * zfcp_rec_dbf_event_thread - trace event related to recovery thread operation
556 * @id2: identifier for event
557 * @adapter: adapter
Christof Schmittaa0fec62008-05-19 12:17:47 +0200558 * This function assumes that the caller is holding erp_lock.
Martin Peschke348447e2008-03-27 14:22:01 +0100559 */
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100560void zfcp_rec_dbf_event_thread(char *id2, struct zfcp_adapter *adapter)
Martin Peschke348447e2008-03-27 14:22:01 +0100561{
Christof Schmittd46f3842009-08-18 15:43:07 +0200562 struct zfcp_dbf *dbf = adapter->dbf;
563 struct zfcp_rec_dbf_record *r = &dbf->rec_dbf_buf;
Martin Peschke348447e2008-03-27 14:22:01 +0100564 unsigned long flags = 0;
565 struct list_head *entry;
566 unsigned ready = 0, running = 0, total;
567
Martin Peschke348447e2008-03-27 14:22:01 +0100568 list_for_each(entry, &adapter->erp_ready_head)
569 ready++;
570 list_for_each(entry, &adapter->erp_running_head)
571 running++;
572 total = adapter->erp_total_count;
Martin Peschke348447e2008-03-27 14:22:01 +0100573
Christof Schmittd46f3842009-08-18 15:43:07 +0200574 spin_lock_irqsave(&dbf->rec_dbf_lock, flags);
Martin Peschke348447e2008-03-27 14:22:01 +0100575 memset(r, 0, sizeof(*r));
576 r->id = ZFCP_REC_DBF_ID_THREAD;
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100577 memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
Martin Peschke348447e2008-03-27 14:22:01 +0100578 r->u.thread.total = total;
579 r->u.thread.ready = ready;
580 r->u.thread.running = running;
Christof Schmittd46f3842009-08-18 15:43:07 +0200581 debug_event(dbf->rec_dbf, 6, r, sizeof(*r));
582 spin_unlock_irqrestore(&dbf->rec_dbf_lock, flags);
Martin Peschke348447e2008-03-27 14:22:01 +0100583}
584
Christof Schmittaa0fec62008-05-19 12:17:47 +0200585/**
586 * zfcp_rec_dbf_event_thread - trace event related to recovery thread operation
587 * @id2: identifier for event
588 * @adapter: adapter
589 * This function assumes that the caller does not hold erp_lock.
590 */
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100591void zfcp_rec_dbf_event_thread_lock(char *id2, struct zfcp_adapter *adapter)
Christof Schmittaa0fec62008-05-19 12:17:47 +0200592{
593 unsigned long flags;
594
595 read_lock_irqsave(&adapter->erp_lock, flags);
596 zfcp_rec_dbf_event_thread(id2, adapter);
597 read_unlock_irqrestore(&adapter->erp_lock, flags);
598}
599
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100600static void zfcp_rec_dbf_event_target(char *id2, void *ref,
Martin Peschke698ec0162008-03-27 14:22:02 +0100601 struct zfcp_adapter *adapter,
602 atomic_t *status, atomic_t *erp_count,
603 u64 wwpn, u32 d_id, u64 fcp_lun)
604{
Christof Schmittd46f3842009-08-18 15:43:07 +0200605 struct zfcp_dbf *dbf = adapter->dbf;
606 struct zfcp_rec_dbf_record *r = &dbf->rec_dbf_buf;
Martin Peschke698ec0162008-03-27 14:22:02 +0100607 unsigned long flags;
608
Christof Schmittd46f3842009-08-18 15:43:07 +0200609 spin_lock_irqsave(&dbf->rec_dbf_lock, flags);
Martin Peschke698ec0162008-03-27 14:22:02 +0100610 memset(r, 0, sizeof(*r));
611 r->id = ZFCP_REC_DBF_ID_TARGET;
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100612 memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
Martin Peschke1f6f7122008-04-18 12:51:55 +0200613 r->u.target.ref = (unsigned long)ref;
Martin Peschke698ec0162008-03-27 14:22:02 +0100614 r->u.target.status = atomic_read(status);
615 r->u.target.wwpn = wwpn;
616 r->u.target.d_id = d_id;
617 r->u.target.fcp_lun = fcp_lun;
618 r->u.target.erp_count = atomic_read(erp_count);
Christof Schmittd46f3842009-08-18 15:43:07 +0200619 debug_event(dbf->rec_dbf, 3, r, sizeof(*r));
620 spin_unlock_irqrestore(&dbf->rec_dbf_lock, flags);
Martin Peschke698ec0162008-03-27 14:22:02 +0100621}
622
623/**
624 * zfcp_rec_dbf_event_adapter - trace event for adapter state change
625 * @id: identifier for trigger of state change
626 * @ref: additional reference (e.g. request)
627 * @adapter: adapter
628 */
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100629void zfcp_rec_dbf_event_adapter(char *id, void *ref,
630 struct zfcp_adapter *adapter)
Martin Peschke698ec0162008-03-27 14:22:02 +0100631{
632 zfcp_rec_dbf_event_target(id, ref, adapter, &adapter->status,
633 &adapter->erp_counter, 0, 0, 0);
634}
635
636/**
637 * zfcp_rec_dbf_event_port - trace event for port state change
638 * @id: identifier for trigger of state change
639 * @ref: additional reference (e.g. request)
640 * @port: port
641 */
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100642void zfcp_rec_dbf_event_port(char *id, void *ref, struct zfcp_port *port)
Martin Peschke698ec0162008-03-27 14:22:02 +0100643{
644 struct zfcp_adapter *adapter = port->adapter;
645
646 zfcp_rec_dbf_event_target(id, ref, adapter, &port->status,
647 &port->erp_counter, port->wwpn, port->d_id,
648 0);
649}
650
651/**
652 * zfcp_rec_dbf_event_unit - trace event for unit state change
653 * @id: identifier for trigger of state change
654 * @ref: additional reference (e.g. request)
655 * @unit: unit
656 */
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100657void zfcp_rec_dbf_event_unit(char *id, void *ref, struct zfcp_unit *unit)
Martin Peschke698ec0162008-03-27 14:22:02 +0100658{
659 struct zfcp_port *port = unit->port;
660 struct zfcp_adapter *adapter = port->adapter;
661
662 zfcp_rec_dbf_event_target(id, ref, adapter, &unit->status,
663 &unit->erp_counter, port->wwpn, port->d_id,
664 unit->fcp_lun);
665}
666
Martin Peschke9467a9b2008-03-27 14:22:03 +0100667/**
668 * zfcp_rec_dbf_event_trigger - trace event for triggered error recovery
669 * @id2: identifier for error recovery trigger
670 * @ref: additional reference (e.g. request)
671 * @want: originally requested error recovery action
672 * @need: error recovery action actually initiated
673 * @action: address of error recovery action struct
674 * @adapter: adapter
675 * @port: port
676 * @unit: unit
677 */
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100678void zfcp_rec_dbf_event_trigger(char *id2, void *ref, u8 want, u8 need,
Martin Peschke1f6f7122008-04-18 12:51:55 +0200679 void *action, struct zfcp_adapter *adapter,
Martin Peschke9467a9b2008-03-27 14:22:03 +0100680 struct zfcp_port *port, struct zfcp_unit *unit)
681{
Christof Schmittd46f3842009-08-18 15:43:07 +0200682 struct zfcp_dbf *dbf = adapter->dbf;
683 struct zfcp_rec_dbf_record *r = &dbf->rec_dbf_buf;
Martin Peschke9467a9b2008-03-27 14:22:03 +0100684 unsigned long flags;
685
Christof Schmittd46f3842009-08-18 15:43:07 +0200686 spin_lock_irqsave(&dbf->rec_dbf_lock, flags);
Martin Peschke9467a9b2008-03-27 14:22:03 +0100687 memset(r, 0, sizeof(*r));
688 r->id = ZFCP_REC_DBF_ID_TRIGGER;
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100689 memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
Martin Peschke1f6f7122008-04-18 12:51:55 +0200690 r->u.trigger.ref = (unsigned long)ref;
Martin Peschke9467a9b2008-03-27 14:22:03 +0100691 r->u.trigger.want = want;
692 r->u.trigger.need = need;
Martin Peschke1f6f7122008-04-18 12:51:55 +0200693 r->u.trigger.action = (unsigned long)action;
Martin Peschke9467a9b2008-03-27 14:22:03 +0100694 r->u.trigger.as = atomic_read(&adapter->status);
695 if (port) {
696 r->u.trigger.ps = atomic_read(&port->status);
697 r->u.trigger.wwpn = port->wwpn;
698 }
699 if (unit) {
700 r->u.trigger.us = atomic_read(&unit->status);
701 r->u.trigger.fcp_lun = unit->fcp_lun;
702 }
Christof Schmittd46f3842009-08-18 15:43:07 +0200703 debug_event(dbf->rec_dbf, action ? 1 : 4, r, sizeof(*r));
704 spin_unlock_irqrestore(&dbf->rec_dbf_lock, flags);
Martin Peschke9467a9b2008-03-27 14:22:03 +0100705}
706
Martin Peschke6f4f3652008-03-27 14:22:04 +0100707/**
708 * zfcp_rec_dbf_event_action - trace event showing progress of recovery action
709 * @id2: identifier
710 * @erp_action: error recovery action struct pointer
711 */
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100712void zfcp_rec_dbf_event_action(char *id2, struct zfcp_erp_action *erp_action)
Martin Peschke6f4f3652008-03-27 14:22:04 +0100713{
714 struct zfcp_adapter *adapter = erp_action->adapter;
Christof Schmittd46f3842009-08-18 15:43:07 +0200715 struct zfcp_dbf *dbf = adapter->dbf;
716 struct zfcp_rec_dbf_record *r = &dbf->rec_dbf_buf;
Martin Peschke6f4f3652008-03-27 14:22:04 +0100717 unsigned long flags;
718
Christof Schmittd46f3842009-08-18 15:43:07 +0200719 spin_lock_irqsave(&dbf->rec_dbf_lock, flags);
Martin Peschke6f4f3652008-03-27 14:22:04 +0100720 memset(r, 0, sizeof(*r));
721 r->id = ZFCP_REC_DBF_ID_ACTION;
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100722 memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
Martin Peschke1f6f7122008-04-18 12:51:55 +0200723 r->u.action.action = (unsigned long)erp_action;
Martin Peschke6f4f3652008-03-27 14:22:04 +0100724 r->u.action.status = erp_action->status;
725 r->u.action.step = erp_action->step;
Martin Peschke1f6f7122008-04-18 12:51:55 +0200726 r->u.action.fsf_req = (unsigned long)erp_action->fsf_req;
Christof Schmittd46f3842009-08-18 15:43:07 +0200727 debug_event(dbf->rec_dbf, 5, r, sizeof(*r));
728 spin_unlock_irqrestore(&dbf->rec_dbf_lock, flags);
Martin Peschke6f4f3652008-03-27 14:22:04 +0100729}
730
Martin Peschkebfab1632008-03-31 11:15:31 +0200731/**
732 * zfcp_san_dbf_event_ct_request - trace event for issued CT request
733 * @fsf_req: request containing issued CT data
734 */
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100735void zfcp_san_dbf_event_ct_request(struct zfcp_fsf_req *fsf_req)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200736{
737 struct zfcp_send_ct *ct = (struct zfcp_send_ct *)fsf_req->data;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200738 struct zfcp_wka_port *wka_port = ct->wka_port;
739 struct zfcp_adapter *adapter = wka_port->adapter;
Christof Schmittd46f3842009-08-18 15:43:07 +0200740 struct zfcp_dbf *dbf = adapter->dbf;
Swen Schillig44cc76f2008-10-01 12:42:16 +0200741 struct ct_hdr *hdr = sg_virt(ct->req);
Christof Schmittd46f3842009-08-18 15:43:07 +0200742 struct zfcp_san_dbf_record *r = &dbf->san_dbf_buf;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200743 struct zfcp_san_dbf_record_ct_request *oct = &r->u.ct_req;
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100744 int level = 3;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200745 unsigned long flags;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200746
Christof Schmittd46f3842009-08-18 15:43:07 +0200747 spin_lock_irqsave(&dbf->san_dbf_lock, flags);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200748 memset(r, 0, sizeof(*r));
749 strncpy(r->tag, "octc", ZFCP_DBF_TAG_SIZE);
Christof Schmittf0216ae2009-05-15 13:18:14 +0200750 r->fsf_reqid = fsf_req->req_id;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200751 r->fsf_seqno = fsf_req->seq_no;
752 r->s_id = fc_host_port_id(adapter->scsi_host);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200753 r->d_id = wka_port->d_id;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200754 oct->cmd_req_code = hdr->cmd_rsp_code;
755 oct->revision = hdr->revision;
756 oct->gs_type = hdr->gs_type;
757 oct->gs_subtype = hdr->gs_subtype;
758 oct->options = hdr->options;
759 oct->max_res_size = hdr->max_res_size;
760 oct->len = min((int)ct->req->length - (int)sizeof(struct ct_hdr),
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100761 ZFCP_DBF_SAN_MAX_PAYLOAD);
Christof Schmittd46f3842009-08-18 15:43:07 +0200762 debug_event(dbf->san_dbf, level, r, sizeof(*r));
763 zfcp_dbf_hexdump(dbf->san_dbf, r, sizeof(*r), level,
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100764 (void *)hdr + sizeof(struct ct_hdr), oct->len);
Christof Schmittd46f3842009-08-18 15:43:07 +0200765 spin_unlock_irqrestore(&dbf->san_dbf_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200766}
767
Martin Peschkebfab1632008-03-31 11:15:31 +0200768/**
769 * zfcp_san_dbf_event_ct_response - trace event for completion of CT request
770 * @fsf_req: request containing CT response
771 */
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100772void zfcp_san_dbf_event_ct_response(struct zfcp_fsf_req *fsf_req)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200773{
774 struct zfcp_send_ct *ct = (struct zfcp_send_ct *)fsf_req->data;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200775 struct zfcp_wka_port *wka_port = ct->wka_port;
776 struct zfcp_adapter *adapter = wka_port->adapter;
Swen Schillig44cc76f2008-10-01 12:42:16 +0200777 struct ct_hdr *hdr = sg_virt(ct->resp);
Christof Schmittd46f3842009-08-18 15:43:07 +0200778 struct zfcp_dbf *dbf = adapter->dbf;
779 struct zfcp_san_dbf_record *r = &dbf->san_dbf_buf;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200780 struct zfcp_san_dbf_record_ct_response *rct = &r->u.ct_resp;
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100781 int level = 3;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200782 unsigned long flags;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200783
Christof Schmittd46f3842009-08-18 15:43:07 +0200784 spin_lock_irqsave(&dbf->san_dbf_lock, flags);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200785 memset(r, 0, sizeof(*r));
786 strncpy(r->tag, "rctc", ZFCP_DBF_TAG_SIZE);
Christof Schmittf0216ae2009-05-15 13:18:14 +0200787 r->fsf_reqid = fsf_req->req_id;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200788 r->fsf_seqno = fsf_req->seq_no;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200789 r->s_id = wka_port->d_id;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200790 r->d_id = fc_host_port_id(adapter->scsi_host);
791 rct->cmd_rsp_code = hdr->cmd_rsp_code;
792 rct->revision = hdr->revision;
793 rct->reason_code = hdr->reason_code;
794 rct->expl = hdr->reason_code_expl;
795 rct->vendor_unique = hdr->vendor_unique;
Christof Schmitt39eb7e92008-12-19 16:57:01 +0100796 rct->max_res_size = hdr->max_res_size;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200797 rct->len = min((int)ct->resp->length - (int)sizeof(struct ct_hdr),
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100798 ZFCP_DBF_SAN_MAX_PAYLOAD);
Christof Schmittd46f3842009-08-18 15:43:07 +0200799 debug_event(dbf->san_dbf, level, r, sizeof(*r));
800 zfcp_dbf_hexdump(dbf->san_dbf, r, sizeof(*r), level,
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100801 (void *)hdr + sizeof(struct ct_hdr), rct->len);
Christof Schmittd46f3842009-08-18 15:43:07 +0200802 spin_unlock_irqrestore(&dbf->san_dbf_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200803}
804
Martin Peschke92c7a832008-03-31 11:15:30 +0200805static void zfcp_san_dbf_event_els(const char *tag, int level,
806 struct zfcp_fsf_req *fsf_req, u32 s_id,
807 u32 d_id, u8 ls_code, void *buffer,
808 int buflen)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200809{
810 struct zfcp_adapter *adapter = fsf_req->adapter;
Christof Schmittd46f3842009-08-18 15:43:07 +0200811 struct zfcp_dbf *dbf = adapter->dbf;
812 struct zfcp_san_dbf_record *rec = &dbf->san_dbf_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200813 unsigned long flags;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200814
Christof Schmittd46f3842009-08-18 15:43:07 +0200815 spin_lock_irqsave(&dbf->san_dbf_lock, flags);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200816 memset(rec, 0, sizeof(*rec));
Martin Peschke0f65e952008-03-27 14:21:56 +0100817 strncpy(rec->tag, tag, ZFCP_DBF_TAG_SIZE);
Christof Schmittf0216ae2009-05-15 13:18:14 +0200818 rec->fsf_reqid = fsf_req->req_id;
Martin Peschke0f65e952008-03-27 14:21:56 +0100819 rec->fsf_seqno = fsf_req->seq_no;
820 rec->s_id = s_id;
821 rec->d_id = d_id;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200822 rec->u.els.ls_code = ls_code;
Christof Schmittd46f3842009-08-18 15:43:07 +0200823 debug_event(dbf->san_dbf, level, rec, sizeof(*rec));
824 zfcp_dbf_hexdump(dbf->san_dbf, rec, sizeof(*rec), level,
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100825 buffer, min(buflen, ZFCP_DBF_SAN_MAX_PAYLOAD));
Christof Schmittd46f3842009-08-18 15:43:07 +0200826 spin_unlock_irqrestore(&dbf->san_dbf_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200827}
828
Martin Peschkebfab1632008-03-31 11:15:31 +0200829/**
830 * zfcp_san_dbf_event_els_request - trace event for issued ELS
831 * @fsf_req: request containing issued ELS
832 */
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100833void zfcp_san_dbf_event_els_request(struct zfcp_fsf_req *fsf_req)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200834{
835 struct zfcp_send_els *els = (struct zfcp_send_els *)fsf_req->data;
836
Martin Peschke92c7a832008-03-31 11:15:30 +0200837 zfcp_san_dbf_event_els("oels", 2, fsf_req,
838 fc_host_port_id(els->adapter->scsi_host),
Swen Schillig44cc76f2008-10-01 12:42:16 +0200839 els->d_id, *(u8 *) sg_virt(els->req),
840 sg_virt(els->req), els->req->length);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200841}
842
Martin Peschkebfab1632008-03-31 11:15:31 +0200843/**
844 * zfcp_san_dbf_event_els_response - trace event for completed ELS
845 * @fsf_req: request containing ELS response
846 */
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100847void zfcp_san_dbf_event_els_response(struct zfcp_fsf_req *fsf_req)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200848{
849 struct zfcp_send_els *els = (struct zfcp_send_els *)fsf_req->data;
850
Martin Peschke92c7a832008-03-31 11:15:30 +0200851 zfcp_san_dbf_event_els("rels", 2, fsf_req, els->d_id,
852 fc_host_port_id(els->adapter->scsi_host),
Swen Schillig44cc76f2008-10-01 12:42:16 +0200853 *(u8 *)sg_virt(els->req), sg_virt(els->resp),
Martin Peschke92c7a832008-03-31 11:15:30 +0200854 els->resp->length);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200855}
856
Martin Peschkebfab1632008-03-31 11:15:31 +0200857/**
858 * zfcp_san_dbf_event_incoming_els - trace event for incomig ELS
859 * @fsf_req: request containing unsolicited status buffer with incoming ELS
860 */
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100861void zfcp_san_dbf_event_incoming_els(struct zfcp_fsf_req *fsf_req)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200862{
863 struct zfcp_adapter *adapter = fsf_req->adapter;
Martin Peschke92c7a832008-03-31 11:15:30 +0200864 struct fsf_status_read_buffer *buf =
865 (struct fsf_status_read_buffer *)fsf_req->data;
866 int length = (int)buf->length -
867 (int)((void *)&buf->payload - (void *)buf);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200868
Martin Peschke92c7a832008-03-31 11:15:30 +0200869 zfcp_san_dbf_event_els("iels", 1, fsf_req, buf->d_id,
870 fc_host_port_id(adapter->scsi_host),
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200871 buf->payload.data[0], (void *)buf->payload.data,
Martin Peschke92c7a832008-03-31 11:15:30 +0200872 length);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200873}
874
Martin Peschke92c7a832008-03-31 11:15:30 +0200875static int zfcp_san_dbf_view_format(debug_info_t *id, struct debug_view *view,
876 char *out_buf, const char *in_buf)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200877{
Martin Peschkeb634fff2008-03-31 11:15:24 +0200878 struct zfcp_san_dbf_record *r = (struct zfcp_san_dbf_record *)in_buf;
Martin Peschkeb634fff2008-03-31 11:15:24 +0200879 char *p = out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200880
Martin Peschkeb634fff2008-03-31 11:15:24 +0200881 if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200882 return 0;
883
Martin Peschkea9c85772008-03-31 11:15:27 +0200884 zfcp_dbf_tag(&p, "tag", r->tag);
Martin Peschkeb634fff2008-03-31 11:15:24 +0200885 zfcp_dbf_out(&p, "fsf_reqid", "0x%0Lx", r->fsf_reqid);
886 zfcp_dbf_out(&p, "fsf_seqno", "0x%08x", r->fsf_seqno);
887 zfcp_dbf_out(&p, "s_id", "0x%06x", r->s_id);
888 zfcp_dbf_out(&p, "d_id", "0x%06x", r->d_id);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200889
Martin Peschkeb634fff2008-03-31 11:15:24 +0200890 if (strncmp(r->tag, "octc", ZFCP_DBF_TAG_SIZE) == 0) {
Martin Peschke6bc473d2008-03-31 11:15:29 +0200891 struct zfcp_san_dbf_record_ct_request *ct = &r->u.ct_req;
892 zfcp_dbf_out(&p, "cmd_req_code", "0x%04x", ct->cmd_req_code);
893 zfcp_dbf_out(&p, "revision", "0x%02x", ct->revision);
894 zfcp_dbf_out(&p, "gs_type", "0x%02x", ct->gs_type);
895 zfcp_dbf_out(&p, "gs_subtype", "0x%02x", ct->gs_subtype);
896 zfcp_dbf_out(&p, "options", "0x%02x", ct->options);
897 zfcp_dbf_out(&p, "max_res_size", "0x%04x", ct->max_res_size);
Martin Peschkeb634fff2008-03-31 11:15:24 +0200898 } else if (strncmp(r->tag, "rctc", ZFCP_DBF_TAG_SIZE) == 0) {
Martin Peschke6bc473d2008-03-31 11:15:29 +0200899 struct zfcp_san_dbf_record_ct_response *ct = &r->u.ct_resp;
900 zfcp_dbf_out(&p, "cmd_rsp_code", "0x%04x", ct->cmd_rsp_code);
901 zfcp_dbf_out(&p, "revision", "0x%02x", ct->revision);
902 zfcp_dbf_out(&p, "reason_code", "0x%02x", ct->reason_code);
903 zfcp_dbf_out(&p, "reason_code_expl", "0x%02x", ct->expl);
904 zfcp_dbf_out(&p, "vendor_unique", "0x%02x", ct->vendor_unique);
Christof Schmitt39eb7e92008-12-19 16:57:01 +0100905 zfcp_dbf_out(&p, "max_res_size", "0x%04x", ct->max_res_size);
Martin Peschkeb634fff2008-03-31 11:15:24 +0200906 } else if (strncmp(r->tag, "oels", ZFCP_DBF_TAG_SIZE) == 0 ||
907 strncmp(r->tag, "rels", ZFCP_DBF_TAG_SIZE) == 0 ||
908 strncmp(r->tag, "iels", ZFCP_DBF_TAG_SIZE) == 0) {
Martin Peschke6bc473d2008-03-31 11:15:29 +0200909 struct zfcp_san_dbf_record_els *els = &r->u.els;
910 zfcp_dbf_out(&p, "ls_code", "0x%02x", els->ls_code);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200911 }
Martin Peschkeb634fff2008-03-31 11:15:24 +0200912 return p - out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200913}
914
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100915static struct debug_view zfcp_san_dbf_view = {
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200916 "structured",
917 NULL,
918 &zfcp_dbf_view_header,
919 &zfcp_san_dbf_view_format,
920 NULL,
921 NULL
922};
923
Martin Peschke92c7a832008-03-31 11:15:30 +0200924static void zfcp_scsi_dbf_event(const char *tag, const char *tag2, int level,
925 struct zfcp_adapter *adapter,
926 struct scsi_cmnd *scsi_cmnd,
927 struct zfcp_fsf_req *fsf_req,
928 unsigned long old_req_id)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200929{
Christof Schmittd46f3842009-08-18 15:43:07 +0200930 struct zfcp_dbf *dbf = adapter->dbf;
931 struct zfcp_scsi_dbf_record *rec = &dbf->scsi_dbf_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200932 struct zfcp_dbf_dump *dump = (struct zfcp_dbf_dump *)rec;
933 unsigned long flags;
934 struct fcp_rsp_iu *fcp_rsp;
935 char *fcp_rsp_info = NULL, *fcp_sns_info = NULL;
936 int offset = 0, buflen = 0;
937
Christof Schmittd46f3842009-08-18 15:43:07 +0200938 spin_lock_irqsave(&dbf->scsi_dbf_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200939 do {
Martin Peschke6bc473d2008-03-31 11:15:29 +0200940 memset(rec, 0, sizeof(*rec));
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200941 if (offset == 0) {
942 strncpy(rec->tag, tag, ZFCP_DBF_TAG_SIZE);
943 strncpy(rec->tag2, tag2, ZFCP_DBF_TAG_SIZE);
Maxim Shchetynined829ad2006-02-11 01:42:58 +0100944 if (scsi_cmnd != NULL) {
945 if (scsi_cmnd->device) {
946 rec->scsi_id = scsi_cmnd->device->id;
947 rec->scsi_lun = scsi_cmnd->device->lun;
948 }
949 rec->scsi_result = scsi_cmnd->result;
950 rec->scsi_cmnd = (unsigned long)scsi_cmnd;
951 rec->scsi_serial = scsi_cmnd->serial_number;
Boaz Harrosh64a87b22008-04-30 11:19:47 +0300952 memcpy(rec->scsi_opcode, scsi_cmnd->cmnd,
Maxim Shchetynined829ad2006-02-11 01:42:58 +0100953 min((int)scsi_cmnd->cmd_len,
954 ZFCP_DBF_SCSI_OPCODE));
955 rec->scsi_retries = scsi_cmnd->retries;
956 rec->scsi_allowed = scsi_cmnd->allowed;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200957 }
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200958 if (fsf_req != NULL) {
959 fcp_rsp = (struct fcp_rsp_iu *)
960 &(fsf_req->qtcb->bottom.io.fcp_rsp);
Martin Petermannf76af7d2008-07-02 10:56:36 +0200961 fcp_rsp_info = (unsigned char *) &fcp_rsp[1];
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200962 fcp_sns_info =
963 zfcp_get_fcp_sns_info_ptr(fcp_rsp);
964
Martin Peschke6bc473d2008-03-31 11:15:29 +0200965 rec->rsp_validity = fcp_rsp->validity.value;
966 rec->rsp_scsi_status = fcp_rsp->scsi_status;
967 rec->rsp_resid = fcp_rsp->fcp_resid;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200968 if (fcp_rsp->validity.bits.fcp_rsp_len_valid)
Martin Peschke6bc473d2008-03-31 11:15:29 +0200969 rec->rsp_code = *(fcp_rsp_info + 3);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200970 if (fcp_rsp->validity.bits.fcp_sns_len_valid) {
971 buflen = min((int)fcp_rsp->fcp_sns_len,
972 ZFCP_DBF_SCSI_MAX_FCP_SNS_INFO);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200973 rec->sns_info_len = buflen;
974 memcpy(rec->sns_info, fcp_sns_info,
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200975 min(buflen,
976 ZFCP_DBF_SCSI_FCP_SNS_INFO));
977 offset += min(buflen,
978 ZFCP_DBF_SCSI_FCP_SNS_INFO);
979 }
980
Christof Schmittf0216ae2009-05-15 13:18:14 +0200981 rec->fsf_reqid = fsf_req->req_id;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200982 rec->fsf_seqno = fsf_req->seq_no;
983 rec->fsf_issued = fsf_req->issued;
984 }
Martin Peschke6bc473d2008-03-31 11:15:29 +0200985 rec->old_fsf_reqid = old_req_id;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200986 } else {
987 strncpy(dump->tag, "dump", ZFCP_DBF_TAG_SIZE);
988 dump->total_size = buflen;
989 dump->offset = offset;
990 dump->size = min(buflen - offset,
991 (int)sizeof(struct
992 zfcp_scsi_dbf_record) -
993 (int)sizeof(struct zfcp_dbf_dump));
994 memcpy(dump->data, fcp_sns_info + offset, dump->size);
995 offset += dump->size;
996 }
Christof Schmittd46f3842009-08-18 15:43:07 +0200997 debug_event(dbf->scsi_dbf, level, rec, sizeof(*rec));
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200998 } while (offset < buflen);
Christof Schmittd46f3842009-08-18 15:43:07 +0200999 spin_unlock_irqrestore(&dbf->scsi_dbf_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001000}
1001
Martin Peschkebfab1632008-03-31 11:15:31 +02001002/**
1003 * zfcp_scsi_dbf_event_result - trace event for SCSI command completion
1004 * @tag: tag indicating success or failure of SCSI command
1005 * @level: trace level applicable for this event
1006 * @adapter: adapter that has been used to issue the SCSI command
1007 * @scsi_cmnd: SCSI command pointer
1008 * @fsf_req: request used to issue SCSI command (might be NULL)
1009 */
Martin Peschke92c7a832008-03-31 11:15:30 +02001010void zfcp_scsi_dbf_event_result(const char *tag, int level,
1011 struct zfcp_adapter *adapter,
1012 struct scsi_cmnd *scsi_cmnd,
1013 struct zfcp_fsf_req *fsf_req)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001014{
Martin Peschke92c7a832008-03-31 11:15:30 +02001015 zfcp_scsi_dbf_event("rslt", tag, level, adapter, scsi_cmnd, fsf_req, 0);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001016}
1017
Martin Peschkebfab1632008-03-31 11:15:31 +02001018/**
1019 * zfcp_scsi_dbf_event_abort - trace event for SCSI command abort
1020 * @tag: tag indicating success or failure of abort operation
1021 * @adapter: adapter thas has been used to issue SCSI command to be aborted
1022 * @scsi_cmnd: SCSI command to be aborted
1023 * @new_fsf_req: request containing abort (might be NULL)
1024 * @old_req_id: identifier of request containg SCSI command to be aborted
1025 */
Martin Peschke92c7a832008-03-31 11:15:30 +02001026void zfcp_scsi_dbf_event_abort(const char *tag, struct zfcp_adapter *adapter,
1027 struct scsi_cmnd *scsi_cmnd,
1028 struct zfcp_fsf_req *new_fsf_req,
1029 unsigned long old_req_id)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001030{
Martin Peschke92c7a832008-03-31 11:15:30 +02001031 zfcp_scsi_dbf_event("abrt", tag, 1, adapter, scsi_cmnd, new_fsf_req,
1032 old_req_id);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001033}
1034
Martin Peschkebfab1632008-03-31 11:15:31 +02001035/**
1036 * zfcp_scsi_dbf_event_devreset - trace event for Logical Unit or Target Reset
1037 * @tag: tag indicating success or failure of reset operation
1038 * @flag: indicates type of reset (Target Reset, Logical Unit Reset)
1039 * @unit: unit that needs reset
1040 * @scsi_cmnd: SCSI command which caused this error recovery
1041 */
Martin Peschke92c7a832008-03-31 11:15:30 +02001042void zfcp_scsi_dbf_event_devreset(const char *tag, u8 flag,
1043 struct zfcp_unit *unit,
1044 struct scsi_cmnd *scsi_cmnd)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001045{
Martin Peschke92c7a832008-03-31 11:15:30 +02001046 zfcp_scsi_dbf_event(flag == FCP_TARGET_RESET ? "trst" : "lrst", tag, 1,
1047 unit->port->adapter, scsi_cmnd, NULL, 0);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001048}
1049
Martin Peschke92c7a832008-03-31 11:15:30 +02001050static int zfcp_scsi_dbf_view_format(debug_info_t *id, struct debug_view *view,
1051 char *out_buf, const char *in_buf)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001052{
Martin Peschkeb634fff2008-03-31 11:15:24 +02001053 struct zfcp_scsi_dbf_record *r = (struct zfcp_scsi_dbf_record *)in_buf;
Martin Peschke8fc5af12008-03-31 11:15:23 +02001054 struct timespec t;
Martin Peschkeb634fff2008-03-31 11:15:24 +02001055 char *p = out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001056
Martin Peschkeb634fff2008-03-31 11:15:24 +02001057 if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001058 return 0;
1059
Martin Peschkea9c85772008-03-31 11:15:27 +02001060 zfcp_dbf_tag(&p, "tag", r->tag);
1061 zfcp_dbf_tag(&p, "tag2", r->tag2);
Martin Peschkeb634fff2008-03-31 11:15:24 +02001062 zfcp_dbf_out(&p, "scsi_id", "0x%08x", r->scsi_id);
1063 zfcp_dbf_out(&p, "scsi_lun", "0x%08x", r->scsi_lun);
1064 zfcp_dbf_out(&p, "scsi_result", "0x%08x", r->scsi_result);
1065 zfcp_dbf_out(&p, "scsi_cmnd", "0x%0Lx", r->scsi_cmnd);
1066 zfcp_dbf_out(&p, "scsi_serial", "0x%016Lx", r->scsi_serial);
Martin Peschkedf29f4a2008-03-31 11:15:26 +02001067 zfcp_dbf_outd(&p, "scsi_opcode", r->scsi_opcode, ZFCP_DBF_SCSI_OPCODE,
1068 0, ZFCP_DBF_SCSI_OPCODE);
Martin Peschkeb634fff2008-03-31 11:15:24 +02001069 zfcp_dbf_out(&p, "scsi_retries", "0x%02x", r->scsi_retries);
1070 zfcp_dbf_out(&p, "scsi_allowed", "0x%02x", r->scsi_allowed);
1071 if (strncmp(r->tag, "abrt", ZFCP_DBF_TAG_SIZE) == 0)
Martin Peschke6bc473d2008-03-31 11:15:29 +02001072 zfcp_dbf_out(&p, "old_fsf_reqid", "0x%0Lx", r->old_fsf_reqid);
Martin Peschkeb634fff2008-03-31 11:15:24 +02001073 zfcp_dbf_out(&p, "fsf_reqid", "0x%0Lx", r->fsf_reqid);
1074 zfcp_dbf_out(&p, "fsf_seqno", "0x%08x", r->fsf_seqno);
1075 zfcp_dbf_timestamp(r->fsf_issued, &t);
1076 zfcp_dbf_out(&p, "fsf_issued", "%011lu:%06lu", t.tv_sec, t.tv_nsec);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001077
Martin Peschkeb634fff2008-03-31 11:15:24 +02001078 if (strncmp(r->tag, "rslt", ZFCP_DBF_TAG_SIZE) == 0) {
Martin Peschke6bc473d2008-03-31 11:15:29 +02001079 zfcp_dbf_out(&p, "fcp_rsp_validity", "0x%02x", r->rsp_validity);
1080 zfcp_dbf_out(&p, "fcp_rsp_scsi_status", "0x%02x",
1081 r->rsp_scsi_status);
1082 zfcp_dbf_out(&p, "fcp_rsp_resid", "0x%08x", r->rsp_resid);
1083 zfcp_dbf_out(&p, "fcp_rsp_code", "0x%08x", r->rsp_code);
1084 zfcp_dbf_out(&p, "fcp_sns_info_len", "0x%08x", r->sns_info_len);
1085 zfcp_dbf_outd(&p, "fcp_sns_info", r->sns_info,
1086 min((int)r->sns_info_len,
Martin Peschkedf29f4a2008-03-31 11:15:26 +02001087 ZFCP_DBF_SCSI_FCP_SNS_INFO), 0,
Martin Peschke6bc473d2008-03-31 11:15:29 +02001088 r->sns_info_len);
Martin Peschkeb634fff2008-03-31 11:15:24 +02001089 }
1090 p += sprintf(p, "\n");
1091 return p - out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001092}
1093
Heiko Carstens2b67fc42007-02-05 21:16:47 +01001094static struct debug_view zfcp_scsi_dbf_view = {
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001095 "structured",
1096 NULL,
1097 &zfcp_dbf_view_header,
1098 &zfcp_scsi_dbf_view_format,
1099 NULL,
1100 NULL
1101};
1102
Christof Schmittd46f3842009-08-18 15:43:07 +02001103static debug_info_t *zfcp_dbf_reg(const char *name, int level,
1104 struct debug_view *view, int size)
1105{
1106 struct debug_info *d;
1107
1108 d = debug_register(name, dbfsize, level, size);
1109 if (!d)
1110 return NULL;
1111
1112 debug_register_view(d, &debug_hex_ascii_view);
1113 debug_register_view(d, view);
1114 debug_set_level(d, level);
1115
1116 return d;
1117}
1118
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001119/**
1120 * zfcp_adapter_debug_register - registers debug feature for an adapter
1121 * @adapter: pointer to adapter for which debug features should be registered
1122 * return: -ENOMEM on error, 0 otherwise
1123 */
1124int zfcp_adapter_debug_register(struct zfcp_adapter *adapter)
1125{
1126 char dbf_name[DEBUG_MAX_NAME_LEN];
Christof Schmittd46f3842009-08-18 15:43:07 +02001127 struct zfcp_dbf *dbf;
1128
1129 dbf = kmalloc(sizeof(struct zfcp_dbf), GFP_KERNEL);
1130 if (!dbf)
1131 return -ENOMEM;
1132
1133 spin_lock_init(&dbf->hba_dbf_lock);
1134 spin_lock_init(&dbf->san_dbf_lock);
1135 spin_lock_init(&dbf->scsi_dbf_lock);
1136 spin_lock_init(&dbf->rec_dbf_lock);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001137
1138 /* debug feature area which records recovery activity */
Christof Schmittb225cf92008-12-19 16:57:00 +01001139 sprintf(dbf_name, "zfcp_%s_rec", dev_name(&adapter->ccw_device->dev));
Christof Schmittd46f3842009-08-18 15:43:07 +02001140 dbf->rec_dbf = zfcp_dbf_reg(dbf_name, 3, &zfcp_rec_dbf_view,
1141 sizeof(struct zfcp_rec_dbf_record));
1142 if (!dbf->rec_dbf)
1143 goto fail_rec;
Martin Peschked79a83d2008-03-27 14:22:00 +01001144
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001145 /* debug feature area which records HBA (FSF and QDIO) conditions */
Christof Schmittb225cf92008-12-19 16:57:00 +01001146 sprintf(dbf_name, "zfcp_%s_hba", dev_name(&adapter->ccw_device->dev));
Christof Schmittd46f3842009-08-18 15:43:07 +02001147 dbf->hba_dbf = zfcp_dbf_reg(dbf_name, 3, &zfcp_hba_dbf_view,
1148 sizeof(struct zfcp_hba_dbf_record));
1149 if (!dbf->hba_dbf)
1150 goto fail_hba;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001151
1152 /* debug feature area which records SAN command failures and recovery */
Christof Schmittb225cf92008-12-19 16:57:00 +01001153 sprintf(dbf_name, "zfcp_%s_san", dev_name(&adapter->ccw_device->dev));
Christof Schmittd46f3842009-08-18 15:43:07 +02001154 dbf->san_dbf = zfcp_dbf_reg(dbf_name, 6, &zfcp_san_dbf_view,
1155 sizeof(struct zfcp_san_dbf_record));
1156 if (!dbf->san_dbf)
1157 goto fail_san;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001158
1159 /* debug feature area which records SCSI command failures and recovery */
Christof Schmittb225cf92008-12-19 16:57:00 +01001160 sprintf(dbf_name, "zfcp_%s_scsi", dev_name(&adapter->ccw_device->dev));
Christof Schmittd46f3842009-08-18 15:43:07 +02001161 dbf->scsi_dbf = zfcp_dbf_reg(dbf_name, 3, &zfcp_scsi_dbf_view,
1162 sizeof(struct zfcp_scsi_dbf_record));
1163 if (!dbf->scsi_dbf)
1164 goto fail_scsi;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001165
Christof Schmittd46f3842009-08-18 15:43:07 +02001166 adapter->dbf = dbf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001167 return 0;
1168
Christof Schmittd46f3842009-08-18 15:43:07 +02001169fail_scsi:
1170 debug_unregister(dbf->san_dbf);
1171fail_san:
1172 debug_unregister(dbf->hba_dbf);
1173fail_hba:
1174 debug_unregister(dbf->rec_dbf);
1175fail_rec:
1176 kfree(dbf);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001177 return -ENOMEM;
1178}
1179
1180/**
1181 * zfcp_adapter_debug_unregister - unregisters debug feature for an adapter
1182 * @adapter: pointer to adapter for which debug features should be unregistered
1183 */
1184void zfcp_adapter_debug_unregister(struct zfcp_adapter *adapter)
1185{
Christof Schmittd46f3842009-08-18 15:43:07 +02001186 debug_unregister(adapter->dbf->scsi_dbf);
1187 debug_unregister(adapter->dbf->san_dbf);
1188 debug_unregister(adapter->dbf->hba_dbf);
1189 debug_unregister(adapter->dbf->rec_dbf);
1190 kfree(adapter->dbf);
1191 adapter->dbf = NULL;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001192}