zfcp_dbf.c 35.4 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
#include "zfcp_ext.h"
16
#include "zfcp_fc.h"
17 18 19 20 21 22 23

static u32 dbfsize = 4;

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

24 25 26 27 28 29 30 31 32 33 34 35 36 37
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);
38
		debug_event(dbf, level, dump, dump->size + sizeof(*dump));
39 40 41
	}
}

42
static void zfcp_dbf_tag(char **p, const char *label, const char *tag)
43
{
44
	int i;
45

46
	*p += sprintf(*p, "%-24s", label);
47
	for (i = 0; i < ZFCP_DBF_TAG_SIZE; i++)
48 49
		*p += sprintf(*p, "%c", tag[i]);
	*p += sprintf(*p, "\n");
50 51
}

52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
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");
}

68 69
static void zfcp_dbf_outd(char **p, const char *label, char *buffer,
			  int buflen, int offset, int total_size)
70
{
71 72
	if (!offset)
		*p += sprintf(*p, "%-24s  ", label);
73 74 75
	while (buflen--) {
		if (offset > 0) {
			if ((offset % 32) == 0)
76
				*p += sprintf(*p, "\n%-24c  ", ' ');
77
			else if ((offset % 4) == 0)
78
				*p += sprintf(*p, " ");
79
		}
80
		*p += sprintf(*p, "%02x", *buffer++);
81
		if (++offset == total_size) {
82
			*p += sprintf(*p, "\n");
83 84 85
			break;
		}
	}
86 87
	if (!total_size)
		*p += sprintf(*p, "\n");
88 89
}

90 91
static int zfcp_dbf_view_header(debug_info_t *id, struct debug_view *view,
				int area, debug_entry_t *entry, char *out_buf)
92 93
{
	struct zfcp_dbf_dump *dump = (struct zfcp_dbf_dump *)DEBUG_DATA(entry);
94
	struct timespec t;
95
	char *p = out_buf;
96 97

	if (strncmp(dump->tag, "dump", ZFCP_DBF_TAG_SIZE) != 0) {
98
		stck_to_timespec(entry->id.stck, &t);
99 100 101 102
		zfcp_dbf_out(&p, "timestamp", "%011lu:%06lu",
			     t.tv_sec, t.tv_nsec);
		zfcp_dbf_out(&p, "cpu", "%02i", entry->id.fields.cpuid);
	} else	{
103
		zfcp_dbf_outd(&p, "", dump->data, dump->size, dump->offset,
104
			      dump->total_size);
105
		if ((dump->offset + dump->size) == dump->total_size)
106
			p += sprintf(p, "\n");
107
	}
108
	return p - out_buf;
109 110
}

S
Swen Schillig 已提交
111 112 113
void _zfcp_dbf_hba_fsf_response(const char *tag2, int level,
				struct zfcp_fsf_req *fsf_req,
				struct zfcp_dbf *dbf)
114 115 116
{
	struct fsf_qtcb *qtcb = fsf_req->qtcb;
	union fsf_prot_status_qual *prot_status_qual =
117
					&qtcb->prefix.prot_status_qual;
118 119 120 121 122
	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 已提交
123 124
	struct zfcp_dbf_hba_record *rec = &dbf->hba_buf;
	struct zfcp_dbf_hba_record_response *response = &rec->u.response;
125 126
	unsigned long flags;

S
Swen Schillig 已提交
127
	spin_lock_irqsave(&dbf->hba_lock, flags);
128
	memset(rec, 0, sizeof(*rec));
129
	strncpy(rec->tag, "resp", ZFCP_DBF_TAG_SIZE);
130
	strncpy(rec->tag2, tag2, ZFCP_DBF_TAG_SIZE);
131 132

	response->fsf_command = fsf_req->fsf_command;
133
	response->fsf_reqid = fsf_req->req_id;
134 135 136 137 138 139 140 141 142
	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;
143 144 145
	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;
146 147 148 149 150 151 152 153
	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;
154 155 156
		if (scsi_cmnd) {
			response->u.fcp.cmnd = (unsigned long)scsi_cmnd;
			response->u.fcp.serial = scsi_cmnd->serial_number;
157 158 159 160 161 162 163
		}
		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;
164 165 166
		response->u.port.wwpn = port->wwpn;
		response->u.port.d_id = port->d_id;
		response->u.port.port_handle = qtcb->header.port_handle;
167 168 169 170 171 172
		break;

	case FSF_QTCB_OPEN_LUN:
	case FSF_QTCB_CLOSE_LUN:
		unit = (struct zfcp_unit *)fsf_req->data;
		port = unit->port;
173 174 175 176
		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;
177 178 179 180
		break;

	case FSF_QTCB_SEND_ELS:
		send_els = (struct zfcp_send_els *)fsf_req->data;
181 182
		response->u.els.d_id = qtcb->bottom.support.d_id;
		response->u.els.ls_code = send_els->ls_code >> 24;
183 184 185 186 187 188 189 190 191 192 193
		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 已提交
194
	debug_event(dbf->hba, level, rec, sizeof(*rec));
195 196 197 198 199 200 201

	/* 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 已提交
202
		zfcp_dbf_hexdump(dbf->hba, rec, sizeof(*rec), level, buf,
203
				 len);
204 205
	}

S
Swen Schillig 已提交
206
	spin_unlock_irqrestore(&dbf->hba_lock, flags);
207 208
}

S
Swen Schillig 已提交
209 210
void _zfcp_dbf_hba_fsf_unsol(const char *tag, int level, struct zfcp_dbf *dbf,
			     struct fsf_status_read_buffer *status_buffer)
211
{
S
Swen Schillig 已提交
212
	struct zfcp_dbf_hba_record *rec = &dbf->hba_buf;
213 214
	unsigned long flags;

S
Swen Schillig 已提交
215
	spin_lock_irqsave(&dbf->hba_lock, flags);
216
	memset(rec, 0, sizeof(*rec));
217 218 219
	strncpy(rec->tag, "stat", ZFCP_DBF_TAG_SIZE);
	strncpy(rec->tag2, tag, ZFCP_DBF_TAG_SIZE);

S
Swen Schillig 已提交
220
	rec->u.status.failed = atomic_read(&dbf->adapter->stat_miss);
221
	if (status_buffer != NULL) {
222 223 224
		rec->u.status.status_type = status_buffer->status_type;
		rec->u.status.status_subtype = status_buffer->status_subtype;
		memcpy(&rec->u.status.queue_designator,
225 226 227 228 229
		       &status_buffer->queue_designator,
		       sizeof(struct fsf_queue_designator));

		switch (status_buffer->status_type) {
		case FSF_STATUS_READ_SENSE_DATA_AVAIL:
230
			rec->u.status.payload_size =
231 232 233 234
			    ZFCP_DBF_UNSOL_PAYLOAD_SENSE_DATA_AVAIL;
			break;

		case FSF_STATUS_READ_BIT_ERROR_THRESHOLD:
235
			rec->u.status.payload_size =
236 237 238 239
			    ZFCP_DBF_UNSOL_PAYLOAD_BIT_ERROR_THRESHOLD;
			break;

		case FSF_STATUS_READ_LINK_DOWN:
240 241 242
			switch (status_buffer->status_subtype) {
			case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK:
			case FSF_STATUS_READ_SUB_FDISC_FAILED:
243
				rec->u.status.payload_size =
244 245
					sizeof(struct fsf_link_down_info);
			}
246 247
			break;

248
		case FSF_STATUS_READ_FEATURE_UPDATE_ALERT:
249
			rec->u.status.payload_size =
250 251
			    ZFCP_DBF_UNSOL_PAYLOAD_FEATURE_UPDATE_ALERT;
			break;
252
		}
253 254
		memcpy(&rec->u.status.payload,
		       &status_buffer->payload, rec->u.status.payload_size);
255 256
	}

S
Swen Schillig 已提交
257 258
	debug_event(dbf->hba, level, rec, sizeof(*rec));
	spin_unlock_irqrestore(&dbf->hba_lock, flags);
259 260
}

261
/**
S
Swen Schillig 已提交
262
 * zfcp_dbf_hba_qdio - trace event for QDIO related failure
263
 * @qdio: qdio structure affected by this QDIO related event
264 265 266 267
 * @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 已提交
268 269
void zfcp_dbf_hba_qdio(struct zfcp_dbf *dbf, unsigned int qdio_error,
		       int sbal_index, int sbal_count)
270
{
S
Swen Schillig 已提交
271
	struct zfcp_dbf_hba_record *r = &dbf->hba_buf;
272 273
	unsigned long flags;

S
Swen Schillig 已提交
274
	spin_lock_irqsave(&dbf->hba_lock, flags);
275 276 277 278 279
	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 已提交
280 281
	debug_event(dbf->hba, 0, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->hba_lock, flags);
282 283
}

284
/**
S
Swen Schillig 已提交
285 286
 * zfcp_dbf_hba_berr - trace event for bit error threshold
 * @dbf: dbf structure affected by this QDIO related event
287 288
 * @req: fsf request
 */
S
Swen Schillig 已提交
289
void zfcp_dbf_hba_berr(struct zfcp_dbf *dbf, struct zfcp_fsf_req *req)
290
{
S
Swen Schillig 已提交
291
	struct zfcp_dbf_hba_record *r = &dbf->hba_buf;
292 293 294 295
	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 已提交
296
	spin_lock_irqsave(&dbf->hba_lock, flags);
297 298 299
	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 已提交
300 301
	debug_event(dbf->hba, 0, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->hba_lock, flags);
302
}
S
Swen Schillig 已提交
303 304
static void zfcp_dbf_hba_view_response(char **p,
				       struct zfcp_dbf_hba_record_response *r)
305
{
306
	struct timespec t;
307

308 309 310
	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);
311
	stck_to_timespec(r->fsf_issued, &t);
312 313 314 315
	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,
316
		      FSF_PROT_STATUS_QUAL_SIZE, 0, FSF_PROT_STATUS_QUAL_SIZE);
317
	zfcp_dbf_outd(p, "fsf_status_qual", r->fsf_status_qual,
318
		      FSF_STATUS_QUALIFIER_SIZE, 0, FSF_STATUS_QUALIFIER_SIZE);
319 320
	zfcp_dbf_out(p, "fsf_req_status", "0x%08x", r->fsf_req_status);
	zfcp_dbf_out(p, "sbal_first", "0x%02x", r->sbal_first);
321
	zfcp_dbf_out(p, "sbal_last", "0x%02x", r->sbal_last);
322
	zfcp_dbf_out(p, "sbal_response", "0x%02x", r->sbal_response);
323
	zfcp_dbf_out(p, "pool", "0x%02x", r->pool);
324 325

	switch (r->fsf_command) {
326
	case FSF_QTCB_FCP_CMND:
327
		if (r->fsf_req_status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT)
328
			break;
329 330
		zfcp_dbf_out(p, "scsi_cmnd", "0x%0Lx", r->u.fcp.cmnd);
		zfcp_dbf_out(p, "scsi_serial", "0x%016Lx", r->u.fcp.serial);
331
		p += sprintf(*p, "\n");
332 333 334 335 336
		break;

	case FSF_QTCB_OPEN_PORT_WITH_DID:
	case FSF_QTCB_CLOSE_PORT:
	case FSF_QTCB_CLOSE_PHYSICAL_PORT:
337 338 339
		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);
340 341 342 343
		break;

	case FSF_QTCB_OPEN_LUN:
	case FSF_QTCB_CLOSE_LUN:
344 345 346 347
		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);
348 349 350
		break;

	case FSF_QTCB_SEND_ELS:
351 352
		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);
353 354 355 356 357 358 359 360 361 362 363 364
		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 已提交
365 366
static void zfcp_dbf_hba_view_status(char **p,
				     struct zfcp_dbf_hba_record_status *r)
367
{
368 369 370 371
	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,
372 373
		      sizeof(struct fsf_queue_designator), 0,
		      sizeof(struct fsf_queue_designator));
374
	zfcp_dbf_outd(p, "payload", (char *)&r->payload, r->payload_size, 0,
375
		      r->payload_size);
376 377
}

S
Swen Schillig 已提交
378
static void zfcp_dbf_hba_view_qdio(char **p, struct zfcp_dbf_hba_record_qdio *r)
379
{
380 381 382
	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);
383 384
}

S
Swen Schillig 已提交
385
static void zfcp_dbf_hba_view_berr(char **p, struct fsf_bit_error_payload *r)
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
{
	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 已提交
409
static int zfcp_dbf_hba_view_format(debug_info_t *id, struct debug_view *view,
410
				    char *out_buf, const char *in_buf)
411
{
S
Swen Schillig 已提交
412
	struct zfcp_dbf_hba_record *r = (struct zfcp_dbf_hba_record *)in_buf;
413
	char *p = out_buf;
414

415
	if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0)
416 417
		return 0;

418 419 420 421 422
	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 已提交
423
		zfcp_dbf_hba_view_response(&p, &r->u.response);
424
	else if (strncmp(r->tag, "stat", ZFCP_DBF_TAG_SIZE) == 0)
S
Swen Schillig 已提交
425
		zfcp_dbf_hba_view_status(&p, &r->u.status);
426
	else if (strncmp(r->tag, "qdio", ZFCP_DBF_TAG_SIZE) == 0)
S
Swen Schillig 已提交
427
		zfcp_dbf_hba_view_qdio(&p, &r->u.qdio);
428
	else if (strncmp(r->tag, "berr", ZFCP_DBF_TAG_SIZE) == 0)
S
Swen Schillig 已提交
429
		zfcp_dbf_hba_view_berr(&p, &r->u.berr);
430

431 432
	if (strncmp(r->tag, "resp", ZFCP_DBF_TAG_SIZE) != 0)
		p += sprintf(p, "\n");
433
	return p - out_buf;
434 435
}

S
Swen Schillig 已提交
436 437 438 439
static struct debug_view zfcp_dbf_hba_view = {
	.name = "structured",
	.header_proc = zfcp_dbf_view_header,
	.format_proc = zfcp_dbf_hba_view_format,
440 441
};

S
Swen Schillig 已提交
442
static const char *zfcp_dbf_rec_tags[] = {
443
	[ZFCP_REC_DBF_ID_THREAD] = "thread",
444
	[ZFCP_REC_DBF_ID_TARGET] = "target",
445
	[ZFCP_REC_DBF_ID_TRIGGER] = "trigger",
446
	[ZFCP_REC_DBF_ID_ACTION] = "action",
447 448
};

S
Swen Schillig 已提交
449
static int zfcp_dbf_rec_view_format(debug_info_t *id, struct debug_view *view,
450 451
				    char *buf, const char *_rec)
{
S
Swen Schillig 已提交
452
	struct zfcp_dbf_rec_record *r = (struct zfcp_dbf_rec_record *)_rec;
453
	char *p = buf;
454
	char hint[ZFCP_DBF_ID_SIZE + 1];
455

456 457
	memcpy(hint, r->id2, ZFCP_DBF_ID_SIZE);
	hint[ZFCP_DBF_ID_SIZE] = 0;
S
Swen Schillig 已提交
458
	zfcp_dbf_outs(&p, "tag", zfcp_dbf_rec_tags[r->id]);
459
	zfcp_dbf_outs(&p, "hint", hint);
460
	switch (r->id) {
461 462 463 464 465
	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;
466 467 468 469 470 471 472 473
	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;
474 475 476 477 478 479 480 481 482 483 484
	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;
485 486 487 488 489 490
	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;
491
	}
492 493
	p += sprintf(p, "\n");
	return p - buf;
494 495
}

S
Swen Schillig 已提交
496 497 498 499
static struct debug_view zfcp_dbf_rec_view = {
	.name = "structured",
	.header_proc = zfcp_dbf_view_header,
	.format_proc = zfcp_dbf_rec_view_format,
500 501
};

502
/**
S
Swen Schillig 已提交
503
 * zfcp_dbf_rec_thread - trace event related to recovery thread operation
504
 * @id2: identifier for event
S
Swen Schillig 已提交
505
 * @dbf: reference to dbf structure
506
 * This function assumes that the caller is holding erp_lock.
507
 */
S
Swen Schillig 已提交
508
void zfcp_dbf_rec_thread(char *id2, struct zfcp_dbf *dbf)
509
{
S
Swen Schillig 已提交
510 511
	struct zfcp_adapter *adapter = dbf->adapter;
	struct zfcp_dbf_rec_record *r = &dbf->rec_buf;
512 513 514 515 516 517 518 519 520 521
	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 已提交
522
	spin_lock_irqsave(&dbf->rec_lock, flags);
523 524
	memset(r, 0, sizeof(*r));
	r->id = ZFCP_REC_DBF_ID_THREAD;
525
	memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
526 527 528
	r->u.thread.total = total;
	r->u.thread.ready = ready;
	r->u.thread.running = running;
S
Swen Schillig 已提交
529 530
	debug_event(dbf->rec, 6, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->rec_lock, flags);
531 532
}

533
/**
S
Swen Schillig 已提交
534
 * zfcp_dbf_rec_thread - trace event related to recovery thread operation
535 536 537 538
 * @id2: identifier for event
 * @adapter: adapter
 * This function assumes that the caller does not hold erp_lock.
 */
S
Swen Schillig 已提交
539
void zfcp_dbf_rec_thread_lock(char *id2, struct zfcp_dbf *dbf)
540
{
S
Swen Schillig 已提交
541
	struct zfcp_adapter *adapter = dbf->adapter;
542 543 544
	unsigned long flags;

	read_lock_irqsave(&adapter->erp_lock, flags);
S
Swen Schillig 已提交
545
	zfcp_dbf_rec_thread(id2, dbf);
546 547 548
	read_unlock_irqrestore(&adapter->erp_lock, flags);
}

S
Swen Schillig 已提交
549 550 551
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)
552
{
S
Swen Schillig 已提交
553
	struct zfcp_dbf_rec_record *r = &dbf->rec_buf;
554 555
	unsigned long flags;

S
Swen Schillig 已提交
556
	spin_lock_irqsave(&dbf->rec_lock, flags);
557 558
	memset(r, 0, sizeof(*r));
	r->id = ZFCP_REC_DBF_ID_TARGET;
559
	memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
560
	r->u.target.ref = (unsigned long)ref;
561 562 563 564 565
	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 已提交
566 567
	debug_event(dbf->rec, 3, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->rec_lock, flags);
568 569 570
}

/**
S
Swen Schillig 已提交
571
 * zfcp_dbf_rec_adapter - trace event for adapter state change
572 573
 * @id: identifier for trigger of state change
 * @ref: additional reference (e.g. request)
S
Swen Schillig 已提交
574
 * @dbf: reference to dbf structure
575
 */
S
Swen Schillig 已提交
576
void zfcp_dbf_rec_adapter(char *id, void *ref, struct zfcp_dbf *dbf)
577
{
S
Swen Schillig 已提交
578 579 580
	struct zfcp_adapter *adapter = dbf->adapter;

	zfcp_dbf_rec_target(id, ref, dbf, &adapter->status,
581 582 583 584
				  &adapter->erp_counter, 0, 0, 0);
}

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

S
Swen Schillig 已提交
594
	zfcp_dbf_rec_target(id, ref, dbf, &port->status,
595 596 597 598 599
				  &port->erp_counter, port->wwpn, port->d_id,
				  0);
}

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

S
Swen Schillig 已提交
610
	zfcp_dbf_rec_target(id, ref, dbf, &unit->status,
611 612 613 614
				  &unit->erp_counter, port->wwpn, port->d_id,
				  unit->fcp_lun);
}

615
/**
S
Swen Schillig 已提交
616
 * zfcp_dbf_rec_trigger - trace event for triggered error recovery
617 618 619 620 621 622 623 624 625
 * @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 已提交
626 627 628
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)
629
{
630
	struct zfcp_dbf *dbf = adapter->dbf;
S
Swen Schillig 已提交
631
	struct zfcp_dbf_rec_record *r = &dbf->rec_buf;
632 633
	unsigned long flags;

S
Swen Schillig 已提交
634
	spin_lock_irqsave(&dbf->rec_lock, flags);
635 636
	memset(r, 0, sizeof(*r));
	r->id = ZFCP_REC_DBF_ID_TRIGGER;
637
	memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
638
	r->u.trigger.ref = (unsigned long)ref;
639 640
	r->u.trigger.want = want;
	r->u.trigger.need = need;
641
	r->u.trigger.action = (unsigned long)action;
642 643 644 645 646 647 648 649 650
	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 已提交
651 652
	debug_event(dbf->rec, action ? 1 : 4, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->rec_lock, flags);
653 654
}

655
/**
S
Swen Schillig 已提交
656
 * zfcp_dbf_rec_action - trace event showing progress of recovery action
657 658 659
 * @id2: identifier
 * @erp_action: error recovery action struct pointer
 */
S
Swen Schillig 已提交
660
void zfcp_dbf_rec_action(char *id2, struct zfcp_erp_action *erp_action)
661
{
S
Swen Schillig 已提交
662 663
	struct zfcp_dbf *dbf = erp_action->adapter->dbf;
	struct zfcp_dbf_rec_record *r = &dbf->rec_buf;
664 665
	unsigned long flags;

S
Swen Schillig 已提交
666
	spin_lock_irqsave(&dbf->rec_lock, flags);
667 668
	memset(r, 0, sizeof(*r));
	r->id = ZFCP_REC_DBF_ID_ACTION;
669
	memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
670
	r->u.action.action = (unsigned long)erp_action;
671 672
	r->u.action.status = erp_action->status;
	r->u.action.step = erp_action->step;
673
	r->u.action.fsf_req = (unsigned long)erp_action->fsf_req;
S
Swen Schillig 已提交
674 675
	debug_event(dbf->rec, 5, r, sizeof(*r));
	spin_unlock_irqrestore(&dbf->rec_lock, flags);
676 677
}

678
/**
S
Swen Schillig 已提交
679
 * zfcp_dbf_san_ct_request - trace event for issued CT request
680 681
 * @fsf_req: request containing issued CT data
 */
S
Swen Schillig 已提交
682
void zfcp_dbf_san_ct_request(struct zfcp_fsf_req *fsf_req)
683 684
{
	struct zfcp_send_ct *ct = (struct zfcp_send_ct *)fsf_req->data;
685
	struct zfcp_fc_wka_port *wka_port = ct->wka_port;
686
	struct zfcp_adapter *adapter = wka_port->adapter;
687
	struct zfcp_dbf *dbf = adapter->dbf;
688
	struct fc_ct_hdr *hdr = sg_virt(ct->req);
S
Swen Schillig 已提交
689 690
	struct zfcp_dbf_san_record *r = &dbf->san_buf;
	struct zfcp_dbf_san_record_ct_request *oct = &r->u.ct_req;
691
	int level = 3;
692
	unsigned long flags;
693

S
Swen Schillig 已提交
694
	spin_lock_irqsave(&dbf->san_lock, flags);
695 696
	memset(r, 0, sizeof(*r));
	strncpy(r->tag, "octc", ZFCP_DBF_TAG_SIZE);
697
	r->fsf_reqid = fsf_req->req_id;
698 699
	r->fsf_seqno = fsf_req->seq_no;
	r->s_id = fc_host_port_id(adapter->scsi_host);
700
	r->d_id = wka_port->d_id;
701 702 703 704 705 706 707
	oct->cmd_req_code = hdr->ct_cmd;
	oct->revision = hdr->ct_rev;
	oct->gs_type = hdr->ct_fs_type;
	oct->gs_subtype = hdr->ct_fs_subtype;
	oct->options = hdr->ct_options;
	oct->max_res_size = hdr->ct_mr_size;
	oct->len = min((int)ct->req->length - (int)sizeof(struct fc_ct_hdr),
708
		       ZFCP_DBF_SAN_MAX_PAYLOAD);
S
Swen Schillig 已提交
709 710
	debug_event(dbf->san, level, r, sizeof(*r));
	zfcp_dbf_hexdump(dbf->san, r, sizeof(*r), level,
711
			 (void *)hdr + sizeof(struct fc_ct_hdr), oct->len);
S
Swen Schillig 已提交
712
	spin_unlock_irqrestore(&dbf->san_lock, flags);
713 714
}

715
/**
S
Swen Schillig 已提交
716
 * zfcp_dbf_san_ct_response - trace event for completion of CT request
717 718
 * @fsf_req: request containing CT response
 */
S
Swen Schillig 已提交
719
void zfcp_dbf_san_ct_response(struct zfcp_fsf_req *fsf_req)
720 721
{
	struct zfcp_send_ct *ct = (struct zfcp_send_ct *)fsf_req->data;
722
	struct zfcp_fc_wka_port *wka_port = ct->wka_port;
723
	struct zfcp_adapter *adapter = wka_port->adapter;
724
	struct fc_ct_hdr *hdr = sg_virt(ct->resp);
725
	struct zfcp_dbf *dbf = adapter->dbf;
S
Swen Schillig 已提交
726 727
	struct zfcp_dbf_san_record *r = &dbf->san_buf;
	struct zfcp_dbf_san_record_ct_response *rct = &r->u.ct_resp;
728
	int level = 3;
729
	unsigned long flags;
730

S
Swen Schillig 已提交
731
	spin_lock_irqsave(&dbf->san_lock, flags);
732 733
	memset(r, 0, sizeof(*r));
	strncpy(r->tag, "rctc", ZFCP_DBF_TAG_SIZE);
734
	r->fsf_reqid = fsf_req->req_id;
735
	r->fsf_seqno = fsf_req->seq_no;
736
	r->s_id = wka_port->d_id;
737
	r->d_id = fc_host_port_id(adapter->scsi_host);
738 739 740 741 742 743 744
	rct->cmd_rsp_code = hdr->ct_cmd;
	rct->revision = hdr->ct_rev;
	rct->reason_code = hdr->ct_reason;
	rct->expl = hdr->ct_explan;
	rct->vendor_unique = hdr->ct_vendor;
	rct->max_res_size = hdr->ct_mr_size;
	rct->len = min((int)ct->resp->length - (int)sizeof(struct fc_ct_hdr),
745
		       ZFCP_DBF_SAN_MAX_PAYLOAD);
S
Swen Schillig 已提交
746 747
	debug_event(dbf->san, level, r, sizeof(*r));
	zfcp_dbf_hexdump(dbf->san, r, sizeof(*r), level,
748
			 (void *)hdr + sizeof(struct fc_ct_hdr), rct->len);
S
Swen Schillig 已提交
749
	spin_unlock_irqrestore(&dbf->san_lock, flags);
750 751
}

S
Swen Schillig 已提交
752 753 754
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)
755 756
{
	struct zfcp_adapter *adapter = fsf_req->adapter;
757
	struct zfcp_dbf *dbf = adapter->dbf;
S
Swen Schillig 已提交
758
	struct zfcp_dbf_san_record *rec = &dbf->san_buf;
759 760
	unsigned long flags;

S
Swen Schillig 已提交
761
	spin_lock_irqsave(&dbf->san_lock, flags);
762
	memset(rec, 0, sizeof(*rec));
763
	strncpy(rec->tag, tag, ZFCP_DBF_TAG_SIZE);
764
	rec->fsf_reqid = fsf_req->req_id;
765 766 767
	rec->fsf_seqno = fsf_req->seq_no;
	rec->s_id = s_id;
	rec->d_id = d_id;
768
	rec->u.els.ls_code = ls_code;
S
Swen Schillig 已提交
769 770
	debug_event(dbf->san, level, rec, sizeof(*rec));
	zfcp_dbf_hexdump(dbf->san, rec, sizeof(*rec), level,
771
			 buffer, min(buflen, ZFCP_DBF_SAN_MAX_PAYLOAD));
S
Swen Schillig 已提交
772
	spin_unlock_irqrestore(&dbf->san_lock, flags);
773 774
}

775
/**
S
Swen Schillig 已提交
776
 * zfcp_dbf_san_els_request - trace event for issued ELS
777 778
 * @fsf_req: request containing issued ELS
 */
S
Swen Schillig 已提交
779
void zfcp_dbf_san_els_request(struct zfcp_fsf_req *fsf_req)
780 781 782
{
	struct zfcp_send_els *els = (struct zfcp_send_els *)fsf_req->data;

S
Swen Schillig 已提交
783
	zfcp_dbf_san_els("oels", 2, fsf_req,
784
			       fc_host_port_id(els->adapter->scsi_host),
785 786
			       els->d_id, *(u8 *) sg_virt(els->req),
			       sg_virt(els->req), els->req->length);
787 788
}

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

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

803
/**
S
Swen Schillig 已提交
804
 * zfcp_dbf_san_incoming_els - trace event for incomig ELS
805 806
 * @fsf_req: request containing unsolicited status buffer with incoming ELS
 */
S
Swen Schillig 已提交
807
void zfcp_dbf_san_incoming_els(struct zfcp_fsf_req *fsf_req)
808 809
{
	struct zfcp_adapter *adapter = fsf_req->adapter;
810 811 812 813 814
	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 已提交
815
	zfcp_dbf_san_els("iels", 1, fsf_req, buf->d_id,
816
			       fc_host_port_id(adapter->scsi_host),
S
Swen Schillig 已提交
817
			       buf->payload.data[0], (void *)buf->payload.data,
818
			       length);
819 820
}

S
Swen Schillig 已提交
821
static int zfcp_dbf_san_view_format(debug_info_t *id, struct debug_view *view,
822
				    char *out_buf, const char *in_buf)
823
{
S
Swen Schillig 已提交
824
	struct zfcp_dbf_san_record *r = (struct zfcp_dbf_san_record *)in_buf;
825
	char *p = out_buf;
826

827
	if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0)
828 829
		return 0;

830
	zfcp_dbf_tag(&p, "tag", r->tag);
831 832 833 834 835 836
	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 已提交
837
		struct zfcp_dbf_san_record_ct_request *ct = &r->u.ct_req;
838 839 840 841 842 843
		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);
844
	} else if (strncmp(r->tag, "rctc", ZFCP_DBF_TAG_SIZE) == 0) {
S
Swen Schillig 已提交
845
		struct zfcp_dbf_san_record_ct_response *ct = &r->u.ct_resp;
846 847 848 849 850
		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);
851
		zfcp_dbf_out(&p, "max_res_size", "0x%04x", ct->max_res_size);
852 853 854
	} 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 已提交
855
		struct zfcp_dbf_san_record_els *els = &r->u.els;
856
		zfcp_dbf_out(&p, "ls_code", "0x%02x", els->ls_code);
857
	}
858
	return p - out_buf;
859 860
}

S
Swen Schillig 已提交
861 862 863 864
static struct debug_view zfcp_dbf_san_view = {
	.name = "structured",
	.header_proc = zfcp_dbf_view_header,
	.format_proc = zfcp_dbf_san_view_format,
865 866
};

S
Swen Schillig 已提交
867 868 869
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)
870
{
S
Swen Schillig 已提交
871
	struct zfcp_dbf_scsi_record *rec = &dbf->scsi_buf;
872 873
	struct zfcp_dbf_dump *dump = (struct zfcp_dbf_dump *)rec;
	unsigned long flags;
874 875 876
	struct fcp_resp_with_ext *fcp_rsp;
	struct fcp_resp_rsp_info *fcp_rsp_info = NULL;
	char *fcp_sns_info = NULL;
877 878
	int offset = 0, buflen = 0;

S
Swen Schillig 已提交
879
	spin_lock_irqsave(&dbf->scsi_lock, flags);
880
	do {
881
		memset(rec, 0, sizeof(*rec));
882 883 884
		if (offset == 0) {
			strncpy(rec->tag, tag, ZFCP_DBF_TAG_SIZE);
			strncpy(rec->tag2, tag2, ZFCP_DBF_TAG_SIZE);
885 886 887 888 889 890 891 892
			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;
893
				memcpy(rec->scsi_opcode, scsi_cmnd->cmnd,
894 895 896 897
					min((int)scsi_cmnd->cmd_len,
						ZFCP_DBF_SCSI_OPCODE));
				rec->scsi_retries = scsi_cmnd->retries;
				rec->scsi_allowed = scsi_cmnd->allowed;
898 899
			}
			if (fsf_req != NULL) {
900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915
				fcp_rsp = (struct fcp_resp_with_ext *)
					&(fsf_req->qtcb->bottom.io.fcp_rsp);
				fcp_rsp_info = (struct fcp_resp_rsp_info *)
					&fcp_rsp[1];
				fcp_sns_info = (char *) &fcp_rsp[1];
				if (fcp_rsp->resp.fr_flags & FCP_RSP_LEN_VAL)
					fcp_sns_info += fcp_rsp->ext.fr_sns_len;

				rec->rsp_validity = fcp_rsp->resp.fr_flags;
				rec->rsp_scsi_status = fcp_rsp->resp.fr_status;
				rec->rsp_resid = fcp_rsp->ext.fr_resid;
				if (fcp_rsp->resp.fr_flags & FCP_RSP_LEN_VAL)
					rec->rsp_code = fcp_rsp_info->rsp_code;
				if (fcp_rsp->resp.fr_flags & FCP_SNS_LEN_VAL) {
					buflen = min(fcp_rsp->ext.fr_sns_len,
					   (u32)ZFCP_DBF_SCSI_MAX_FCP_SNS_INFO);
916 917
					rec->sns_info_len = buflen;
					memcpy(rec->sns_info, fcp_sns_info,
918 919 920 921 922 923
					       min(buflen,
						   ZFCP_DBF_SCSI_FCP_SNS_INFO));
					offset += min(buflen,
						      ZFCP_DBF_SCSI_FCP_SNS_INFO);
				}

924
				rec->fsf_reqid = fsf_req->req_id;
925 926 927
				rec->fsf_seqno = fsf_req->seq_no;
				rec->fsf_issued = fsf_req->issued;
			}
928
			rec->old_fsf_reqid = old_req_id;
929 930 931 932 933 934
		} 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 已提交
935
						     zfcp_dbf_scsi_record) -
936 937 938 939
					 (int)sizeof(struct zfcp_dbf_dump));
			memcpy(dump->data, fcp_sns_info + offset, dump->size);
			offset += dump->size;
		}
S
Swen Schillig 已提交
940
		debug_event(dbf->scsi, level, rec, sizeof(*rec));
941
	} while (offset < buflen);
S
Swen Schillig 已提交
942
	spin_unlock_irqrestore(&dbf->scsi_lock, flags);
943 944
}

S
Swen Schillig 已提交
945
static int zfcp_dbf_scsi_view_format(debug_info_t *id, struct debug_view *view,
946
				     char *out_buf, const char *in_buf)
947
{
S
Swen Schillig 已提交
948
	struct zfcp_dbf_scsi_record *r = (struct zfcp_dbf_scsi_record *)in_buf;
949
	struct timespec t;
950
	char *p = out_buf;
951

952
	if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0)
953 954
		return 0;

955 956
	zfcp_dbf_tag(&p, "tag", r->tag);
	zfcp_dbf_tag(&p, "tag2", r->tag2);
957 958 959 960 961
	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);
962 963
	zfcp_dbf_outd(&p, "scsi_opcode", r->scsi_opcode, ZFCP_DBF_SCSI_OPCODE,
		      0, ZFCP_DBF_SCSI_OPCODE);
964 965 966
	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)
967
		zfcp_dbf_out(&p, "old_fsf_reqid", "0x%0Lx", r->old_fsf_reqid);
968 969
	zfcp_dbf_out(&p, "fsf_reqid", "0x%0Lx", r->fsf_reqid);
	zfcp_dbf_out(&p, "fsf_seqno", "0x%08x", r->fsf_seqno);
970
	stck_to_timespec(r->fsf_issued, &t);
971 972 973
	zfcp_dbf_out(&p, "fsf_issued", "%011lu:%06lu", t.tv_sec, t.tv_nsec);

	if (strncmp(r->tag, "rslt", ZFCP_DBF_TAG_SIZE) == 0) {
974 975 976 977 978 979 980 981
		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,
982
			      ZFCP_DBF_SCSI_FCP_SNS_INFO), 0,
983
			      r->sns_info_len);
984
	}
985 986
	p += sprintf(p, "\n");
	return p - out_buf;
987 988
}

S
Swen Schillig 已提交
989 990 991 992
static struct debug_view zfcp_dbf_scsi_view = {
	.name = "structured",
	.header_proc = zfcp_dbf_view_header,
	.format_proc = zfcp_dbf_scsi_view_format,
993 994
};

995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
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;
}

1011 1012 1013 1014 1015
/**
 * 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 已提交
1016
int zfcp_dbf_adapter_register(struct zfcp_adapter *adapter)
1017 1018
{
	char dbf_name[DEBUG_MAX_NAME_LEN];
1019 1020 1021 1022 1023 1024
	struct zfcp_dbf *dbf;

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

S
Swen Schillig 已提交
1025 1026 1027 1028 1029 1030
	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);
1031

1032
	/* debug feature area which records recovery activity */
C
Christof Schmitt 已提交
1033
	sprintf(dbf_name, "zfcp_%s_rec", dev_name(&adapter->ccw_device->dev));
S
Swen Schillig 已提交
1034 1035 1036 1037
	dbf->rec = zfcp_dbf_reg(dbf_name, 3, &zfcp_dbf_rec_view,
				sizeof(struct zfcp_dbf_rec_record));
	if (!dbf->rec)
		goto err_out;
1038

1039
	/* debug feature area which records HBA (FSF and QDIO) conditions */
C
Christof Schmitt 已提交
1040
	sprintf(dbf_name, "zfcp_%s_hba", dev_name(&adapter->ccw_device->dev));
S
Swen Schillig 已提交
1041 1042 1043 1044
	dbf->hba = zfcp_dbf_reg(dbf_name, 3, &zfcp_dbf_hba_view,
				sizeof(struct zfcp_dbf_hba_record));
	if (!dbf->hba)
		goto err_out;
1045 1046

	/* debug feature area which records SAN command failures and recovery */
C
Christof Schmitt 已提交
1047
	sprintf(dbf_name, "zfcp_%s_san", dev_name(&adapter->ccw_device->dev));
S
Swen Schillig 已提交
1048 1049 1050 1051
	dbf->san = zfcp_dbf_reg(dbf_name, 6, &zfcp_dbf_san_view,
				sizeof(struct zfcp_dbf_san_record));
	if (!dbf->san)
		goto err_out;
1052 1053

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

1060
	adapter->dbf = dbf;
1061 1062
	return 0;

S
Swen Schillig 已提交
1063 1064
err_out:
	zfcp_dbf_adapter_unregister(dbf);
1065 1066 1067 1068 1069
	return -ENOMEM;
}

/**
 * zfcp_adapter_debug_unregister - unregisters debug feature for an adapter
S
Swen Schillig 已提交
1070
 * @dbf: pointer to dbf for which debug features should be unregistered
1071
 */
S
Swen Schillig 已提交
1072
void zfcp_dbf_adapter_unregister(struct zfcp_dbf *dbf)
1073
{
1074 1075
	if (!dbf)
		return;
S
Swen Schillig 已提交
1076 1077 1078 1079 1080 1081
	debug_unregister(dbf->scsi);
	debug_unregister(dbf->san);
	debug_unregister(dbf->hba);
	debug_unregister(dbf->rec);
	dbf->adapter->dbf = NULL;
	kfree(dbf);
1082
}
S
Swen Schillig 已提交
1083