zfcp_dbf.c 35.6 KB
Newer Older
1
/*
C
Christof Schmitt 已提交
2
 * zfcp device driver
3
 *
C
Christof Schmitt 已提交
4
 * Debug traces for zfcp.
5
 *
6
 * Copyright IBM Corporation 2002, 2009
7 8
 */

9 10 11
#define KMSG_COMPONENT "zfcp"
#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt

12
#include <linux/ctype.h>
13
#include <asm/debug.h>
14
#include "zfcp_dbf.h"
15 16 17 18 19 20 21 22
#include "zfcp_ext.h"

static u32 dbfsize = 4;

module_param(dbfsize, uint, 0400);
MODULE_PARM_DESC(dbfsize,
		 "number of pages for each debug feature area (default 4)");

23 24 25 26 27 28 29 30 31 32 33 34 35 36
static void zfcp_dbf_hexdump(debug_info_t *dbf, void *to, int to_len,
			     int level, char *from, int from_len)
{
	int offset;
	struct zfcp_dbf_dump *dump = to;
	int room = to_len - sizeof(*dump);

	for (offset = 0; offset < from_len; offset += dump->size) {
		memset(to, 0, to_len);
		strncpy(dump->tag, "dump", ZFCP_DBF_TAG_SIZE);
		dump->total_size = from_len;
		dump->offset = offset;
		dump->size = min(from_len - offset, room);
		memcpy(dump->data, from + offset, dump->size);
37
		debug_event(dbf, level, dump, dump->size + sizeof(*dump));
38 39 40
	}
}

41 42
/* FIXME: this duplicate this code in s390 debug feature */
static void zfcp_dbf_timestamp(unsigned long long stck, struct timespec *time)
43 44 45 46 47 48
{
	unsigned long long sec;

	stck -= 0x8126d60e46000000LL - (0x3c26700LL * 1000000 * 4096);
	sec = stck >> 12;
	do_div(sec, 1000000);
49
	time->tv_sec = sec;
50
	stck -= (sec * 1000000) << 12;
51
	time->tv_nsec = ((stck * 1000) >> 12);
52 53
}

54
static void zfcp_dbf_tag(char **p, const char *label, const char *tag)
55
{
56
	int i;
57

58
	*p += sprintf(*p, "%-24s", label);
59
	for (i = 0; i < ZFCP_DBF_TAG_SIZE; i++)
60 61
		*p += sprintf(*p, "%c", tag[i]);
	*p += sprintf(*p, "\n");
62 63
}

64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
static void zfcp_dbf_outs(char **buf, const char *s1, const char *s2)
{
	*buf += sprintf(*buf, "%-24s%s\n", s1, s2);
}

static void zfcp_dbf_out(char **buf, const char *s, const char *format, ...)
{
	va_list arg;

	*buf += sprintf(*buf, "%-24s", s);
	va_start(arg, format);
	*buf += vsprintf(*buf, format, arg);
	va_end(arg);
	*buf += sprintf(*buf, "\n");
}

80 81
static void zfcp_dbf_outd(char **p, const char *label, char *buffer,
			  int buflen, int offset, int total_size)
82
{
83 84
	if (!offset)
		*p += sprintf(*p, "%-24s  ", label);
85 86 87
	while (buflen--) {
		if (offset > 0) {
			if ((offset % 32) == 0)
88
				*p += sprintf(*p, "\n%-24c  ", ' ');
89
			else if ((offset % 4) == 0)
90
				*p += sprintf(*p, " ");
91
		}
92
		*p += sprintf(*p, "%02x", *buffer++);
93
		if (++offset == total_size) {
94
			*p += sprintf(*p, "\n");
95 96 97
			break;
		}
	}
98 99
	if (!total_size)
		*p += sprintf(*p, "\n");
100 101
}

102 103
static int zfcp_dbf_view_header(debug_info_t *id, struct debug_view *view,
				int area, debug_entry_t *entry, char *out_buf)
104 105
{
	struct zfcp_dbf_dump *dump = (struct zfcp_dbf_dump *)DEBUG_DATA(entry);
106
	struct timespec t;
107
	char *p = out_buf;
108 109

	if (strncmp(dump->tag, "dump", ZFCP_DBF_TAG_SIZE) != 0) {
110
		zfcp_dbf_timestamp(entry->id.stck, &t);
111 112 113 114
		zfcp_dbf_out(&p, "timestamp", "%011lu:%06lu",
			     t.tv_sec, t.tv_nsec);
		zfcp_dbf_out(&p, "cpu", "%02i", entry->id.fields.cpuid);
	} else	{
115
		zfcp_dbf_outd(&p, "", dump->data, dump->size, dump->offset,
116
			      dump->total_size);
117
		if ((dump->offset + dump->size) == dump->total_size)
118
			p += sprintf(p, "\n");
119
	}
120
	return p - out_buf;
121 122
}

S
Swen Schillig 已提交
123 124 125
void _zfcp_dbf_hba_fsf_response(const char *tag2, int level,
				struct zfcp_fsf_req *fsf_req,
				struct zfcp_dbf *dbf)
126 127 128
{
	struct fsf_qtcb *qtcb = fsf_req->qtcb;
	union fsf_prot_status_qual *prot_status_qual =
129
					&qtcb->prefix.prot_status_qual;
130 131 132 133 134
	union fsf_status_qual *fsf_status_qual = &qtcb->header.fsf_status_qual;
	struct scsi_cmnd *scsi_cmnd;
	struct zfcp_port *port;
	struct zfcp_unit *unit;
	struct zfcp_send_els *send_els;
S
Swen Schillig 已提交
135 136
	struct zfcp_dbf_hba_record *rec = &dbf->hba_buf;
	struct zfcp_dbf_hba_record_response *response = &rec->u.response;
137 138
	unsigned long flags;

S
Swen Schillig 已提交
139
	spin_lock_irqsave(&dbf->hba_lock, flags);
140
	memset(rec, 0, sizeof(*rec));
141
	strncpy(rec->tag, "resp", ZFCP_DBF_TAG_SIZE);
142
	strncpy(rec->tag2, tag2, ZFCP_DBF_TAG_SIZE);
143 144

	response->fsf_command = fsf_req->fsf_command;
145
	response->fsf_reqid = fsf_req->req_id;
146 147 148 149 150 151 152 153 154
	response->fsf_seqno = fsf_req->seq_no;
	response->fsf_issued = fsf_req->issued;
	response->fsf_prot_status = qtcb->prefix.prot_status;
	response->fsf_status = qtcb->header.fsf_status;
	memcpy(response->fsf_prot_status_qual,
	       prot_status_qual, FSF_PROT_STATUS_QUAL_SIZE);
	memcpy(response->fsf_status_qual,
	       fsf_status_qual, FSF_STATUS_QUALIFIER_SIZE);
	response->fsf_req_status = fsf_req->status;
155 156 157
	response->sbal_first = fsf_req->queue_req.sbal_first;
	response->sbal_last = fsf_req->queue_req.sbal_last;
	response->sbal_response = fsf_req->queue_req.sbal_response;
158 159 160 161 162 163 164 165
	response->pool = fsf_req->pool != NULL;
	response->erp_action = (unsigned long)fsf_req->erp_action;

	switch (fsf_req->fsf_command) {
	case FSF_QTCB_FCP_CMND:
		if (fsf_req->status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT)
			break;
		scsi_cmnd = (struct scsi_cmnd *)fsf_req->data;
166 167 168
		if (scsi_cmnd) {
			response->u.fcp.cmnd = (unsigned long)scsi_cmnd;
			response->u.fcp.serial = scsi_cmnd->serial_number;
169 170 171 172 173 174 175
		}
		break;

	case FSF_QTCB_OPEN_PORT_WITH_DID:
	case FSF_QTCB_CLOSE_PORT:
	case FSF_QTCB_CLOSE_PHYSICAL_PORT:
		port = (struct zfcp_port *)fsf_req->data;
176 177 178
		response->u.port.wwpn = port->wwpn;
		response->u.port.d_id = port->d_id;
		response->u.port.port_handle = qtcb->header.port_handle;
179 180 181 182 183 184
		break;

	case FSF_QTCB_OPEN_LUN:
	case FSF_QTCB_CLOSE_LUN:
		unit = (struct zfcp_unit *)fsf_req->data;
		port = unit->port;
185 186 187 188
		response->u.unit.wwpn = port->wwpn;
		response->u.unit.fcp_lun = unit->fcp_lun;
		response->u.unit.port_handle = qtcb->header.port_handle;
		response->u.unit.lun_handle = qtcb->header.lun_handle;
189 190 191 192
		break;

	case FSF_QTCB_SEND_ELS:
		send_els = (struct zfcp_send_els *)fsf_req->data;
193 194
		response->u.els.d_id = qtcb->bottom.support.d_id;
		response->u.els.ls_code = send_els->ls_code >> 24;
195 196 197 198 199 200 201 202 203 204 205
		break;

	case FSF_QTCB_ABORT_FCP_CMND:
	case FSF_QTCB_SEND_GENERIC:
	case FSF_QTCB_EXCHANGE_CONFIG_DATA:
	case FSF_QTCB_EXCHANGE_PORT_DATA:
	case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
	case FSF_QTCB_UPLOAD_CONTROL_FILE:
		break;
	}

S
Swen Schillig 已提交
206
	debug_event(dbf->hba, level, rec, sizeof(*rec));
207 208 209 210 211 212 213

	/* have fcp channel microcode fixed to use as little as possible */
	if (fsf_req->fsf_command != FSF_QTCB_FCP_CMND) {
		/* adjust length skipping trailing zeros */
		char *buf = (char *)qtcb + qtcb->header.log_start;
		int len = qtcb->header.log_length;
		for (; len && !buf[len - 1]; len--);
S
Swen Schillig 已提交
214
		zfcp_dbf_hexdump(dbf->hba, rec, sizeof(*rec), level, buf,
215
				 len);
216 217
	}

S
Swen Schillig 已提交
218
	spin_unlock_irqrestore(&dbf->hba_lock, flags);
219 220
}

S
Swen Schillig 已提交
221 222
void _zfcp_dbf_hba_fsf_unsol(const char *tag, int level, struct zfcp_dbf *dbf,
			     struct fsf_status_read_buffer *status_buffer)
223
{
S
Swen Schillig 已提交
224
	struct zfcp_dbf_hba_record *rec = &dbf->hba_buf;
225 226
	unsigned long flags;

S
Swen Schillig 已提交
227
	spin_lock_irqsave(&dbf->hba_lock, flags);
228
	memset(rec, 0, sizeof(*rec));
229 230 231
	strncpy(rec->tag, "stat", ZFCP_DBF_TAG_SIZE);
	strncpy(rec->tag2, tag, ZFCP_DBF_TAG_SIZE);

S
Swen Schillig 已提交
232
	rec->u.status.failed = atomic_read(&dbf->adapter->stat_miss);
233
	if (status_buffer != NULL) {
234 235 236
		rec->u.status.status_type = status_buffer->status_type;
		rec->u.status.status_subtype = status_buffer->status_subtype;
		memcpy(&rec->u.status.queue_designator,
237 238 239 240 241
		       &status_buffer->queue_designator,
		       sizeof(struct fsf_queue_designator));

		switch (status_buffer->status_type) {
		case FSF_STATUS_READ_SENSE_DATA_AVAIL:
242
			rec->u.status.payload_size =
243 244 245 246
			    ZFCP_DBF_UNSOL_PAYLOAD_SENSE_DATA_AVAIL;
			break;

		case FSF_STATUS_READ_BIT_ERROR_THRESHOLD:
247
			rec->u.status.payload_size =
248 249 250 251
			    ZFCP_DBF_UNSOL_PAYLOAD_BIT_ERROR_THRESHOLD;
			break;

		case FSF_STATUS_READ_LINK_DOWN:
252 253 254
			switch (status_buffer->status_subtype) {
			case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK:
			case FSF_STATUS_READ_SUB_FDISC_FAILED:
255
				rec->u.status.payload_size =
256 257
					sizeof(struct fsf_link_down_info);
			}
258 259
			break;

260
		case FSF_STATUS_READ_FEATURE_UPDATE_ALERT:
261
			rec->u.status.payload_size =
262 263
			    ZFCP_DBF_UNSOL_PAYLOAD_FEATURE_UPDATE_ALERT;
			break;
264
		}
265 266
		memcpy(&rec->u.status.payload,
		       &status_buffer->payload, rec->u.status.payload_size);
267 268
	}

S
Swen Schillig 已提交
269 270
	debug_event(dbf->hba, level, rec, sizeof(*rec));
	spin_unlock_irqrestore(&dbf->hba_lock, flags);
271 272
}

273
/**
S
Swen Schillig 已提交
274
 * zfcp_dbf_hba_qdio - trace event for QDIO related failure
275
 * @qdio: qdio structure affected by this QDIO related event
276 277 278 279
 * @qdio_error: as passed by qdio module
 * @sbal_index: first buffer with error condition, as passed by qdio module
 * @sbal_count: number of buffers affected, as passed by qdio module
 */
S
Swen Schillig 已提交
280 281
void zfcp_dbf_hba_qdio(struct zfcp_dbf *dbf, unsigned int qdio_error,
		       int sbal_index, int sbal_count)
282
{
S
Swen Schillig 已提交
283
	struct zfcp_dbf_hba_record *r = &dbf->hba_buf;
284 285
	unsigned long flags;

S
Swen Schillig 已提交
286
	spin_lock_irqsave(&dbf->hba_lock, flags);
287 288 289 290 291
	memset(r, 0, sizeof(*r));
	strncpy(r->tag, "qdio", ZFCP_DBF_TAG_SIZE);
	r->u.qdio.qdio_error = qdio_error;
	r->u.qdio.sbal_index = sbal_index;
	r->u.qdio.sbal_count = sbal_count;
S
Swen Schillig 已提交
292 293
	debug_event(dbf->hba, 0, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->hba_lock, flags);
294 295
}

296
/**
S
Swen Schillig 已提交
297 298
 * zfcp_dbf_hba_berr - trace event for bit error threshold
 * @dbf: dbf structure affected by this QDIO related event
299 300
 * @req: fsf request
 */
S
Swen Schillig 已提交
301
void zfcp_dbf_hba_berr(struct zfcp_dbf *dbf, struct zfcp_fsf_req *req)
302
{
S
Swen Schillig 已提交
303
	struct zfcp_dbf_hba_record *r = &dbf->hba_buf;
304 305 306 307
	struct fsf_status_read_buffer *sr_buf = req->data;
	struct fsf_bit_error_payload *err = &sr_buf->payload.bit_error;
	unsigned long flags;

S
Swen Schillig 已提交
308
	spin_lock_irqsave(&dbf->hba_lock, flags);
309 310 311
	memset(r, 0, sizeof(*r));
	strncpy(r->tag, "berr", ZFCP_DBF_TAG_SIZE);
	memcpy(&r->u.berr, err, sizeof(struct fsf_bit_error_payload));
S
Swen Schillig 已提交
312 313
	debug_event(dbf->hba, 0, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->hba_lock, flags);
314
}
S
Swen Schillig 已提交
315 316
static void zfcp_dbf_hba_view_response(char **p,
				       struct zfcp_dbf_hba_record_response *r)
317
{
318
	struct timespec t;
319

320 321 322
	zfcp_dbf_out(p, "fsf_command", "0x%08x", r->fsf_command);
	zfcp_dbf_out(p, "fsf_reqid", "0x%0Lx", r->fsf_reqid);
	zfcp_dbf_out(p, "fsf_seqno", "0x%08x", r->fsf_seqno);
323
	zfcp_dbf_timestamp(r->fsf_issued, &t);
324 325 326 327
	zfcp_dbf_out(p, "fsf_issued", "%011lu:%06lu", t.tv_sec, t.tv_nsec);
	zfcp_dbf_out(p, "fsf_prot_status", "0x%08x", r->fsf_prot_status);
	zfcp_dbf_out(p, "fsf_status", "0x%08x", r->fsf_status);
	zfcp_dbf_outd(p, "fsf_prot_status_qual", r->fsf_prot_status_qual,
328
		      FSF_PROT_STATUS_QUAL_SIZE, 0, FSF_PROT_STATUS_QUAL_SIZE);
329
	zfcp_dbf_outd(p, "fsf_status_qual", r->fsf_status_qual,
330
		      FSF_STATUS_QUALIFIER_SIZE, 0, FSF_STATUS_QUALIFIER_SIZE);
331 332
	zfcp_dbf_out(p, "fsf_req_status", "0x%08x", r->fsf_req_status);
	zfcp_dbf_out(p, "sbal_first", "0x%02x", r->sbal_first);
333
	zfcp_dbf_out(p, "sbal_last", "0x%02x", r->sbal_last);
334
	zfcp_dbf_out(p, "sbal_response", "0x%02x", r->sbal_response);
335
	zfcp_dbf_out(p, "pool", "0x%02x", r->pool);
336 337

	switch (r->fsf_command) {
338
	case FSF_QTCB_FCP_CMND:
339
		if (r->fsf_req_status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT)
340
			break;
341 342
		zfcp_dbf_out(p, "scsi_cmnd", "0x%0Lx", r->u.fcp.cmnd);
		zfcp_dbf_out(p, "scsi_serial", "0x%016Lx", r->u.fcp.serial);
343
		p += sprintf(*p, "\n");
344 345 346 347 348
		break;

	case FSF_QTCB_OPEN_PORT_WITH_DID:
	case FSF_QTCB_CLOSE_PORT:
	case FSF_QTCB_CLOSE_PHYSICAL_PORT:
349 350 351
		zfcp_dbf_out(p, "wwpn", "0x%016Lx", r->u.port.wwpn);
		zfcp_dbf_out(p, "d_id", "0x%06x", r->u.port.d_id);
		zfcp_dbf_out(p, "port_handle", "0x%08x", r->u.port.port_handle);
352 353 354 355
		break;

	case FSF_QTCB_OPEN_LUN:
	case FSF_QTCB_CLOSE_LUN:
356 357 358 359
		zfcp_dbf_out(p, "wwpn", "0x%016Lx", r->u.unit.wwpn);
		zfcp_dbf_out(p, "fcp_lun", "0x%016Lx", r->u.unit.fcp_lun);
		zfcp_dbf_out(p, "port_handle", "0x%08x", r->u.unit.port_handle);
		zfcp_dbf_out(p, "lun_handle", "0x%08x", r->u.unit.lun_handle);
360 361 362
		break;

	case FSF_QTCB_SEND_ELS:
363 364
		zfcp_dbf_out(p, "d_id", "0x%06x", r->u.els.d_id);
		zfcp_dbf_out(p, "ls_code", "0x%02x", r->u.els.ls_code);
365 366 367 368 369 370 371 372 373 374 375 376
		break;

	case FSF_QTCB_ABORT_FCP_CMND:
	case FSF_QTCB_SEND_GENERIC:
	case FSF_QTCB_EXCHANGE_CONFIG_DATA:
	case FSF_QTCB_EXCHANGE_PORT_DATA:
	case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
	case FSF_QTCB_UPLOAD_CONTROL_FILE:
		break;
	}
}

S
Swen Schillig 已提交
377 378
static void zfcp_dbf_hba_view_status(char **p,
				     struct zfcp_dbf_hba_record_status *r)
379
{
380 381 382 383
	zfcp_dbf_out(p, "failed", "0x%02x", r->failed);
	zfcp_dbf_out(p, "status_type", "0x%08x", r->status_type);
	zfcp_dbf_out(p, "status_subtype", "0x%08x", r->status_subtype);
	zfcp_dbf_outd(p, "queue_designator", (char *)&r->queue_designator,
384 385
		      sizeof(struct fsf_queue_designator), 0,
		      sizeof(struct fsf_queue_designator));
386
	zfcp_dbf_outd(p, "payload", (char *)&r->payload, r->payload_size, 0,
387
		      r->payload_size);
388 389
}

S
Swen Schillig 已提交
390
static void zfcp_dbf_hba_view_qdio(char **p, struct zfcp_dbf_hba_record_qdio *r)
391
{
392 393 394
	zfcp_dbf_out(p, "qdio_error", "0x%08x", r->qdio_error);
	zfcp_dbf_out(p, "sbal_index", "0x%02x", r->sbal_index);
	zfcp_dbf_out(p, "sbal_count", "0x%02x", r->sbal_count);
395 396
}

S
Swen Schillig 已提交
397
static void zfcp_dbf_hba_view_berr(char **p, struct fsf_bit_error_payload *r)
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
{
	zfcp_dbf_out(p, "link_failures", "%d", r->link_failure_error_count);
	zfcp_dbf_out(p, "loss_of_sync_err", "%d", r->loss_of_sync_error_count);
	zfcp_dbf_out(p, "loss_of_sig_err", "%d", r->loss_of_signal_error_count);
	zfcp_dbf_out(p, "prim_seq_err", "%d",
		     r->primitive_sequence_error_count);
	zfcp_dbf_out(p, "inval_trans_word_err", "%d",
		     r->invalid_transmission_word_error_count);
	zfcp_dbf_out(p, "CRC_errors", "%d", r->crc_error_count);
	zfcp_dbf_out(p, "prim_seq_event_to", "%d",
		     r->primitive_sequence_event_timeout_count);
	zfcp_dbf_out(p, "elast_buf_overrun_err", "%d",
		     r->elastic_buffer_overrun_error_count);
	zfcp_dbf_out(p, "adv_rec_buf2buf_cred", "%d",
		     r->advertised_receive_b2b_credit);
	zfcp_dbf_out(p, "curr_rec_buf2buf_cred", "%d",
		     r->current_receive_b2b_credit);
	zfcp_dbf_out(p, "adv_trans_buf2buf_cred", "%d",
		     r->advertised_transmit_b2b_credit);
	zfcp_dbf_out(p, "curr_trans_buf2buf_cred", "%d",
		     r->current_transmit_b2b_credit);
}

S
Swen Schillig 已提交
421
static int zfcp_dbf_hba_view_format(debug_info_t *id, struct debug_view *view,
422
				    char *out_buf, const char *in_buf)
423
{
S
Swen Schillig 已提交
424
	struct zfcp_dbf_hba_record *r = (struct zfcp_dbf_hba_record *)in_buf;
425
	char *p = out_buf;
426

427
	if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0)
428 429
		return 0;

430 431 432 433 434
	zfcp_dbf_tag(&p, "tag", r->tag);
	if (isalpha(r->tag2[0]))
		zfcp_dbf_tag(&p, "tag2", r->tag2);

	if (strncmp(r->tag, "resp", ZFCP_DBF_TAG_SIZE) == 0)
S
Swen Schillig 已提交
435
		zfcp_dbf_hba_view_response(&p, &r->u.response);
436
	else if (strncmp(r->tag, "stat", ZFCP_DBF_TAG_SIZE) == 0)
S
Swen Schillig 已提交
437
		zfcp_dbf_hba_view_status(&p, &r->u.status);
438
	else if (strncmp(r->tag, "qdio", ZFCP_DBF_TAG_SIZE) == 0)
S
Swen Schillig 已提交
439
		zfcp_dbf_hba_view_qdio(&p, &r->u.qdio);
440
	else if (strncmp(r->tag, "berr", ZFCP_DBF_TAG_SIZE) == 0)
S
Swen Schillig 已提交
441
		zfcp_dbf_hba_view_berr(&p, &r->u.berr);
442

443 444
	if (strncmp(r->tag, "resp", ZFCP_DBF_TAG_SIZE) != 0)
		p += sprintf(p, "\n");
445
	return p - out_buf;
446 447
}

S
Swen Schillig 已提交
448 449 450 451
static struct debug_view zfcp_dbf_hba_view = {
	.name = "structured",
	.header_proc = zfcp_dbf_view_header,
	.format_proc = zfcp_dbf_hba_view_format,
452 453
};

S
Swen Schillig 已提交
454
static const char *zfcp_dbf_rec_tags[] = {
455
	[ZFCP_REC_DBF_ID_THREAD] = "thread",
456
	[ZFCP_REC_DBF_ID_TARGET] = "target",
457
	[ZFCP_REC_DBF_ID_TRIGGER] = "trigger",
458
	[ZFCP_REC_DBF_ID_ACTION] = "action",
459 460
};

S
Swen Schillig 已提交
461
static int zfcp_dbf_rec_view_format(debug_info_t *id, struct debug_view *view,
462 463
				    char *buf, const char *_rec)
{
S
Swen Schillig 已提交
464
	struct zfcp_dbf_rec_record *r = (struct zfcp_dbf_rec_record *)_rec;
465
	char *p = buf;
466
	char hint[ZFCP_DBF_ID_SIZE + 1];
467

468 469
	memcpy(hint, r->id2, ZFCP_DBF_ID_SIZE);
	hint[ZFCP_DBF_ID_SIZE] = 0;
S
Swen Schillig 已提交
470
	zfcp_dbf_outs(&p, "tag", zfcp_dbf_rec_tags[r->id]);
471
	zfcp_dbf_outs(&p, "hint", hint);
472
	switch (r->id) {
473 474 475 476 477
	case ZFCP_REC_DBF_ID_THREAD:
		zfcp_dbf_out(&p, "total", "%d", r->u.thread.total);
		zfcp_dbf_out(&p, "ready", "%d", r->u.thread.ready);
		zfcp_dbf_out(&p, "running", "%d", r->u.thread.running);
		break;
478 479 480 481 482 483 484 485
	case ZFCP_REC_DBF_ID_TARGET:
		zfcp_dbf_out(&p, "reference", "0x%016Lx", r->u.target.ref);
		zfcp_dbf_out(&p, "status", "0x%08x", r->u.target.status);
		zfcp_dbf_out(&p, "erp_count", "%d", r->u.target.erp_count);
		zfcp_dbf_out(&p, "d_id", "0x%06x", r->u.target.d_id);
		zfcp_dbf_out(&p, "wwpn", "0x%016Lx", r->u.target.wwpn);
		zfcp_dbf_out(&p, "fcp_lun", "0x%016Lx", r->u.target.fcp_lun);
		break;
486 487 488 489 490 491 492 493 494 495 496
	case ZFCP_REC_DBF_ID_TRIGGER:
		zfcp_dbf_out(&p, "reference", "0x%016Lx", r->u.trigger.ref);
		zfcp_dbf_out(&p, "erp_action", "0x%016Lx", r->u.trigger.action);
		zfcp_dbf_out(&p, "requested", "%d", r->u.trigger.want);
		zfcp_dbf_out(&p, "executed", "%d", r->u.trigger.need);
		zfcp_dbf_out(&p, "wwpn", "0x%016Lx", r->u.trigger.wwpn);
		zfcp_dbf_out(&p, "fcp_lun", "0x%016Lx", r->u.trigger.fcp_lun);
		zfcp_dbf_out(&p, "adapter_status", "0x%08x", r->u.trigger.as);
		zfcp_dbf_out(&p, "port_status", "0x%08x", r->u.trigger.ps);
		zfcp_dbf_out(&p, "unit_status", "0x%08x", r->u.trigger.us);
		break;
497 498 499 500 501 502
	case ZFCP_REC_DBF_ID_ACTION:
		zfcp_dbf_out(&p, "erp_action", "0x%016Lx", r->u.action.action);
		zfcp_dbf_out(&p, "fsf_req", "0x%016Lx", r->u.action.fsf_req);
		zfcp_dbf_out(&p, "status", "0x%08Lx", r->u.action.status);
		zfcp_dbf_out(&p, "step", "0x%08Lx", r->u.action.step);
		break;
503
	}
504 505
	p += sprintf(p, "\n");
	return p - buf;
506 507
}

S
Swen Schillig 已提交
508 509 510 511
static struct debug_view zfcp_dbf_rec_view = {
	.name = "structured",
	.header_proc = zfcp_dbf_view_header,
	.format_proc = zfcp_dbf_rec_view_format,
512 513
};

514
/**
S
Swen Schillig 已提交
515
 * zfcp_dbf_rec_thread - trace event related to recovery thread operation
516
 * @id2: identifier for event
S
Swen Schillig 已提交
517
 * @dbf: reference to dbf structure
518
 * This function assumes that the caller is holding erp_lock.
519
 */
S
Swen Schillig 已提交
520
void zfcp_dbf_rec_thread(char *id2, struct zfcp_dbf *dbf)
521
{
S
Swen Schillig 已提交
522 523
	struct zfcp_adapter *adapter = dbf->adapter;
	struct zfcp_dbf_rec_record *r = &dbf->rec_buf;
524 525 526 527 528 529 530 531 532 533
	unsigned long flags = 0;
	struct list_head *entry;
	unsigned ready = 0, running = 0, total;

	list_for_each(entry, &adapter->erp_ready_head)
		ready++;
	list_for_each(entry, &adapter->erp_running_head)
		running++;
	total = adapter->erp_total_count;

S
Swen Schillig 已提交
534
	spin_lock_irqsave(&dbf->rec_lock, flags);
535 536
	memset(r, 0, sizeof(*r));
	r->id = ZFCP_REC_DBF_ID_THREAD;
537
	memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
538 539 540
	r->u.thread.total = total;
	r->u.thread.ready = ready;
	r->u.thread.running = running;
S
Swen Schillig 已提交
541 542
	debug_event(dbf->rec, 6, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->rec_lock, flags);
543 544
}

545
/**
S
Swen Schillig 已提交
546
 * zfcp_dbf_rec_thread - trace event related to recovery thread operation
547 548 549 550
 * @id2: identifier for event
 * @adapter: adapter
 * This function assumes that the caller does not hold erp_lock.
 */
S
Swen Schillig 已提交
551
void zfcp_dbf_rec_thread_lock(char *id2, struct zfcp_dbf *dbf)
552
{
S
Swen Schillig 已提交
553
	struct zfcp_adapter *adapter = dbf->adapter;
554 555 556
	unsigned long flags;

	read_lock_irqsave(&adapter->erp_lock, flags);
S
Swen Schillig 已提交
557
	zfcp_dbf_rec_thread(id2, dbf);
558 559 560
	read_unlock_irqrestore(&adapter->erp_lock, flags);
}

S
Swen Schillig 已提交
561 562 563
static void zfcp_dbf_rec_target(char *id2, void *ref, struct zfcp_dbf *dbf,
				atomic_t *status, atomic_t *erp_count, u64 wwpn,
				u32 d_id, u64 fcp_lun)
564
{
S
Swen Schillig 已提交
565
	struct zfcp_dbf_rec_record *r = &dbf->rec_buf;
566 567
	unsigned long flags;

S
Swen Schillig 已提交
568
	spin_lock_irqsave(&dbf->rec_lock, flags);
569 570
	memset(r, 0, sizeof(*r));
	r->id = ZFCP_REC_DBF_ID_TARGET;
571
	memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
572
	r->u.target.ref = (unsigned long)ref;
573 574 575 576 577
	r->u.target.status = atomic_read(status);
	r->u.target.wwpn = wwpn;
	r->u.target.d_id = d_id;
	r->u.target.fcp_lun = fcp_lun;
	r->u.target.erp_count = atomic_read(erp_count);
S
Swen Schillig 已提交
578 579
	debug_event(dbf->rec, 3, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->rec_lock, flags);
580 581 582
}

/**
S
Swen Schillig 已提交
583
 * zfcp_dbf_rec_adapter - trace event for adapter state change
584 585
 * @id: identifier for trigger of state change
 * @ref: additional reference (e.g. request)
S
Swen Schillig 已提交
586
 * @dbf: reference to dbf structure
587
 */
S
Swen Schillig 已提交
588
void zfcp_dbf_rec_adapter(char *id, void *ref, struct zfcp_dbf *dbf)
589
{
S
Swen Schillig 已提交
590 591 592
	struct zfcp_adapter *adapter = dbf->adapter;

	zfcp_dbf_rec_target(id, ref, dbf, &adapter->status,
593 594 595 596
				  &adapter->erp_counter, 0, 0, 0);
}

/**
S
Swen Schillig 已提交
597
 * zfcp_dbf_rec_port - trace event for port state change
598 599 600 601
 * @id: identifier for trigger of state change
 * @ref: additional reference (e.g. request)
 * @port: port
 */
S
Swen Schillig 已提交
602
void zfcp_dbf_rec_port(char *id, void *ref, struct zfcp_port *port)
603
{
S
Swen Schillig 已提交
604
	struct zfcp_dbf *dbf = port->adapter->dbf;
605

S
Swen Schillig 已提交
606
	zfcp_dbf_rec_target(id, ref, dbf, &port->status,
607 608 609 610 611
				  &port->erp_counter, port->wwpn, port->d_id,
				  0);
}

/**
S
Swen Schillig 已提交
612
 * zfcp_dbf_rec_unit - trace event for unit state change
613 614 615 616
 * @id: identifier for trigger of state change
 * @ref: additional reference (e.g. request)
 * @unit: unit
 */
S
Swen Schillig 已提交
617
void zfcp_dbf_rec_unit(char *id, void *ref, struct zfcp_unit *unit)
618 619
{
	struct zfcp_port *port = unit->port;
S
Swen Schillig 已提交
620
	struct zfcp_dbf *dbf = port->adapter->dbf;
621

S
Swen Schillig 已提交
622
	zfcp_dbf_rec_target(id, ref, dbf, &unit->status,
623 624 625 626
				  &unit->erp_counter, port->wwpn, port->d_id,
				  unit->fcp_lun);
}

627
/**
S
Swen Schillig 已提交
628
 * zfcp_dbf_rec_trigger - trace event for triggered error recovery
629 630 631 632 633 634 635 636 637
 * @id2: identifier for error recovery trigger
 * @ref: additional reference (e.g. request)
 * @want: originally requested error recovery action
 * @need: error recovery action actually initiated
 * @action: address of error recovery action struct
 * @adapter: adapter
 * @port: port
 * @unit: unit
 */
S
Swen Schillig 已提交
638 639 640
void zfcp_dbf_rec_trigger(char *id2, void *ref, u8 want, u8 need, void *action,
			  struct zfcp_adapter *adapter, struct zfcp_port *port,
			  struct zfcp_unit *unit)
641
{
642
	struct zfcp_dbf *dbf = adapter->dbf;
S
Swen Schillig 已提交
643
	struct zfcp_dbf_rec_record *r = &dbf->rec_buf;
644 645
	unsigned long flags;

S
Swen Schillig 已提交
646
	spin_lock_irqsave(&dbf->rec_lock, flags);
647 648
	memset(r, 0, sizeof(*r));
	r->id = ZFCP_REC_DBF_ID_TRIGGER;
649
	memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
650
	r->u.trigger.ref = (unsigned long)ref;
651 652
	r->u.trigger.want = want;
	r->u.trigger.need = need;
653
	r->u.trigger.action = (unsigned long)action;
654 655 656 657 658 659 660 661 662
	r->u.trigger.as = atomic_read(&adapter->status);
	if (port) {
		r->u.trigger.ps = atomic_read(&port->status);
		r->u.trigger.wwpn = port->wwpn;
	}
	if (unit) {
		r->u.trigger.us = atomic_read(&unit->status);
		r->u.trigger.fcp_lun = unit->fcp_lun;
	}
S
Swen Schillig 已提交
663 664
	debug_event(dbf->rec, action ? 1 : 4, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->rec_lock, flags);
665 666
}

667
/**
S
Swen Schillig 已提交
668
 * zfcp_dbf_rec_action - trace event showing progress of recovery action
669 670 671
 * @id2: identifier
 * @erp_action: error recovery action struct pointer
 */
S
Swen Schillig 已提交
672
void zfcp_dbf_rec_action(char *id2, struct zfcp_erp_action *erp_action)
673
{
S
Swen Schillig 已提交
674 675
	struct zfcp_dbf *dbf = erp_action->adapter->dbf;
	struct zfcp_dbf_rec_record *r = &dbf->rec_buf;
676 677
	unsigned long flags;

S
Swen Schillig 已提交
678
	spin_lock_irqsave(&dbf->rec_lock, flags);
679 680
	memset(r, 0, sizeof(*r));
	r->id = ZFCP_REC_DBF_ID_ACTION;
681
	memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
682
	r->u.action.action = (unsigned long)erp_action;
683 684
	r->u.action.status = erp_action->status;
	r->u.action.step = erp_action->step;
685
	r->u.action.fsf_req = (unsigned long)erp_action->fsf_req;
S
Swen Schillig 已提交
686 687
	debug_event(dbf->rec, 5, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->rec_lock, flags);
688 689
}

690
/**
S
Swen Schillig 已提交
691
 * zfcp_dbf_san_ct_request - trace event for issued CT request
692 693
 * @fsf_req: request containing issued CT data
 */
S
Swen Schillig 已提交
694
void zfcp_dbf_san_ct_request(struct zfcp_fsf_req *fsf_req)
695 696
{
	struct zfcp_send_ct *ct = (struct zfcp_send_ct *)fsf_req->data;
697 698
	struct zfcp_wka_port *wka_port = ct->wka_port;
	struct zfcp_adapter *adapter = wka_port->adapter;
699
	struct zfcp_dbf *dbf = adapter->dbf;
700
	struct ct_hdr *hdr = sg_virt(ct->req);
S
Swen Schillig 已提交
701 702
	struct zfcp_dbf_san_record *r = &dbf->san_buf;
	struct zfcp_dbf_san_record_ct_request *oct = &r->u.ct_req;
703
	int level = 3;
704
	unsigned long flags;
705

S
Swen Schillig 已提交
706
	spin_lock_irqsave(&dbf->san_lock, flags);
707 708
	memset(r, 0, sizeof(*r));
	strncpy(r->tag, "octc", ZFCP_DBF_TAG_SIZE);
709
	r->fsf_reqid = fsf_req->req_id;
710 711
	r->fsf_seqno = fsf_req->seq_no;
	r->s_id = fc_host_port_id(adapter->scsi_host);
712
	r->d_id = wka_port->d_id;
713 714 715 716 717 718 719
	oct->cmd_req_code = hdr->cmd_rsp_code;
	oct->revision = hdr->revision;
	oct->gs_type = hdr->gs_type;
	oct->gs_subtype = hdr->gs_subtype;
	oct->options = hdr->options;
	oct->max_res_size = hdr->max_res_size;
	oct->len = min((int)ct->req->length - (int)sizeof(struct ct_hdr),
720
		       ZFCP_DBF_SAN_MAX_PAYLOAD);
S
Swen Schillig 已提交
721 722
	debug_event(dbf->san, level, r, sizeof(*r));
	zfcp_dbf_hexdump(dbf->san, r, sizeof(*r), level,
723
			 (void *)hdr + sizeof(struct ct_hdr), oct->len);
S
Swen Schillig 已提交
724
	spin_unlock_irqrestore(&dbf->san_lock, flags);
725 726
}

727
/**
S
Swen Schillig 已提交
728
 * zfcp_dbf_san_ct_response - trace event for completion of CT request
729 730
 * @fsf_req: request containing CT response
 */
S
Swen Schillig 已提交
731
void zfcp_dbf_san_ct_response(struct zfcp_fsf_req *fsf_req)
732 733
{
	struct zfcp_send_ct *ct = (struct zfcp_send_ct *)fsf_req->data;
734 735
	struct zfcp_wka_port *wka_port = ct->wka_port;
	struct zfcp_adapter *adapter = wka_port->adapter;
736
	struct ct_hdr *hdr = sg_virt(ct->resp);
737
	struct zfcp_dbf *dbf = adapter->dbf;
S
Swen Schillig 已提交
738 739
	struct zfcp_dbf_san_record *r = &dbf->san_buf;
	struct zfcp_dbf_san_record_ct_response *rct = &r->u.ct_resp;
740
	int level = 3;
741
	unsigned long flags;
742

S
Swen Schillig 已提交
743
	spin_lock_irqsave(&dbf->san_lock, flags);
744 745
	memset(r, 0, sizeof(*r));
	strncpy(r->tag, "rctc", ZFCP_DBF_TAG_SIZE);
746
	r->fsf_reqid = fsf_req->req_id;
747
	r->fsf_seqno = fsf_req->seq_no;
748
	r->s_id = wka_port->d_id;
749 750 751 752 753 754
	r->d_id = fc_host_port_id(adapter->scsi_host);
	rct->cmd_rsp_code = hdr->cmd_rsp_code;
	rct->revision = hdr->revision;
	rct->reason_code = hdr->reason_code;
	rct->expl = hdr->reason_code_expl;
	rct->vendor_unique = hdr->vendor_unique;
755
	rct->max_res_size = hdr->max_res_size;
756
	rct->len = min((int)ct->resp->length - (int)sizeof(struct ct_hdr),
757
		       ZFCP_DBF_SAN_MAX_PAYLOAD);
S
Swen Schillig 已提交
758 759
	debug_event(dbf->san, level, r, sizeof(*r));
	zfcp_dbf_hexdump(dbf->san, r, sizeof(*r), level,
760
			 (void *)hdr + sizeof(struct ct_hdr), rct->len);
S
Swen Schillig 已提交
761
	spin_unlock_irqrestore(&dbf->san_lock, flags);
762 763
}

S
Swen Schillig 已提交
764 765 766
static void zfcp_dbf_san_els(const char *tag, int level,
			     struct zfcp_fsf_req *fsf_req, u32 s_id, u32 d_id,
			     u8 ls_code, void *buffer, int buflen)
767 768
{
	struct zfcp_adapter *adapter = fsf_req->adapter;
769
	struct zfcp_dbf *dbf = adapter->dbf;
S
Swen Schillig 已提交
770
	struct zfcp_dbf_san_record *rec = &dbf->san_buf;
771 772
	unsigned long flags;

S
Swen Schillig 已提交
773
	spin_lock_irqsave(&dbf->san_lock, flags);
774
	memset(rec, 0, sizeof(*rec));
775
	strncpy(rec->tag, tag, ZFCP_DBF_TAG_SIZE);
776
	rec->fsf_reqid = fsf_req->req_id;
777 778 779
	rec->fsf_seqno = fsf_req->seq_no;
	rec->s_id = s_id;
	rec->d_id = d_id;
780
	rec->u.els.ls_code = ls_code;
S
Swen Schillig 已提交
781 782
	debug_event(dbf->san, level, rec, sizeof(*rec));
	zfcp_dbf_hexdump(dbf->san, rec, sizeof(*rec), level,
783
			 buffer, min(buflen, ZFCP_DBF_SAN_MAX_PAYLOAD));
S
Swen Schillig 已提交
784
	spin_unlock_irqrestore(&dbf->san_lock, flags);
785 786
}

787
/**
S
Swen Schillig 已提交
788
 * zfcp_dbf_san_els_request - trace event for issued ELS
789 790
 * @fsf_req: request containing issued ELS
 */
S
Swen Schillig 已提交
791
void zfcp_dbf_san_els_request(struct zfcp_fsf_req *fsf_req)
792 793 794
{
	struct zfcp_send_els *els = (struct zfcp_send_els *)fsf_req->data;

S
Swen Schillig 已提交
795
	zfcp_dbf_san_els("oels", 2, fsf_req,
796
			       fc_host_port_id(els->adapter->scsi_host),
797 798
			       els->d_id, *(u8 *) sg_virt(els->req),
			       sg_virt(els->req), els->req->length);
799 800
}

801
/**
S
Swen Schillig 已提交
802
 * zfcp_dbf_san_els_response - trace event for completed ELS
803 804
 * @fsf_req: request containing ELS response
 */
S
Swen Schillig 已提交
805
void zfcp_dbf_san_els_response(struct zfcp_fsf_req *fsf_req)
806 807 808
{
	struct zfcp_send_els *els = (struct zfcp_send_els *)fsf_req->data;

S
Swen Schillig 已提交
809
	zfcp_dbf_san_els("rels", 2, fsf_req, els->d_id,
810
			       fc_host_port_id(els->adapter->scsi_host),
811
			       *(u8 *)sg_virt(els->req), sg_virt(els->resp),
812
			       els->resp->length);
813 814
}

815
/**
S
Swen Schillig 已提交
816
 * zfcp_dbf_san_incoming_els - trace event for incomig ELS
817 818
 * @fsf_req: request containing unsolicited status buffer with incoming ELS
 */
S
Swen Schillig 已提交
819
void zfcp_dbf_san_incoming_els(struct zfcp_fsf_req *fsf_req)
820 821
{
	struct zfcp_adapter *adapter = fsf_req->adapter;
822 823 824 825 826
	struct fsf_status_read_buffer *buf =
			(struct fsf_status_read_buffer *)fsf_req->data;
	int length = (int)buf->length -
		     (int)((void *)&buf->payload - (void *)buf);

S
Swen Schillig 已提交
827
	zfcp_dbf_san_els("iels", 1, fsf_req, buf->d_id,
828
			       fc_host_port_id(adapter->scsi_host),
S
Swen Schillig 已提交
829
			       buf->payload.data[0], (void *)buf->payload.data,
830
			       length);
831 832
}

S
Swen Schillig 已提交
833
static int zfcp_dbf_san_view_format(debug_info_t *id, struct debug_view *view,
834
				    char *out_buf, const char *in_buf)
835
{
S
Swen Schillig 已提交
836
	struct zfcp_dbf_san_record *r = (struct zfcp_dbf_san_record *)in_buf;
837
	char *p = out_buf;
838

839
	if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0)
840 841
		return 0;

842
	zfcp_dbf_tag(&p, "tag", r->tag);
843 844 845 846 847 848
	zfcp_dbf_out(&p, "fsf_reqid", "0x%0Lx", r->fsf_reqid);
	zfcp_dbf_out(&p, "fsf_seqno", "0x%08x", r->fsf_seqno);
	zfcp_dbf_out(&p, "s_id", "0x%06x", r->s_id);
	zfcp_dbf_out(&p, "d_id", "0x%06x", r->d_id);

	if (strncmp(r->tag, "octc", ZFCP_DBF_TAG_SIZE) == 0) {
S
Swen Schillig 已提交
849
		struct zfcp_dbf_san_record_ct_request *ct = &r->u.ct_req;
850 851 852 853 854 855
		zfcp_dbf_out(&p, "cmd_req_code", "0x%04x", ct->cmd_req_code);
		zfcp_dbf_out(&p, "revision", "0x%02x", ct->revision);
		zfcp_dbf_out(&p, "gs_type", "0x%02x", ct->gs_type);
		zfcp_dbf_out(&p, "gs_subtype", "0x%02x", ct->gs_subtype);
		zfcp_dbf_out(&p, "options", "0x%02x", ct->options);
		zfcp_dbf_out(&p, "max_res_size", "0x%04x", ct->max_res_size);
856
	} else if (strncmp(r->tag, "rctc", ZFCP_DBF_TAG_SIZE) == 0) {
S
Swen Schillig 已提交
857
		struct zfcp_dbf_san_record_ct_response *ct = &r->u.ct_resp;
858 859 860 861 862
		zfcp_dbf_out(&p, "cmd_rsp_code", "0x%04x", ct->cmd_rsp_code);
		zfcp_dbf_out(&p, "revision", "0x%02x", ct->revision);
		zfcp_dbf_out(&p, "reason_code", "0x%02x", ct->reason_code);
		zfcp_dbf_out(&p, "reason_code_expl", "0x%02x", ct->expl);
		zfcp_dbf_out(&p, "vendor_unique", "0x%02x", ct->vendor_unique);
863
		zfcp_dbf_out(&p, "max_res_size", "0x%04x", ct->max_res_size);
864 865 866
	} else if (strncmp(r->tag, "oels", ZFCP_DBF_TAG_SIZE) == 0 ||
		   strncmp(r->tag, "rels", ZFCP_DBF_TAG_SIZE) == 0 ||
		   strncmp(r->tag, "iels", ZFCP_DBF_TAG_SIZE) == 0) {
S
Swen Schillig 已提交
867
		struct zfcp_dbf_san_record_els *els = &r->u.els;
868
		zfcp_dbf_out(&p, "ls_code", "0x%02x", els->ls_code);
869
	}
870
	return p - out_buf;
871 872
}

S
Swen Schillig 已提交
873 874 875 876
static struct debug_view zfcp_dbf_san_view = {
	.name = "structured",
	.header_proc = zfcp_dbf_view_header,
	.format_proc = zfcp_dbf_san_view_format,
877 878
};

S
Swen Schillig 已提交
879 880 881
void _zfcp_dbf_scsi(const char *tag, const char *tag2, int level,
		    struct zfcp_dbf *dbf, struct scsi_cmnd *scsi_cmnd,
		    struct zfcp_fsf_req *fsf_req, unsigned long old_req_id)
882
{
S
Swen Schillig 已提交
883
	struct zfcp_dbf_scsi_record *rec = &dbf->scsi_buf;
884 885 886 887 888 889
	struct zfcp_dbf_dump *dump = (struct zfcp_dbf_dump *)rec;
	unsigned long flags;
	struct fcp_rsp_iu *fcp_rsp;
	char *fcp_rsp_info = NULL, *fcp_sns_info = NULL;
	int offset = 0, buflen = 0;

S
Swen Schillig 已提交
890
	spin_lock_irqsave(&dbf->scsi_lock, flags);
891
	do {
892
		memset(rec, 0, sizeof(*rec));
893 894 895
		if (offset == 0) {
			strncpy(rec->tag, tag, ZFCP_DBF_TAG_SIZE);
			strncpy(rec->tag2, tag2, ZFCP_DBF_TAG_SIZE);
896 897 898 899 900 901 902 903
			if (scsi_cmnd != NULL) {
				if (scsi_cmnd->device) {
					rec->scsi_id = scsi_cmnd->device->id;
					rec->scsi_lun = scsi_cmnd->device->lun;
				}
				rec->scsi_result = scsi_cmnd->result;
				rec->scsi_cmnd = (unsigned long)scsi_cmnd;
				rec->scsi_serial = scsi_cmnd->serial_number;
904
				memcpy(rec->scsi_opcode, scsi_cmnd->cmnd,
905 906 907 908
					min((int)scsi_cmnd->cmd_len,
						ZFCP_DBF_SCSI_OPCODE));
				rec->scsi_retries = scsi_cmnd->retries;
				rec->scsi_allowed = scsi_cmnd->allowed;
909 910 911 912
			}
			if (fsf_req != NULL) {
				fcp_rsp = (struct fcp_rsp_iu *)
				    &(fsf_req->qtcb->bottom.io.fcp_rsp);
913
				fcp_rsp_info = (unsigned char *) &fcp_rsp[1];
914 915 916
				fcp_sns_info =
				    zfcp_get_fcp_sns_info_ptr(fcp_rsp);

917 918 919
				rec->rsp_validity = fcp_rsp->validity.value;
				rec->rsp_scsi_status = fcp_rsp->scsi_status;
				rec->rsp_resid = fcp_rsp->fcp_resid;
920
				if (fcp_rsp->validity.bits.fcp_rsp_len_valid)
921
					rec->rsp_code = *(fcp_rsp_info + 3);
922 923 924
				if (fcp_rsp->validity.bits.fcp_sns_len_valid) {
					buflen = min((int)fcp_rsp->fcp_sns_len,
						     ZFCP_DBF_SCSI_MAX_FCP_SNS_INFO);
925 926
					rec->sns_info_len = buflen;
					memcpy(rec->sns_info, fcp_sns_info,
927 928 929 930 931 932
					       min(buflen,
						   ZFCP_DBF_SCSI_FCP_SNS_INFO));
					offset += min(buflen,
						      ZFCP_DBF_SCSI_FCP_SNS_INFO);
				}

933
				rec->fsf_reqid = fsf_req->req_id;
934 935 936
				rec->fsf_seqno = fsf_req->seq_no;
				rec->fsf_issued = fsf_req->issued;
			}
937
			rec->old_fsf_reqid = old_req_id;
938 939 940 941 942 943
		} else {
			strncpy(dump->tag, "dump", ZFCP_DBF_TAG_SIZE);
			dump->total_size = buflen;
			dump->offset = offset;
			dump->size = min(buflen - offset,
					 (int)sizeof(struct
S
Swen Schillig 已提交
944
						     zfcp_dbf_scsi_record) -
945 946 947 948
					 (int)sizeof(struct zfcp_dbf_dump));
			memcpy(dump->data, fcp_sns_info + offset, dump->size);
			offset += dump->size;
		}
S
Swen Schillig 已提交
949
		debug_event(dbf->scsi, level, rec, sizeof(*rec));
950
	} while (offset < buflen);
S
Swen Schillig 已提交
951
	spin_unlock_irqrestore(&dbf->scsi_lock, flags);
952 953
}

S
Swen Schillig 已提交
954
static int zfcp_dbf_scsi_view_format(debug_info_t *id, struct debug_view *view,
955
				     char *out_buf, const char *in_buf)
956
{
S
Swen Schillig 已提交
957
	struct zfcp_dbf_scsi_record *r = (struct zfcp_dbf_scsi_record *)in_buf;
958
	struct timespec t;
959
	char *p = out_buf;
960

961
	if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0)
962 963
		return 0;

964 965
	zfcp_dbf_tag(&p, "tag", r->tag);
	zfcp_dbf_tag(&p, "tag2", r->tag2);
966 967 968 969 970
	zfcp_dbf_out(&p, "scsi_id", "0x%08x", r->scsi_id);
	zfcp_dbf_out(&p, "scsi_lun", "0x%08x", r->scsi_lun);
	zfcp_dbf_out(&p, "scsi_result", "0x%08x", r->scsi_result);
	zfcp_dbf_out(&p, "scsi_cmnd", "0x%0Lx", r->scsi_cmnd);
	zfcp_dbf_out(&p, "scsi_serial", "0x%016Lx", r->scsi_serial);
971 972
	zfcp_dbf_outd(&p, "scsi_opcode", r->scsi_opcode, ZFCP_DBF_SCSI_OPCODE,
		      0, ZFCP_DBF_SCSI_OPCODE);
973 974 975
	zfcp_dbf_out(&p, "scsi_retries", "0x%02x", r->scsi_retries);
	zfcp_dbf_out(&p, "scsi_allowed", "0x%02x", r->scsi_allowed);
	if (strncmp(r->tag, "abrt", ZFCP_DBF_TAG_SIZE) == 0)
976
		zfcp_dbf_out(&p, "old_fsf_reqid", "0x%0Lx", r->old_fsf_reqid);
977 978 979 980 981 982
	zfcp_dbf_out(&p, "fsf_reqid", "0x%0Lx", r->fsf_reqid);
	zfcp_dbf_out(&p, "fsf_seqno", "0x%08x", r->fsf_seqno);
	zfcp_dbf_timestamp(r->fsf_issued, &t);
	zfcp_dbf_out(&p, "fsf_issued", "%011lu:%06lu", t.tv_sec, t.tv_nsec);

	if (strncmp(r->tag, "rslt", ZFCP_DBF_TAG_SIZE) == 0) {
983 984 985 986 987 988 989 990
		zfcp_dbf_out(&p, "fcp_rsp_validity", "0x%02x", r->rsp_validity);
		zfcp_dbf_out(&p, "fcp_rsp_scsi_status", "0x%02x",
			     r->rsp_scsi_status);
		zfcp_dbf_out(&p, "fcp_rsp_resid", "0x%08x", r->rsp_resid);
		zfcp_dbf_out(&p, "fcp_rsp_code", "0x%08x", r->rsp_code);
		zfcp_dbf_out(&p, "fcp_sns_info_len", "0x%08x", r->sns_info_len);
		zfcp_dbf_outd(&p, "fcp_sns_info", r->sns_info,
			      min((int)r->sns_info_len,
991
			      ZFCP_DBF_SCSI_FCP_SNS_INFO), 0,
992
			      r->sns_info_len);
993
	}
994 995
	p += sprintf(p, "\n");
	return p - out_buf;
996 997
}

S
Swen Schillig 已提交
998 999 1000 1001
static struct debug_view zfcp_dbf_scsi_view = {
	.name = "structured",
	.header_proc = zfcp_dbf_view_header,
	.format_proc = zfcp_dbf_scsi_view_format,
1002 1003
};

1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
static debug_info_t *zfcp_dbf_reg(const char *name, int level,
				  struct debug_view *view, int size)
{
	struct debug_info *d;

	d = debug_register(name, dbfsize, level, size);
	if (!d)
		return NULL;

	debug_register_view(d, &debug_hex_ascii_view);
	debug_register_view(d, view);
	debug_set_level(d, level);

	return d;
}

1020 1021 1022 1023 1024
/**
 * zfcp_adapter_debug_register - registers debug feature for an adapter
 * @adapter: pointer to adapter for which debug features should be registered
 * return: -ENOMEM on error, 0 otherwise
 */
S
Swen Schillig 已提交
1025
int zfcp_dbf_adapter_register(struct zfcp_adapter *adapter)
1026 1027
{
	char dbf_name[DEBUG_MAX_NAME_LEN];
1028 1029 1030 1031 1032 1033
	struct zfcp_dbf *dbf;

	dbf = kmalloc(sizeof(struct zfcp_dbf), GFP_KERNEL);
	if (!dbf)
		return -ENOMEM;

S
Swen Schillig 已提交
1034 1035 1036 1037 1038 1039
	dbf->adapter = adapter;

	spin_lock_init(&dbf->hba_lock);
	spin_lock_init(&dbf->san_lock);
	spin_lock_init(&dbf->scsi_lock);
	spin_lock_init(&dbf->rec_lock);
1040

1041
	/* debug feature area which records recovery activity */
C
Christof Schmitt 已提交
1042
	sprintf(dbf_name, "zfcp_%s_rec", dev_name(&adapter->ccw_device->dev));
S
Swen Schillig 已提交
1043 1044 1045 1046
	dbf->rec = zfcp_dbf_reg(dbf_name, 3, &zfcp_dbf_rec_view,
				sizeof(struct zfcp_dbf_rec_record));
	if (!dbf->rec)
		goto err_out;
1047

1048
	/* debug feature area which records HBA (FSF and QDIO) conditions */
C
Christof Schmitt 已提交
1049
	sprintf(dbf_name, "zfcp_%s_hba", dev_name(&adapter->ccw_device->dev));
S
Swen Schillig 已提交
1050 1051 1052 1053
	dbf->hba = zfcp_dbf_reg(dbf_name, 3, &zfcp_dbf_hba_view,
				sizeof(struct zfcp_dbf_hba_record));
	if (!dbf->hba)
		goto err_out;
1054 1055

	/* debug feature area which records SAN command failures and recovery */
C
Christof Schmitt 已提交
1056
	sprintf(dbf_name, "zfcp_%s_san", dev_name(&adapter->ccw_device->dev));
S
Swen Schillig 已提交
1057 1058 1059 1060
	dbf->san = zfcp_dbf_reg(dbf_name, 6, &zfcp_dbf_san_view,
				sizeof(struct zfcp_dbf_san_record));
	if (!dbf->san)
		goto err_out;
1061 1062

	/* debug feature area which records SCSI command failures and recovery */
C
Christof Schmitt 已提交
1063
	sprintf(dbf_name, "zfcp_%s_scsi", dev_name(&adapter->ccw_device->dev));
S
Swen Schillig 已提交
1064 1065 1066 1067
	dbf->scsi = zfcp_dbf_reg(dbf_name, 3, &zfcp_dbf_scsi_view,
				 sizeof(struct zfcp_dbf_scsi_record));
	if (!dbf->scsi)
		goto err_out;
1068

1069
	adapter->dbf = dbf;
1070 1071
	return 0;

S
Swen Schillig 已提交
1072 1073
err_out:
	zfcp_dbf_adapter_unregister(dbf);
1074 1075 1076 1077 1078
	return -ENOMEM;
}

/**
 * zfcp_adapter_debug_unregister - unregisters debug feature for an adapter
S
Swen Schillig 已提交
1079
 * @dbf: pointer to dbf for which debug features should be unregistered
1080
 */
S
Swen Schillig 已提交
1081
void zfcp_dbf_adapter_unregister(struct zfcp_dbf *dbf)
1082
{
S
Swen Schillig 已提交
1083 1084 1085 1086 1087 1088
	debug_unregister(dbf->scsi);
	debug_unregister(dbf->san);
	debug_unregister(dbf->hba);
	debug_unregister(dbf->rec);
	dbf->adapter->dbf = NULL;
	kfree(dbf);
1089
}
S
Swen Schillig 已提交
1090