zfcp_dbf.c 37.3 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
}

123 124 125 126
/**
 * zfcp_hba_dbf_event_fsf_response - trace event for request completion
 * @fsf_req: request that has been completed
 */
127
void zfcp_hba_dbf_event_fsf_response(struct zfcp_fsf_req *fsf_req)
128 129
{
	struct zfcp_adapter *adapter = fsf_req->adapter;
130
	struct zfcp_dbf *dbf = adapter->dbf;
131 132
	struct fsf_qtcb *qtcb = fsf_req->qtcb;
	union fsf_prot_status_qual *prot_status_qual =
133
					&qtcb->prefix.prot_status_qual;
134 135 136 137 138
	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;
139
	struct zfcp_hba_dbf_record *rec = &dbf->hba_dbf_buf;
140
	struct zfcp_hba_dbf_record_response *response = &rec->u.response;
141 142 143
	int level;
	unsigned long flags;

144
	spin_lock_irqsave(&dbf->hba_dbf_lock, flags);
145
	memset(rec, 0, sizeof(*rec));
146 147 148 149 150 151 152 153 154 155 156 157 158
	strncpy(rec->tag, "resp", ZFCP_DBF_TAG_SIZE);

	if ((qtcb->prefix.prot_status != FSF_PROT_GOOD) &&
	    (qtcb->prefix.prot_status != FSF_PROT_FSF_STATUS_PRESENTED)) {
		strncpy(rec->tag2, "perr", ZFCP_DBF_TAG_SIZE);
		level = 1;
	} else if (qtcb->header.fsf_status != FSF_GOOD) {
		strncpy(rec->tag2, "ferr", ZFCP_DBF_TAG_SIZE);
		level = 1;
	} else if ((fsf_req->fsf_command == FSF_QTCB_OPEN_PORT_WITH_DID) ||
		   (fsf_req->fsf_command == FSF_QTCB_OPEN_LUN)) {
		strncpy(rec->tag2, "open", ZFCP_DBF_TAG_SIZE);
		level = 4;
159 160 161
	} else if (qtcb->header.log_length) {
		strncpy(rec->tag2, "qtcb", ZFCP_DBF_TAG_SIZE);
		level = 5;
162 163 164 165 166 167
	} else {
		strncpy(rec->tag2, "norm", ZFCP_DBF_TAG_SIZE);
		level = 6;
	}

	response->fsf_command = fsf_req->fsf_command;
168
	response->fsf_reqid = fsf_req->req_id;
169 170 171 172 173 174 175 176 177 178
	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;
	response->sbal_first = fsf_req->sbal_first;
179
	response->sbal_last = fsf_req->sbal_last;
180
	response->sbal_response = fsf_req->sbal_response;
181 182 183 184 185 186 187 188
	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;
189 190 191
		if (scsi_cmnd) {
			response->u.fcp.cmnd = (unsigned long)scsi_cmnd;
			response->u.fcp.serial = scsi_cmnd->serial_number;
192 193 194 195 196 197 198
		}
		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;
199 200 201
		response->u.port.wwpn = port->wwpn;
		response->u.port.d_id = port->d_id;
		response->u.port.port_handle = qtcb->header.port_handle;
202 203 204 205 206 207
		break;

	case FSF_QTCB_OPEN_LUN:
	case FSF_QTCB_CLOSE_LUN:
		unit = (struct zfcp_unit *)fsf_req->data;
		port = unit->port;
208 209 210 211
		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;
212 213 214 215
		break;

	case FSF_QTCB_SEND_ELS:
		send_els = (struct zfcp_send_els *)fsf_req->data;
216 217
		response->u.els.d_id = qtcb->bottom.support.d_id;
		response->u.els.ls_code = send_els->ls_code >> 24;
218 219 220 221 222 223 224 225 226 227 228
		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;
	}

229
	debug_event(dbf->hba_dbf, level, rec, sizeof(*rec));
230 231 232 233 234 235 236

	/* 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--);
237 238
		zfcp_dbf_hexdump(dbf->hba_dbf, rec, sizeof(*rec), level, buf,
				 len);
239 240
	}

241
	spin_unlock_irqrestore(&dbf->hba_dbf_lock, flags);
242 243
}

244 245 246 247 248 249
/**
 * zfcp_hba_dbf_event_fsf_unsol - trace event for an unsolicited status buffer
 * @tag: tag indicating which kind of unsolicited status has been received
 * @adapter: adapter that has issued the unsolicited status buffer
 * @status_buffer: buffer containing payload of unsolicited status
 */
250 251
void zfcp_hba_dbf_event_fsf_unsol(const char *tag, struct zfcp_adapter *adapter,
				  struct fsf_status_read_buffer *status_buffer)
252
{
253 254
	struct zfcp_dbf *dbf = adapter->dbf;
	struct zfcp_hba_dbf_record *rec = &dbf->hba_dbf_buf;
255 256
	unsigned long flags;

257
	spin_lock_irqsave(&dbf->hba_dbf_lock, flags);
258
	memset(rec, 0, sizeof(*rec));
259 260 261
	strncpy(rec->tag, "stat", ZFCP_DBF_TAG_SIZE);
	strncpy(rec->tag2, tag, ZFCP_DBF_TAG_SIZE);

262
	rec->u.status.failed = atomic_read(&adapter->stat_miss);
263
	if (status_buffer != NULL) {
264 265 266
		rec->u.status.status_type = status_buffer->status_type;
		rec->u.status.status_subtype = status_buffer->status_subtype;
		memcpy(&rec->u.status.queue_designator,
267 268 269 270 271
		       &status_buffer->queue_designator,
		       sizeof(struct fsf_queue_designator));

		switch (status_buffer->status_type) {
		case FSF_STATUS_READ_SENSE_DATA_AVAIL:
272
			rec->u.status.payload_size =
273 274 275 276
			    ZFCP_DBF_UNSOL_PAYLOAD_SENSE_DATA_AVAIL;
			break;

		case FSF_STATUS_READ_BIT_ERROR_THRESHOLD:
277
			rec->u.status.payload_size =
278 279 280 281
			    ZFCP_DBF_UNSOL_PAYLOAD_BIT_ERROR_THRESHOLD;
			break;

		case FSF_STATUS_READ_LINK_DOWN:
282 283 284
			switch (status_buffer->status_subtype) {
			case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK:
			case FSF_STATUS_READ_SUB_FDISC_FAILED:
285
				rec->u.status.payload_size =
286 287
					sizeof(struct fsf_link_down_info);
			}
288 289
			break;

290
		case FSF_STATUS_READ_FEATURE_UPDATE_ALERT:
291
			rec->u.status.payload_size =
292 293
			    ZFCP_DBF_UNSOL_PAYLOAD_FEATURE_UPDATE_ALERT;
			break;
294
		}
295 296
		memcpy(&rec->u.status.payload,
		       &status_buffer->payload, rec->u.status.payload_size);
297 298
	}

299 300
	debug_event(dbf->hba_dbf, 2, rec, sizeof(*rec));
	spin_unlock_irqrestore(&dbf->hba_dbf_lock, flags);
301 302
}

303 304 305 306 307 308 309
/**
 * zfcp_hba_dbf_event_qdio - trace event for QDIO related failure
 * @adapter: adapter affected by this QDIO related event
 * @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
 */
J
Jan Glauber 已提交
310 311 312
void zfcp_hba_dbf_event_qdio(struct zfcp_adapter *adapter,
			     unsigned int qdio_error, int sbal_index,
			     int sbal_count)
313
{
314 315
	struct zfcp_dbf *dbf = adapter->dbf;
	struct zfcp_hba_dbf_record *r = &dbf->hba_dbf_buf;
316 317
	unsigned long flags;

318
	spin_lock_irqsave(&dbf->hba_dbf_lock, flags);
319 320 321 322 323
	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;
324 325
	debug_event(dbf->hba_dbf, 0, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->hba_dbf_lock, flags);
326 327
}

328 329 330 331 332 333 334 335
/**
 * zfcp_hba_dbf_event_berr - trace event for bit error threshold
 * @adapter: adapter affected by this QDIO related event
 * @req: fsf request
 */
void zfcp_hba_dbf_event_berr(struct zfcp_adapter *adapter,
			     struct zfcp_fsf_req *req)
{
336 337
	struct zfcp_dbf *dbf = adapter->dbf;
	struct zfcp_hba_dbf_record *r = &dbf->hba_dbf_buf;
338 339 340 341
	struct fsf_status_read_buffer *sr_buf = req->data;
	struct fsf_bit_error_payload *err = &sr_buf->payload.bit_error;
	unsigned long flags;

342
	spin_lock_irqsave(&dbf->hba_dbf_lock, flags);
343 344 345
	memset(r, 0, sizeof(*r));
	strncpy(r->tag, "berr", ZFCP_DBF_TAG_SIZE);
	memcpy(&r->u.berr, err, sizeof(struct fsf_bit_error_payload));
346 347
	debug_event(dbf->hba_dbf, 0, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->hba_dbf_lock, flags);
348
}
349 350
static void zfcp_hba_dbf_view_response(char **p,
				       struct zfcp_hba_dbf_record_response *r)
351
{
352
	struct timespec t;
353

354 355 356
	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);
357
	zfcp_dbf_timestamp(r->fsf_issued, &t);
358 359 360 361
	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,
362
		      FSF_PROT_STATUS_QUAL_SIZE, 0, FSF_PROT_STATUS_QUAL_SIZE);
363
	zfcp_dbf_outd(p, "fsf_status_qual", r->fsf_status_qual,
364
		      FSF_STATUS_QUALIFIER_SIZE, 0, FSF_STATUS_QUALIFIER_SIZE);
365 366
	zfcp_dbf_out(p, "fsf_req_status", "0x%08x", r->fsf_req_status);
	zfcp_dbf_out(p, "sbal_first", "0x%02x", r->sbal_first);
367
	zfcp_dbf_out(p, "sbal_last", "0x%02x", r->sbal_last);
368
	zfcp_dbf_out(p, "sbal_response", "0x%02x", r->sbal_response);
369
	zfcp_dbf_out(p, "pool", "0x%02x", r->pool);
370 371

	switch (r->fsf_command) {
372
	case FSF_QTCB_FCP_CMND:
373
		if (r->fsf_req_status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT)
374
			break;
375 376
		zfcp_dbf_out(p, "scsi_cmnd", "0x%0Lx", r->u.fcp.cmnd);
		zfcp_dbf_out(p, "scsi_serial", "0x%016Lx", r->u.fcp.serial);
377
		p += sprintf(*p, "\n");
378 379 380 381 382
		break;

	case FSF_QTCB_OPEN_PORT_WITH_DID:
	case FSF_QTCB_CLOSE_PORT:
	case FSF_QTCB_CLOSE_PHYSICAL_PORT:
383 384 385
		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);
386 387 388 389
		break;

	case FSF_QTCB_OPEN_LUN:
	case FSF_QTCB_CLOSE_LUN:
390 391 392 393
		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);
394 395 396
		break;

	case FSF_QTCB_SEND_ELS:
397 398
		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);
399 400 401 402 403 404 405 406 407 408 409 410
		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;
	}
}

411 412
static void zfcp_hba_dbf_view_status(char **p,
				     struct zfcp_hba_dbf_record_status *r)
413
{
414 415 416 417
	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,
418 419
		      sizeof(struct fsf_queue_designator), 0,
		      sizeof(struct fsf_queue_designator));
420
	zfcp_dbf_outd(p, "payload", (char *)&r->payload, r->payload_size, 0,
421
		      r->payload_size);
422 423
}

424
static void zfcp_hba_dbf_view_qdio(char **p, struct zfcp_hba_dbf_record_qdio *r)
425
{
426 427 428
	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);
429 430
}

431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
static void zfcp_hba_dbf_view_berr(char **p, struct fsf_bit_error_payload *r)
{
	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);
}

455 456
static int zfcp_hba_dbf_view_format(debug_info_t *id, struct debug_view *view,
				    char *out_buf, const char *in_buf)
457
{
458 459
	struct zfcp_hba_dbf_record *r = (struct zfcp_hba_dbf_record *)in_buf;
	char *p = out_buf;
460

461
	if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0)
462 463
		return 0;

464 465 466 467 468
	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)
469
		zfcp_hba_dbf_view_response(&p, &r->u.response);
470
	else if (strncmp(r->tag, "stat", ZFCP_DBF_TAG_SIZE) == 0)
471
		zfcp_hba_dbf_view_status(&p, &r->u.status);
472
	else if (strncmp(r->tag, "qdio", ZFCP_DBF_TAG_SIZE) == 0)
473
		zfcp_hba_dbf_view_qdio(&p, &r->u.qdio);
474 475
	else if (strncmp(r->tag, "berr", ZFCP_DBF_TAG_SIZE) == 0)
		zfcp_hba_dbf_view_berr(&p, &r->u.berr);
476

477 478
	if (strncmp(r->tag, "resp", ZFCP_DBF_TAG_SIZE) != 0)
		p += sprintf(p, "\n");
479
	return p - out_buf;
480 481
}

482
static struct debug_view zfcp_hba_dbf_view = {
483 484 485 486 487 488 489 490
	"structured",
	NULL,
	&zfcp_dbf_view_header,
	&zfcp_hba_dbf_view_format,
	NULL,
	NULL
};

491
static const char *zfcp_rec_dbf_tags[] = {
492
	[ZFCP_REC_DBF_ID_THREAD] = "thread",
493
	[ZFCP_REC_DBF_ID_TARGET] = "target",
494
	[ZFCP_REC_DBF_ID_TRIGGER] = "trigger",
495
	[ZFCP_REC_DBF_ID_ACTION] = "action",
496 497 498 499 500 501 502
};

static int zfcp_rec_dbf_view_format(debug_info_t *id, struct debug_view *view,
				    char *buf, const char *_rec)
{
	struct zfcp_rec_dbf_record *r = (struct zfcp_rec_dbf_record *)_rec;
	char *p = buf;
503
	char hint[ZFCP_DBF_ID_SIZE + 1];
504

505 506
	memcpy(hint, r->id2, ZFCP_DBF_ID_SIZE);
	hint[ZFCP_DBF_ID_SIZE] = 0;
507
	zfcp_dbf_outs(&p, "tag", zfcp_rec_dbf_tags[r->id]);
508
	zfcp_dbf_outs(&p, "hint", hint);
509
	switch (r->id) {
510 511 512 513 514
	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;
515 516 517 518 519 520 521 522
	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;
523 524 525 526 527 528 529 530 531 532 533
	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;
534 535 536 537 538 539
	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;
540
	}
541 542
	p += sprintf(p, "\n");
	return p - buf;
543 544 545 546 547 548 549 550 551 552 553
}

static struct debug_view zfcp_rec_dbf_view = {
	"structured",
	NULL,
	&zfcp_dbf_view_header,
	&zfcp_rec_dbf_view_format,
	NULL,
	NULL
};

554 555 556 557
/**
 * zfcp_rec_dbf_event_thread - trace event related to recovery thread operation
 * @id2: identifier for event
 * @adapter: adapter
558
 * This function assumes that the caller is holding erp_lock.
559
 */
560
void zfcp_rec_dbf_event_thread(char *id2, struct zfcp_adapter *adapter)
561
{
562 563
	struct zfcp_dbf *dbf = adapter->dbf;
	struct zfcp_rec_dbf_record *r = &dbf->rec_dbf_buf;
564 565 566 567 568 569 570 571 572 573
	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;

574
	spin_lock_irqsave(&dbf->rec_dbf_lock, flags);
575 576
	memset(r, 0, sizeof(*r));
	r->id = ZFCP_REC_DBF_ID_THREAD;
577
	memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
578 579 580
	r->u.thread.total = total;
	r->u.thread.ready = ready;
	r->u.thread.running = running;
581 582
	debug_event(dbf->rec_dbf, 6, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->rec_dbf_lock, flags);
583 584
}

585 586 587 588 589 590
/**
 * zfcp_rec_dbf_event_thread - trace event related to recovery thread operation
 * @id2: identifier for event
 * @adapter: adapter
 * This function assumes that the caller does not hold erp_lock.
 */
591
void zfcp_rec_dbf_event_thread_lock(char *id2, struct zfcp_adapter *adapter)
592 593 594 595 596 597 598 599
{
	unsigned long flags;

	read_lock_irqsave(&adapter->erp_lock, flags);
	zfcp_rec_dbf_event_thread(id2, adapter);
	read_unlock_irqrestore(&adapter->erp_lock, flags);
}

600
static void zfcp_rec_dbf_event_target(char *id2, void *ref,
601 602 603 604
				      struct zfcp_adapter *adapter,
				      atomic_t *status, atomic_t *erp_count,
				      u64 wwpn, u32 d_id, u64 fcp_lun)
{
605 606
	struct zfcp_dbf *dbf = adapter->dbf;
	struct zfcp_rec_dbf_record *r = &dbf->rec_dbf_buf;
607 608
	unsigned long flags;

609
	spin_lock_irqsave(&dbf->rec_dbf_lock, flags);
610 611
	memset(r, 0, sizeof(*r));
	r->id = ZFCP_REC_DBF_ID_TARGET;
612
	memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
613
	r->u.target.ref = (unsigned long)ref;
614 615 616 617 618
	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);
619 620
	debug_event(dbf->rec_dbf, 3, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->rec_dbf_lock, flags);
621 622 623 624 625 626 627 628
}

/**
 * zfcp_rec_dbf_event_adapter - trace event for adapter state change
 * @id: identifier for trigger of state change
 * @ref: additional reference (e.g. request)
 * @adapter: adapter
 */
629 630
void zfcp_rec_dbf_event_adapter(char *id, void *ref,
				struct zfcp_adapter *adapter)
631 632 633 634 635 636 637 638 639 640 641
{
	zfcp_rec_dbf_event_target(id, ref, adapter, &adapter->status,
				  &adapter->erp_counter, 0, 0, 0);
}

/**
 * zfcp_rec_dbf_event_port - trace event for port state change
 * @id: identifier for trigger of state change
 * @ref: additional reference (e.g. request)
 * @port: port
 */
642
void zfcp_rec_dbf_event_port(char *id, void *ref, struct zfcp_port *port)
643 644 645 646 647 648 649 650 651 652 653 654 655 656
{
	struct zfcp_adapter *adapter = port->adapter;

	zfcp_rec_dbf_event_target(id, ref, adapter, &port->status,
				  &port->erp_counter, port->wwpn, port->d_id,
				  0);
}

/**
 * zfcp_rec_dbf_event_unit - trace event for unit state change
 * @id: identifier for trigger of state change
 * @ref: additional reference (e.g. request)
 * @unit: unit
 */
657
void zfcp_rec_dbf_event_unit(char *id, void *ref, struct zfcp_unit *unit)
658 659 660 661 662 663 664 665 666
{
	struct zfcp_port *port = unit->port;
	struct zfcp_adapter *adapter = port->adapter;

	zfcp_rec_dbf_event_target(id, ref, adapter, &unit->status,
				  &unit->erp_counter, port->wwpn, port->d_id,
				  unit->fcp_lun);
}

667 668 669 670 671 672 673 674 675 676 677
/**
 * zfcp_rec_dbf_event_trigger - trace event for triggered error recovery
 * @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
 */
678
void zfcp_rec_dbf_event_trigger(char *id2, void *ref, u8 want, u8 need,
679
				void *action, struct zfcp_adapter *adapter,
680 681
				struct zfcp_port *port, struct zfcp_unit *unit)
{
682 683
	struct zfcp_dbf *dbf = adapter->dbf;
	struct zfcp_rec_dbf_record *r = &dbf->rec_dbf_buf;
684 685
	unsigned long flags;

686
	spin_lock_irqsave(&dbf->rec_dbf_lock, flags);
687 688
	memset(r, 0, sizeof(*r));
	r->id = ZFCP_REC_DBF_ID_TRIGGER;
689
	memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
690
	r->u.trigger.ref = (unsigned long)ref;
691 692
	r->u.trigger.want = want;
	r->u.trigger.need = need;
693
	r->u.trigger.action = (unsigned long)action;
694 695 696 697 698 699 700 701 702
	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;
	}
703 704
	debug_event(dbf->rec_dbf, action ? 1 : 4, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->rec_dbf_lock, flags);
705 706
}

707 708 709 710 711
/**
 * zfcp_rec_dbf_event_action - trace event showing progress of recovery action
 * @id2: identifier
 * @erp_action: error recovery action struct pointer
 */
712
void zfcp_rec_dbf_event_action(char *id2, struct zfcp_erp_action *erp_action)
713 714
{
	struct zfcp_adapter *adapter = erp_action->adapter;
715 716
	struct zfcp_dbf *dbf = adapter->dbf;
	struct zfcp_rec_dbf_record *r = &dbf->rec_dbf_buf;
717 718
	unsigned long flags;

719
	spin_lock_irqsave(&dbf->rec_dbf_lock, flags);
720 721
	memset(r, 0, sizeof(*r));
	r->id = ZFCP_REC_DBF_ID_ACTION;
722
	memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
723
	r->u.action.action = (unsigned long)erp_action;
724 725
	r->u.action.status = erp_action->status;
	r->u.action.step = erp_action->step;
726
	r->u.action.fsf_req = (unsigned long)erp_action->fsf_req;
727 728
	debug_event(dbf->rec_dbf, 5, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->rec_dbf_lock, flags);
729 730
}

731 732 733 734
/**
 * zfcp_san_dbf_event_ct_request - trace event for issued CT request
 * @fsf_req: request containing issued CT data
 */
735
void zfcp_san_dbf_event_ct_request(struct zfcp_fsf_req *fsf_req)
736 737
{
	struct zfcp_send_ct *ct = (struct zfcp_send_ct *)fsf_req->data;
738 739
	struct zfcp_wka_port *wka_port = ct->wka_port;
	struct zfcp_adapter *adapter = wka_port->adapter;
740
	struct zfcp_dbf *dbf = adapter->dbf;
741
	struct ct_hdr *hdr = sg_virt(ct->req);
742
	struct zfcp_san_dbf_record *r = &dbf->san_dbf_buf;
743
	struct zfcp_san_dbf_record_ct_request *oct = &r->u.ct_req;
744
	int level = 3;
745
	unsigned long flags;
746

747
	spin_lock_irqsave(&dbf->san_dbf_lock, flags);
748 749
	memset(r, 0, sizeof(*r));
	strncpy(r->tag, "octc", ZFCP_DBF_TAG_SIZE);
750
	r->fsf_reqid = fsf_req->req_id;
751 752
	r->fsf_seqno = fsf_req->seq_no;
	r->s_id = fc_host_port_id(adapter->scsi_host);
753
	r->d_id = wka_port->d_id;
754 755 756 757 758 759 760
	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),
761
		       ZFCP_DBF_SAN_MAX_PAYLOAD);
762 763
	debug_event(dbf->san_dbf, level, r, sizeof(*r));
	zfcp_dbf_hexdump(dbf->san_dbf, r, sizeof(*r), level,
764
			 (void *)hdr + sizeof(struct ct_hdr), oct->len);
765
	spin_unlock_irqrestore(&dbf->san_dbf_lock, flags);
766 767
}

768 769 770 771
/**
 * zfcp_san_dbf_event_ct_response - trace event for completion of CT request
 * @fsf_req: request containing CT response
 */
772
void zfcp_san_dbf_event_ct_response(struct zfcp_fsf_req *fsf_req)
773 774
{
	struct zfcp_send_ct *ct = (struct zfcp_send_ct *)fsf_req->data;
775 776
	struct zfcp_wka_port *wka_port = ct->wka_port;
	struct zfcp_adapter *adapter = wka_port->adapter;
777
	struct ct_hdr *hdr = sg_virt(ct->resp);
778 779
	struct zfcp_dbf *dbf = adapter->dbf;
	struct zfcp_san_dbf_record *r = &dbf->san_dbf_buf;
780
	struct zfcp_san_dbf_record_ct_response *rct = &r->u.ct_resp;
781
	int level = 3;
782
	unsigned long flags;
783

784
	spin_lock_irqsave(&dbf->san_dbf_lock, flags);
785 786
	memset(r, 0, sizeof(*r));
	strncpy(r->tag, "rctc", ZFCP_DBF_TAG_SIZE);
787
	r->fsf_reqid = fsf_req->req_id;
788
	r->fsf_seqno = fsf_req->seq_no;
789
	r->s_id = wka_port->d_id;
790 791 792 793 794 795
	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;
796
	rct->max_res_size = hdr->max_res_size;
797
	rct->len = min((int)ct->resp->length - (int)sizeof(struct ct_hdr),
798
		       ZFCP_DBF_SAN_MAX_PAYLOAD);
799 800
	debug_event(dbf->san_dbf, level, r, sizeof(*r));
	zfcp_dbf_hexdump(dbf->san_dbf, r, sizeof(*r), level,
801
			 (void *)hdr + sizeof(struct ct_hdr), rct->len);
802
	spin_unlock_irqrestore(&dbf->san_dbf_lock, flags);
803 804
}

805 806 807 808
static void zfcp_san_dbf_event_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)
809 810
{
	struct zfcp_adapter *adapter = fsf_req->adapter;
811 812
	struct zfcp_dbf *dbf = adapter->dbf;
	struct zfcp_san_dbf_record *rec = &dbf->san_dbf_buf;
813 814
	unsigned long flags;

815
	spin_lock_irqsave(&dbf->san_dbf_lock, flags);
816
	memset(rec, 0, sizeof(*rec));
817
	strncpy(rec->tag, tag, ZFCP_DBF_TAG_SIZE);
818
	rec->fsf_reqid = fsf_req->req_id;
819 820 821
	rec->fsf_seqno = fsf_req->seq_no;
	rec->s_id = s_id;
	rec->d_id = d_id;
822
	rec->u.els.ls_code = ls_code;
823 824
	debug_event(dbf->san_dbf, level, rec, sizeof(*rec));
	zfcp_dbf_hexdump(dbf->san_dbf, rec, sizeof(*rec), level,
825
			 buffer, min(buflen, ZFCP_DBF_SAN_MAX_PAYLOAD));
826
	spin_unlock_irqrestore(&dbf->san_dbf_lock, flags);
827 828
}

829 830 831 832
/**
 * zfcp_san_dbf_event_els_request - trace event for issued ELS
 * @fsf_req: request containing issued ELS
 */
833
void zfcp_san_dbf_event_els_request(struct zfcp_fsf_req *fsf_req)
834 835 836
{
	struct zfcp_send_els *els = (struct zfcp_send_els *)fsf_req->data;

837 838
	zfcp_san_dbf_event_els("oels", 2, fsf_req,
			       fc_host_port_id(els->adapter->scsi_host),
839 840
			       els->d_id, *(u8 *) sg_virt(els->req),
			       sg_virt(els->req), els->req->length);
841 842
}

843 844 845 846
/**
 * zfcp_san_dbf_event_els_response - trace event for completed ELS
 * @fsf_req: request containing ELS response
 */
847
void zfcp_san_dbf_event_els_response(struct zfcp_fsf_req *fsf_req)
848 849 850
{
	struct zfcp_send_els *els = (struct zfcp_send_els *)fsf_req->data;

851 852
	zfcp_san_dbf_event_els("rels", 2, fsf_req, els->d_id,
			       fc_host_port_id(els->adapter->scsi_host),
853
			       *(u8 *)sg_virt(els->req), sg_virt(els->resp),
854
			       els->resp->length);
855 856
}

857 858 859 860
/**
 * zfcp_san_dbf_event_incoming_els - trace event for incomig ELS
 * @fsf_req: request containing unsolicited status buffer with incoming ELS
 */
861
void zfcp_san_dbf_event_incoming_els(struct zfcp_fsf_req *fsf_req)
862 863
{
	struct zfcp_adapter *adapter = fsf_req->adapter;
864 865 866 867 868 869 870
	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);

	zfcp_san_dbf_event_els("iels", 1, fsf_req, buf->d_id,
			       fc_host_port_id(adapter->scsi_host),
S
Swen Schillig 已提交
871
			       buf->payload.data[0], (void *)buf->payload.data,
872
			       length);
873 874
}

875 876
static int zfcp_san_dbf_view_format(debug_info_t *id, struct debug_view *view,
				    char *out_buf, const char *in_buf)
877
{
878 879
	struct zfcp_san_dbf_record *r = (struct zfcp_san_dbf_record *)in_buf;
	char *p = out_buf;
880

881
	if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0)
882 883
		return 0;

884
	zfcp_dbf_tag(&p, "tag", r->tag);
885 886 887 888 889 890
	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) {
891 892 893 894 895 896 897
		struct zfcp_san_dbf_record_ct_request *ct = &r->u.ct_req;
		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);
898
	} else if (strncmp(r->tag, "rctc", ZFCP_DBF_TAG_SIZE) == 0) {
899 900 901 902 903 904
		struct zfcp_san_dbf_record_ct_response *ct = &r->u.ct_resp;
		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);
905
		zfcp_dbf_out(&p, "max_res_size", "0x%04x", ct->max_res_size);
906 907 908
	} 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) {
909 910
		struct zfcp_san_dbf_record_els *els = &r->u.els;
		zfcp_dbf_out(&p, "ls_code", "0x%02x", els->ls_code);
911
	}
912
	return p - out_buf;
913 914
}

915
static struct debug_view zfcp_san_dbf_view = {
916 917 918 919 920 921 922 923
	"structured",
	NULL,
	&zfcp_dbf_view_header,
	&zfcp_san_dbf_view_format,
	NULL,
	NULL
};

924 925 926 927
void _zfcp_scsi_dbf_event(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)
928
{
929
	struct zfcp_scsi_dbf_record *rec = &dbf->scsi_dbf_buf;
930 931 932 933 934 935
	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;

936
	spin_lock_irqsave(&dbf->scsi_dbf_lock, flags);
937
	do {
938
		memset(rec, 0, sizeof(*rec));
939 940 941
		if (offset == 0) {
			strncpy(rec->tag, tag, ZFCP_DBF_TAG_SIZE);
			strncpy(rec->tag2, tag2, ZFCP_DBF_TAG_SIZE);
942 943 944 945 946 947 948 949
			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;
950
				memcpy(rec->scsi_opcode, scsi_cmnd->cmnd,
951 952 953 954
					min((int)scsi_cmnd->cmd_len,
						ZFCP_DBF_SCSI_OPCODE));
				rec->scsi_retries = scsi_cmnd->retries;
				rec->scsi_allowed = scsi_cmnd->allowed;
955 956 957 958
			}
			if (fsf_req != NULL) {
				fcp_rsp = (struct fcp_rsp_iu *)
				    &(fsf_req->qtcb->bottom.io.fcp_rsp);
959
				fcp_rsp_info = (unsigned char *) &fcp_rsp[1];
960 961 962
				fcp_sns_info =
				    zfcp_get_fcp_sns_info_ptr(fcp_rsp);

963 964 965
				rec->rsp_validity = fcp_rsp->validity.value;
				rec->rsp_scsi_status = fcp_rsp->scsi_status;
				rec->rsp_resid = fcp_rsp->fcp_resid;
966
				if (fcp_rsp->validity.bits.fcp_rsp_len_valid)
967
					rec->rsp_code = *(fcp_rsp_info + 3);
968 969 970
				if (fcp_rsp->validity.bits.fcp_sns_len_valid) {
					buflen = min((int)fcp_rsp->fcp_sns_len,
						     ZFCP_DBF_SCSI_MAX_FCP_SNS_INFO);
971 972
					rec->sns_info_len = buflen;
					memcpy(rec->sns_info, fcp_sns_info,
973 974 975 976 977 978
					       min(buflen,
						   ZFCP_DBF_SCSI_FCP_SNS_INFO));
					offset += min(buflen,
						      ZFCP_DBF_SCSI_FCP_SNS_INFO);
				}

979
				rec->fsf_reqid = fsf_req->req_id;
980 981 982
				rec->fsf_seqno = fsf_req->seq_no;
				rec->fsf_issued = fsf_req->issued;
			}
983
			rec->old_fsf_reqid = old_req_id;
984 985 986 987 988 989 990 991 992 993 994
		} else {
			strncpy(dump->tag, "dump", ZFCP_DBF_TAG_SIZE);
			dump->total_size = buflen;
			dump->offset = offset;
			dump->size = min(buflen - offset,
					 (int)sizeof(struct
						     zfcp_scsi_dbf_record) -
					 (int)sizeof(struct zfcp_dbf_dump));
			memcpy(dump->data, fcp_sns_info + offset, dump->size);
			offset += dump->size;
		}
995
		debug_event(dbf->scsi_dbf, level, rec, sizeof(*rec));
996
	} while (offset < buflen);
997
	spin_unlock_irqrestore(&dbf->scsi_dbf_lock, flags);
998 999
}

1000 1001
static int zfcp_scsi_dbf_view_format(debug_info_t *id, struct debug_view *view,
				     char *out_buf, const char *in_buf)
1002
{
1003
	struct zfcp_scsi_dbf_record *r = (struct zfcp_scsi_dbf_record *)in_buf;
1004
	struct timespec t;
1005
	char *p = out_buf;
1006

1007
	if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0)
1008 1009
		return 0;

1010 1011
	zfcp_dbf_tag(&p, "tag", r->tag);
	zfcp_dbf_tag(&p, "tag2", r->tag2);
1012 1013 1014 1015 1016
	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);
1017 1018
	zfcp_dbf_outd(&p, "scsi_opcode", r->scsi_opcode, ZFCP_DBF_SCSI_OPCODE,
		      0, ZFCP_DBF_SCSI_OPCODE);
1019 1020 1021
	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)
1022
		zfcp_dbf_out(&p, "old_fsf_reqid", "0x%0Lx", r->old_fsf_reqid);
1023 1024 1025 1026 1027 1028
	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) {
1029 1030 1031 1032 1033 1034 1035 1036
		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,
1037
			      ZFCP_DBF_SCSI_FCP_SNS_INFO), 0,
1038
			      r->sns_info_len);
1039
	}
1040 1041
	p += sprintf(p, "\n");
	return p - out_buf;
1042 1043
}

1044
static struct debug_view zfcp_scsi_dbf_view = {
1045 1046 1047 1048 1049 1050 1051 1052
	"structured",
	NULL,
	&zfcp_dbf_view_header,
	&zfcp_scsi_dbf_view_format,
	NULL,
	NULL
};

1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
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;
}

1069 1070 1071 1072 1073 1074 1075 1076
/**
 * 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
 */
int zfcp_adapter_debug_register(struct zfcp_adapter *adapter)
{
	char dbf_name[DEBUG_MAX_NAME_LEN];
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
	struct zfcp_dbf *dbf;

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

	spin_lock_init(&dbf->hba_dbf_lock);
	spin_lock_init(&dbf->san_dbf_lock);
	spin_lock_init(&dbf->scsi_dbf_lock);
	spin_lock_init(&dbf->rec_dbf_lock);
1087

1088
	/* debug feature area which records recovery activity */
C
Christof Schmitt 已提交
1089
	sprintf(dbf_name, "zfcp_%s_rec", dev_name(&adapter->ccw_device->dev));
1090 1091 1092 1093
	dbf->rec_dbf = zfcp_dbf_reg(dbf_name, 3, &zfcp_rec_dbf_view,
				    sizeof(struct zfcp_rec_dbf_record));
	if (!dbf->rec_dbf)
		goto fail_rec;
1094

1095
	/* debug feature area which records HBA (FSF and QDIO) conditions */
C
Christof Schmitt 已提交
1096
	sprintf(dbf_name, "zfcp_%s_hba", dev_name(&adapter->ccw_device->dev));
1097 1098 1099 1100
	dbf->hba_dbf = zfcp_dbf_reg(dbf_name, 3, &zfcp_hba_dbf_view,
				    sizeof(struct zfcp_hba_dbf_record));
	if (!dbf->hba_dbf)
		goto fail_hba;
1101 1102

	/* debug feature area which records SAN command failures and recovery */
C
Christof Schmitt 已提交
1103
	sprintf(dbf_name, "zfcp_%s_san", dev_name(&adapter->ccw_device->dev));
1104 1105 1106 1107
	dbf->san_dbf = zfcp_dbf_reg(dbf_name, 6, &zfcp_san_dbf_view,
				    sizeof(struct zfcp_san_dbf_record));
	if (!dbf->san_dbf)
		goto fail_san;
1108 1109

	/* debug feature area which records SCSI command failures and recovery */
C
Christof Schmitt 已提交
1110
	sprintf(dbf_name, "zfcp_%s_scsi", dev_name(&adapter->ccw_device->dev));
1111 1112 1113 1114
	dbf->scsi_dbf = zfcp_dbf_reg(dbf_name, 3, &zfcp_scsi_dbf_view,
				     sizeof(struct zfcp_scsi_dbf_record));
	if (!dbf->scsi_dbf)
		goto fail_scsi;
1115

1116
	adapter->dbf = dbf;
1117 1118
	return 0;

1119 1120 1121 1122 1123 1124 1125 1126
fail_scsi:
	debug_unregister(dbf->san_dbf);
fail_san:
	debug_unregister(dbf->hba_dbf);
fail_hba:
	debug_unregister(dbf->rec_dbf);
fail_rec:
	kfree(dbf);
1127 1128 1129 1130 1131 1132 1133 1134 1135
	return -ENOMEM;
}

/**
 * zfcp_adapter_debug_unregister - unregisters debug feature for an adapter
 * @adapter: pointer to adapter for which debug features should be unregistered
 */
void zfcp_adapter_debug_unregister(struct zfcp_adapter *adapter)
{
1136 1137 1138 1139 1140 1141
	debug_unregister(adapter->dbf->scsi_dbf);
	debug_unregister(adapter->dbf->san_dbf);
	debug_unregister(adapter->dbf->hba_dbf);
	debug_unregister(adapter->dbf->rec_dbf);
	kfree(adapter->dbf);
	adapter->dbf = NULL;
1142
}