blob: 967e7b70e9779d7c26c58cbe65dd2329c358e0a1 [file] [log] [blame]
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001/*
Christof Schmitt553448f2008-06-10 18:20:58 +02002 * zfcp device driver
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02003 *
Christof Schmitt553448f2008-06-10 18:20:58 +02004 * Debug traces for zfcp.
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02005 *
Swen Schillig250a1352010-12-02 15:16:15 +01006 * Copyright IBM Corporation 2002, 2010
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02007 */
8
Christof Schmittecf39d42008-12-25 13:39:53 +01009#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020012#include <linux/ctype.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Heiko Carstens364c8552007-10-12 16:11:35 +020014#include <asm/debug.h>
Christof Schmittd46f3842009-08-18 15:43:07 +020015#include "zfcp_dbf.h"
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020016#include "zfcp_ext.h"
Christof Schmittbd0072e2009-11-24 16:54:11 +010017#include "zfcp_fc.h"
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020018
19static u32 dbfsize = 4;
20
21module_param(dbfsize, uint, 0400);
22MODULE_PARM_DESC(dbfsize,
23 "number of pages for each debug feature area (default 4)");
24
Swen Schilliga54ca0f2010-12-02 15:16:14 +010025static inline unsigned int zfcp_dbf_plen(unsigned int offset)
Martin Peschkec15450e2008-03-27 14:21:55 +010026{
Swen Schilliga54ca0f2010-12-02 15:16:14 +010027 return sizeof(struct zfcp_dbf_pay) + offset - ZFCP_DBF_PAY_MAX_REC;
28}
Martin Peschkec15450e2008-03-27 14:21:55 +010029
Swen Schilliga54ca0f2010-12-02 15:16:14 +010030static inline
31void zfcp_dbf_pl_write(struct zfcp_dbf *dbf, void *data, u16 length, char *area,
32 u64 req_id)
33{
34 struct zfcp_dbf_pay *pl = &dbf->pay_buf;
35 u16 offset = 0, rec_length;
36
37 spin_lock(&dbf->pay_lock);
38 memset(pl, 0, sizeof(*pl));
39 pl->fsf_req_id = req_id;
40 memcpy(pl->area, area, ZFCP_DBF_TAG_LEN);
41
42 while (offset < length) {
43 rec_length = min((u16) ZFCP_DBF_PAY_MAX_REC,
44 (u16) (length - offset));
45 memcpy(pl->data, data + offset, rec_length);
46 debug_event(dbf->pay, 1, pl, zfcp_dbf_plen(rec_length));
47
48 offset += rec_length;
49 pl->counter++;
Martin Peschkec15450e2008-03-27 14:21:55 +010050 }
Swen Schilliga54ca0f2010-12-02 15:16:14 +010051
52 spin_unlock(&dbf->pay_lock);
Martin Peschkec15450e2008-03-27 14:21:55 +010053}
54
Swen Schilliga54ca0f2010-12-02 15:16:14 +010055/**
56 * zfcp_dbf_hba_fsf_res - trace event for fsf responses
57 * @tag: tag indicating which kind of unsolicited status has been received
58 * @req: request for which a response was received
59 */
60void zfcp_dbf_hba_fsf_res(char *tag, struct zfcp_fsf_req *req)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020061{
Swen Schilliga54ca0f2010-12-02 15:16:14 +010062 struct zfcp_dbf *dbf = req->adapter->dbf;
63 struct fsf_qtcb_prefix *q_pref = &req->qtcb->prefix;
64 struct fsf_qtcb_header *q_head = &req->qtcb->header;
65 struct zfcp_dbf_hba *rec = &dbf->hba_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020066 unsigned long flags;
67
Swen Schillig57717102009-08-18 15:43:21 +020068 spin_lock_irqsave(&dbf->hba_lock, flags);
Martin Peschke6bc473d2008-03-31 11:15:29 +020069 memset(rec, 0, sizeof(*rec));
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020070
Swen Schilliga54ca0f2010-12-02 15:16:14 +010071 memcpy(rec->tag, tag, ZFCP_DBF_TAG_LEN);
72 rec->id = ZFCP_DBF_HBA_RES;
73 rec->fsf_req_id = req->req_id;
74 rec->fsf_req_status = req->status;
75 rec->fsf_cmd = req->fsf_command;
76 rec->fsf_seq_no = req->seq_no;
77 rec->u.res.req_issued = req->issued;
78 rec->u.res.prot_status = q_pref->prot_status;
79 rec->u.res.fsf_status = q_head->fsf_status;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020080
Swen Schilliga54ca0f2010-12-02 15:16:14 +010081 memcpy(rec->u.res.prot_status_qual, &q_pref->prot_status_qual,
82 FSF_PROT_STATUS_QUAL_SIZE);
83 memcpy(rec->u.res.fsf_status_qual, &q_head->fsf_status_qual,
84 FSF_STATUS_QUALIFIER_SIZE);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020085
Swen Schilliga54ca0f2010-12-02 15:16:14 +010086 if (req->fsf_command != FSF_QTCB_FCP_CMND) {
87 rec->pl_len = q_head->log_length;
88 zfcp_dbf_pl_write(dbf, (char *)q_pref + q_head->log_start,
89 rec->pl_len, "fsf_res", req->req_id);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020090 }
91
Swen Schilliga54ca0f2010-12-02 15:16:14 +010092 debug_event(dbf->hba, 1, rec, sizeof(*rec));
Swen Schillig57717102009-08-18 15:43:21 +020093 spin_unlock_irqrestore(&dbf->hba_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020094}
95
Swen Schilliga54ca0f2010-12-02 15:16:14 +010096/**
97 * zfcp_dbf_hba_fsf_uss - trace event for an unsolicited status buffer
98 * @tag: tag indicating which kind of unsolicited status has been received
99 * @req: request providing the unsolicited status
100 */
101void zfcp_dbf_hba_fsf_uss(char *tag, struct zfcp_fsf_req *req)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200102{
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100103 struct zfcp_dbf *dbf = req->adapter->dbf;
104 struct fsf_status_read_buffer *srb = req->data;
105 struct zfcp_dbf_hba *rec = &dbf->hba_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200106 unsigned long flags;
107
Swen Schillig57717102009-08-18 15:43:21 +0200108 spin_lock_irqsave(&dbf->hba_lock, flags);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200109 memset(rec, 0, sizeof(*rec));
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200110
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100111 memcpy(rec->tag, tag, ZFCP_DBF_TAG_LEN);
112 rec->id = ZFCP_DBF_HBA_USS;
113 rec->fsf_req_id = req->req_id;
114 rec->fsf_req_status = req->status;
115 rec->fsf_cmd = req->fsf_command;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200116
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100117 if (!srb)
118 goto log;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200119
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100120 rec->u.uss.status_type = srb->status_type;
121 rec->u.uss.status_subtype = srb->status_subtype;
122 rec->u.uss.d_id = ntoh24(srb->d_id);
123 rec->u.uss.lun = srb->fcp_lun;
124 memcpy(&rec->u.uss.queue_designator, &srb->queue_designator,
125 sizeof(rec->u.uss.queue_designator));
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200126
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100127 /* status read buffer payload length */
128 rec->pl_len = (!srb->length) ? 0 : srb->length -
129 offsetof(struct fsf_status_read_buffer, payload);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200130
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100131 if (rec->pl_len)
132 zfcp_dbf_pl_write(dbf, srb->payload.data, rec->pl_len,
133 "fsf_uss", req->req_id);
134log:
135 debug_event(dbf->hba, 2, rec, sizeof(*rec));
Swen Schillig57717102009-08-18 15:43:21 +0200136 spin_unlock_irqrestore(&dbf->hba_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200137}
138
Martin Peschkebfab1632008-03-31 11:15:31 +0200139/**
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100140 * zfcp_dbf_hba_bit_err - trace event for bit error conditions
141 * @tag: tag indicating which kind of unsolicited status has been received
142 * @req: request which caused the bit_error condition
Martin Peschkebfab1632008-03-31 11:15:31 +0200143 */
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100144void zfcp_dbf_hba_bit_err(char *tag, struct zfcp_fsf_req *req)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200145{
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100146 struct zfcp_dbf *dbf = req->adapter->dbf;
147 struct zfcp_dbf_hba *rec = &dbf->hba_buf;
Swen Schillig57069382008-10-01 12:42:21 +0200148 struct fsf_status_read_buffer *sr_buf = req->data;
Swen Schillig57069382008-10-01 12:42:21 +0200149 unsigned long flags;
150
Swen Schillig57717102009-08-18 15:43:21 +0200151 spin_lock_irqsave(&dbf->hba_lock, flags);
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100152 memset(rec, 0, sizeof(*rec));
153
154 memcpy(rec->tag, tag, ZFCP_DBF_TAG_LEN);
155 rec->id = ZFCP_DBF_HBA_BIT;
156 rec->fsf_req_id = req->req_id;
157 rec->fsf_req_status = req->status;
158 rec->fsf_cmd = req->fsf_command;
159 memcpy(&rec->u.be, &sr_buf->payload.bit_error,
160 sizeof(struct fsf_bit_error_payload));
161
162 debug_event(dbf->hba, 1, rec, sizeof(*rec));
Swen Schillig57717102009-08-18 15:43:21 +0200163 spin_unlock_irqrestore(&dbf->hba_lock, flags);
Swen Schillig57069382008-10-01 12:42:21 +0200164}
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200165
Swen Schillig86a96682011-08-15 14:40:32 +0200166/**
167 * zfcp_dbf_hba_def_err - trace event for deferred error messages
168 * @adapter: pointer to struct zfcp_adapter
169 * @req_id: request id which caused the deferred error message
170 * @scount: number of sbals incl. the signaling sbal
171 * @pl: array of all involved sbals
172 */
173void zfcp_dbf_hba_def_err(struct zfcp_adapter *adapter, u64 req_id, u16 scount,
174 void **pl)
175{
176 struct zfcp_dbf *dbf = adapter->dbf;
177 struct zfcp_dbf_pay *payload = &dbf->pay_buf;
178 unsigned long flags;
179 u16 length;
180
181 if (!pl)
182 return;
183
184 spin_lock_irqsave(&dbf->pay_lock, flags);
185 memset(payload, 0, sizeof(*payload));
186
187 memcpy(payload->area, "def_err", 7);
188 payload->fsf_req_id = req_id;
189 payload->counter = 0;
190 length = min((u16)sizeof(struct qdio_buffer),
191 (u16)ZFCP_DBF_PAY_MAX_REC);
192
193 while ((char *)pl[payload->counter] && payload->counter < scount) {
194 memcpy(payload->data, (char *)pl[payload->counter], length);
195 debug_event(dbf->pay, 1, payload, zfcp_dbf_plen(length));
196 payload->counter++;
197 }
198
199 spin_unlock_irqrestore(&dbf->pay_lock, flags);
200}
201
Swen Schilligae0904f2010-12-02 15:16:12 +0100202static void zfcp_dbf_set_common(struct zfcp_dbf_rec *rec,
203 struct zfcp_adapter *adapter,
204 struct zfcp_port *port,
205 struct scsi_device *sdev)
Martin Peschked79a83d2008-03-27 14:22:00 +0100206{
Swen Schilligae0904f2010-12-02 15:16:12 +0100207 rec->adapter_status = atomic_read(&adapter->status);
208 if (port) {
209 rec->port_status = atomic_read(&port->status);
210 rec->wwpn = port->wwpn;
211 rec->d_id = port->d_id;
Martin Peschked79a83d2008-03-27 14:22:00 +0100212 }
Swen Schilligae0904f2010-12-02 15:16:12 +0100213 if (sdev) {
214 rec->lun_status = atomic_read(&sdev_to_zfcp(sdev)->status);
215 rec->lun = zfcp_scsi_dev_lun(sdev);
216 }
Martin Peschke348447e2008-03-27 14:22:01 +0100217}
218
Christof Schmittaa0fec62008-05-19 12:17:47 +0200219/**
Swen Schilligae0904f2010-12-02 15:16:12 +0100220 * zfcp_dbf_rec_trig - trace event related to triggered recovery
221 * @tag: identifier for event
222 * @adapter: adapter on which the erp_action should run
223 * @port: remote port involved in the erp_action
224 * @sdev: scsi device involved in the erp_action
225 * @want: wanted erp_action
226 * @need: required erp_action
227 *
228 * The adapter->erp_lock has to be held.
Christof Schmittaa0fec62008-05-19 12:17:47 +0200229 */
Swen Schilligae0904f2010-12-02 15:16:12 +0100230void zfcp_dbf_rec_trig(char *tag, struct zfcp_adapter *adapter,
231 struct zfcp_port *port, struct scsi_device *sdev,
232 u8 want, u8 need)
Martin Peschke9467a9b2008-03-27 14:22:03 +0100233{
Christof Schmittd46f3842009-08-18 15:43:07 +0200234 struct zfcp_dbf *dbf = adapter->dbf;
Swen Schilligae0904f2010-12-02 15:16:12 +0100235 struct zfcp_dbf_rec *rec = &dbf->rec_buf;
236 struct list_head *entry;
Martin Peschke9467a9b2008-03-27 14:22:03 +0100237 unsigned long flags;
238
Swen Schillig57717102009-08-18 15:43:21 +0200239 spin_lock_irqsave(&dbf->rec_lock, flags);
Swen Schilligae0904f2010-12-02 15:16:12 +0100240 memset(rec, 0, sizeof(*rec));
241
242 rec->id = ZFCP_DBF_REC_TRIG;
243 memcpy(rec->tag, tag, ZFCP_DBF_TAG_LEN);
244 zfcp_dbf_set_common(rec, adapter, port, sdev);
245
246 list_for_each(entry, &adapter->erp_ready_head)
247 rec->u.trig.ready++;
248
249 list_for_each(entry, &adapter->erp_running_head)
250 rec->u.trig.running++;
251
252 rec->u.trig.want = want;
253 rec->u.trig.need = need;
254
255 debug_event(dbf->rec, 1, rec, sizeof(*rec));
Swen Schillig57717102009-08-18 15:43:21 +0200256 spin_unlock_irqrestore(&dbf->rec_lock, flags);
Martin Peschke9467a9b2008-03-27 14:22:03 +0100257}
258
Swen Schilligae0904f2010-12-02 15:16:12 +0100259
Martin Peschke6f4f3652008-03-27 14:22:04 +0100260/**
Swen Schilligae0904f2010-12-02 15:16:12 +0100261 * zfcp_dbf_rec_run - trace event related to running recovery
262 * @tag: identifier for event
263 * @erp: erp_action running
Martin Peschke6f4f3652008-03-27 14:22:04 +0100264 */
Swen Schilligae0904f2010-12-02 15:16:12 +0100265void zfcp_dbf_rec_run(char *tag, struct zfcp_erp_action *erp)
Martin Peschke6f4f3652008-03-27 14:22:04 +0100266{
Swen Schilligae0904f2010-12-02 15:16:12 +0100267 struct zfcp_dbf *dbf = erp->adapter->dbf;
268 struct zfcp_dbf_rec *rec = &dbf->rec_buf;
Martin Peschke6f4f3652008-03-27 14:22:04 +0100269 unsigned long flags;
270
Swen Schillig57717102009-08-18 15:43:21 +0200271 spin_lock_irqsave(&dbf->rec_lock, flags);
Swen Schilligae0904f2010-12-02 15:16:12 +0100272 memset(rec, 0, sizeof(*rec));
273
274 rec->id = ZFCP_DBF_REC_RUN;
275 memcpy(rec->tag, tag, ZFCP_DBF_TAG_LEN);
276 zfcp_dbf_set_common(rec, erp->adapter, erp->port, erp->sdev);
277
278 rec->u.run.fsf_req_id = erp->fsf_req_id;
279 rec->u.run.rec_status = erp->status;
280 rec->u.run.rec_step = erp->step;
281 rec->u.run.rec_action = erp->action;
282
283 if (erp->sdev)
284 rec->u.run.rec_count =
285 atomic_read(&sdev_to_zfcp(erp->sdev)->erp_counter);
286 else if (erp->port)
287 rec->u.run.rec_count = atomic_read(&erp->port->erp_counter);
288 else
289 rec->u.run.rec_count = atomic_read(&erp->adapter->erp_counter);
290
291 debug_event(dbf->rec, 1, rec, sizeof(*rec));
Swen Schillig57717102009-08-18 15:43:21 +0200292 spin_unlock_irqrestore(&dbf->rec_lock, flags);
Martin Peschke6f4f3652008-03-27 14:22:04 +0100293}
294
Swen Schillig2c55b752010-12-02 15:16:13 +0100295static inline
296void zfcp_dbf_san(char *tag, struct zfcp_dbf *dbf, void *data, u8 id, u16 len,
297 u64 req_id, u32 d_id)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200298{
Swen Schillig2c55b752010-12-02 15:16:13 +0100299 struct zfcp_dbf_san *rec = &dbf->san_buf;
300 u16 rec_len;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200301 unsigned long flags;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200302
Swen Schillig57717102009-08-18 15:43:21 +0200303 spin_lock_irqsave(&dbf->san_lock, flags);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200304 memset(rec, 0, sizeof(*rec));
Swen Schillig2c55b752010-12-02 15:16:13 +0100305
306 rec->id = id;
307 rec->fsf_req_id = req_id;
308 rec->d_id = d_id;
309 rec_len = min(len, (u16)ZFCP_DBF_SAN_MAX_PAYLOAD);
310 memcpy(rec->payload, data, rec_len);
311 memcpy(rec->tag, tag, ZFCP_DBF_TAG_LEN);
312
313 debug_event(dbf->san, 1, rec, sizeof(*rec));
Swen Schillig57717102009-08-18 15:43:21 +0200314 spin_unlock_irqrestore(&dbf->san_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200315}
316
Martin Peschkebfab1632008-03-31 11:15:31 +0200317/**
Swen Schillig2c55b752010-12-02 15:16:13 +0100318 * zfcp_dbf_san_req - trace event for issued SAN request
319 * @tag: indentifier for event
320 * @fsf_req: request containing issued CT data
321 * d_id: destination ID
Martin Peschkebfab1632008-03-31 11:15:31 +0200322 */
Swen Schillig2c55b752010-12-02 15:16:13 +0100323void zfcp_dbf_san_req(char *tag, struct zfcp_fsf_req *fsf, u32 d_id)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200324{
Swen Schillig2c55b752010-12-02 15:16:13 +0100325 struct zfcp_dbf *dbf = fsf->adapter->dbf;
326 struct zfcp_fsf_ct_els *ct_els = fsf->data;
327 u16 length;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200328
Swen Schillig2c55b752010-12-02 15:16:13 +0100329 length = (u16)(ct_els->req->length + FC_CT_HDR_LEN);
330 zfcp_dbf_san(tag, dbf, sg_virt(ct_els->req), ZFCP_DBF_SAN_REQ, length,
331 fsf->req_id, d_id);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200332}
333
Martin Peschkebfab1632008-03-31 11:15:31 +0200334/**
Swen Schillig2c55b752010-12-02 15:16:13 +0100335 * zfcp_dbf_san_res - trace event for received SAN request
336 * @tag: indentifier for event
337 * @fsf_req: request containing issued CT data
Martin Peschkebfab1632008-03-31 11:15:31 +0200338 */
Swen Schillig2c55b752010-12-02 15:16:13 +0100339void zfcp_dbf_san_res(char *tag, struct zfcp_fsf_req *fsf)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200340{
Swen Schillig2c55b752010-12-02 15:16:13 +0100341 struct zfcp_dbf *dbf = fsf->adapter->dbf;
342 struct zfcp_fsf_ct_els *ct_els = fsf->data;
343 u16 length;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200344
Swen Schillig2c55b752010-12-02 15:16:13 +0100345 length = (u16)(ct_els->resp->length + FC_CT_HDR_LEN);
346 zfcp_dbf_san(tag, dbf, sg_virt(ct_els->resp), ZFCP_DBF_SAN_RES, length,
347 fsf->req_id, 0);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200348}
349
Martin Peschkebfab1632008-03-31 11:15:31 +0200350/**
Swen Schillig2c55b752010-12-02 15:16:13 +0100351 * zfcp_dbf_san_in_els - trace event for incoming ELS
352 * @tag: indentifier for event
353 * @fsf_req: request containing issued CT data
Martin Peschkebfab1632008-03-31 11:15:31 +0200354 */
Swen Schillig2c55b752010-12-02 15:16:13 +0100355void zfcp_dbf_san_in_els(char *tag, struct zfcp_fsf_req *fsf)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200356{
Swen Schillig2c55b752010-12-02 15:16:13 +0100357 struct zfcp_dbf *dbf = fsf->adapter->dbf;
358 struct fsf_status_read_buffer *srb =
359 (struct fsf_status_read_buffer *) fsf->data;
360 u16 length;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200361
Swen Schillig2c55b752010-12-02 15:16:13 +0100362 length = (u16)(srb->length -
363 offsetof(struct fsf_status_read_buffer, payload));
364 zfcp_dbf_san(tag, dbf, srb->payload.data, ZFCP_DBF_SAN_ELS, length,
365 fsf->req_id, ntoh24(srb->d_id));
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200366}
367
Swen Schillig250a1352010-12-02 15:16:15 +0100368/**
369 * zfcp_dbf_scsi - trace event for scsi commands
370 * @tag: identifier for event
371 * @sc: pointer to struct scsi_cmnd
372 * @fsf: pointer to struct zfcp_fsf_req
373 */
374void zfcp_dbf_scsi(char *tag, struct scsi_cmnd *sc, struct zfcp_fsf_req *fsf)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200375{
Swen Schillig250a1352010-12-02 15:16:15 +0100376 struct zfcp_adapter *adapter =
377 (struct zfcp_adapter *) sc->device->host->hostdata[0];
378 struct zfcp_dbf *dbf = adapter->dbf;
379 struct zfcp_dbf_scsi *rec = &dbf->scsi_buf;
Christof Schmitt4318e082009-11-24 16:54:08 +0100380 struct fcp_resp_with_ext *fcp_rsp;
Swen Schillig250a1352010-12-02 15:16:15 +0100381 struct fcp_resp_rsp_info *fcp_rsp_info;
382 unsigned long flags;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200383
Swen Schillig57717102009-08-18 15:43:21 +0200384 spin_lock_irqsave(&dbf->scsi_lock, flags);
Swen Schillig250a1352010-12-02 15:16:15 +0100385 memset(rec, 0, sizeof(*rec));
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200386
Swen Schillig250a1352010-12-02 15:16:15 +0100387 memcpy(rec->tag, tag, ZFCP_DBF_TAG_LEN);
388 rec->id = ZFCP_DBF_SCSI_CMND;
389 rec->scsi_result = sc->result;
390 rec->scsi_retries = sc->retries;
391 rec->scsi_allowed = sc->allowed;
392 rec->scsi_id = sc->device->id;
393 rec->scsi_lun = sc->device->lun;
394 rec->host_scribble = (unsigned long)sc->host_scribble;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200395
Swen Schillig250a1352010-12-02 15:16:15 +0100396 memcpy(rec->scsi_opcode, sc->cmnd,
397 min((int)sc->cmd_len, ZFCP_DBF_SCSI_OPCODE));
398
399 if (fsf) {
400 rec->fsf_req_id = fsf->req_id;
401 fcp_rsp = (struct fcp_resp_with_ext *)
402 &(fsf->qtcb->bottom.io.fcp_rsp);
403 memcpy(&rec->fcp_rsp, fcp_rsp, FCP_RESP_WITH_EXT);
404 if (fcp_rsp->resp.fr_flags & FCP_RSP_LEN_VAL) {
405 fcp_rsp_info = (struct fcp_resp_rsp_info *) &fcp_rsp[1];
406 rec->fcp_rsp_info = fcp_rsp_info->rsp_code;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200407 }
Swen Schillig250a1352010-12-02 15:16:15 +0100408 if (fcp_rsp->resp.fr_flags & FCP_SNS_LEN_VAL) {
409 rec->pl_len = min((u16)SCSI_SENSE_BUFFERSIZE,
410 (u16)ZFCP_DBF_PAY_MAX_REC);
411 zfcp_dbf_pl_write(dbf, sc->sense_buffer, rec->pl_len,
412 "fcp_sns", fsf->req_id);
413 }
414 }
415
Swen Schilligea4a3a62010-12-02 15:16:16 +0100416 debug_event(dbf->scsi, 1, rec, sizeof(*rec));
Swen Schillig57717102009-08-18 15:43:21 +0200417 spin_unlock_irqrestore(&dbf->scsi_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200418}
419
Swen Schilligea4a3a62010-12-02 15:16:16 +0100420static debug_info_t *zfcp_dbf_reg(const char *name, int size, int rec_size)
Christof Schmittd46f3842009-08-18 15:43:07 +0200421{
422 struct debug_info *d;
423
Swen Schilligea4a3a62010-12-02 15:16:16 +0100424 d = debug_register(name, size, 1, rec_size);
Christof Schmittd46f3842009-08-18 15:43:07 +0200425 if (!d)
426 return NULL;
427
428 debug_register_view(d, &debug_hex_ascii_view);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100429 debug_set_level(d, 3);
Christof Schmittd46f3842009-08-18 15:43:07 +0200430
431 return d;
432}
433
Swen Schilligea4a3a62010-12-02 15:16:16 +0100434static void zfcp_dbf_unregister(struct zfcp_dbf *dbf)
435{
436 if (!dbf)
437 return;
438
439 debug_unregister(dbf->scsi);
440 debug_unregister(dbf->san);
441 debug_unregister(dbf->hba);
442 debug_unregister(dbf->pay);
443 debug_unregister(dbf->rec);
444 kfree(dbf);
445}
446
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200447/**
448 * zfcp_adapter_debug_register - registers debug feature for an adapter
449 * @adapter: pointer to adapter for which debug features should be registered
450 * return: -ENOMEM on error, 0 otherwise
451 */
Swen Schillig57717102009-08-18 15:43:21 +0200452int zfcp_dbf_adapter_register(struct zfcp_adapter *adapter)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200453{
Swen Schilligea4a3a62010-12-02 15:16:16 +0100454 char name[DEBUG_MAX_NAME_LEN];
Christof Schmittd46f3842009-08-18 15:43:07 +0200455 struct zfcp_dbf *dbf;
456
Swen Schilligd23948e2010-07-16 15:37:40 +0200457 dbf = kzalloc(sizeof(struct zfcp_dbf), GFP_KERNEL);
Christof Schmittd46f3842009-08-18 15:43:07 +0200458 if (!dbf)
459 return -ENOMEM;
460
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100461 spin_lock_init(&dbf->pay_lock);
Swen Schillig57717102009-08-18 15:43:21 +0200462 spin_lock_init(&dbf->hba_lock);
463 spin_lock_init(&dbf->san_lock);
464 spin_lock_init(&dbf->scsi_lock);
465 spin_lock_init(&dbf->rec_lock);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200466
467 /* debug feature area which records recovery activity */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100468 sprintf(name, "zfcp_%s_rec", dev_name(&adapter->ccw_device->dev));
469 dbf->rec = zfcp_dbf_reg(name, dbfsize, sizeof(struct zfcp_dbf_rec));
Swen Schillig57717102009-08-18 15:43:21 +0200470 if (!dbf->rec)
471 goto err_out;
Martin Peschked79a83d2008-03-27 14:22:00 +0100472
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200473 /* debug feature area which records HBA (FSF and QDIO) conditions */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100474 sprintf(name, "zfcp_%s_hba", dev_name(&adapter->ccw_device->dev));
475 dbf->hba = zfcp_dbf_reg(name, dbfsize, sizeof(struct zfcp_dbf_hba));
Swen Schillig57717102009-08-18 15:43:21 +0200476 if (!dbf->hba)
477 goto err_out;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200478
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100479 /* debug feature area which records payload info */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100480 sprintf(name, "zfcp_%s_pay", dev_name(&adapter->ccw_device->dev));
481 dbf->pay = zfcp_dbf_reg(name, dbfsize * 2, sizeof(struct zfcp_dbf_pay));
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100482 if (!dbf->pay)
483 goto err_out;
484
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200485 /* debug feature area which records SAN command failures and recovery */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100486 sprintf(name, "zfcp_%s_san", dev_name(&adapter->ccw_device->dev));
487 dbf->san = zfcp_dbf_reg(name, dbfsize, sizeof(struct zfcp_dbf_san));
Swen Schillig57717102009-08-18 15:43:21 +0200488 if (!dbf->san)
489 goto err_out;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200490
491 /* debug feature area which records SCSI command failures and recovery */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100492 sprintf(name, "zfcp_%s_scsi", dev_name(&adapter->ccw_device->dev));
493 dbf->scsi = zfcp_dbf_reg(name, dbfsize, sizeof(struct zfcp_dbf_scsi));
Swen Schillig57717102009-08-18 15:43:21 +0200494 if (!dbf->scsi)
495 goto err_out;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200496
Christof Schmittd46f3842009-08-18 15:43:07 +0200497 adapter->dbf = dbf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200498
Swen Schilligea4a3a62010-12-02 15:16:16 +0100499 return 0;
Swen Schillig57717102009-08-18 15:43:21 +0200500err_out:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100501 zfcp_dbf_unregister(dbf);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200502 return -ENOMEM;
503}
504
505/**
506 * zfcp_adapter_debug_unregister - unregisters debug feature for an adapter
Swen Schilligea4a3a62010-12-02 15:16:16 +0100507 * @adapter: pointer to adapter for which debug features should be unregistered
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200508 */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100509void zfcp_dbf_adapter_unregister(struct zfcp_adapter *adapter)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200510{
Swen Schilligea4a3a62010-12-02 15:16:16 +0100511 struct zfcp_dbf *dbf = adapter->dbf;
512
513 adapter->dbf = NULL;
514 zfcp_dbf_unregister(dbf);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200515}
Swen Schillig57717102009-08-18 15:43:21 +0200516