diff options
author | Mike Christie <michaelc@cs.wisc.edu> | 2009-03-05 15:46:00 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-03-13 16:27:50 -0400 |
commit | c93f87c727ad4e6a5d94cfab219b1492ccc5ca5e (patch) | |
tree | 4c3932b0a9fef865cbffb791fc6e9097111f0caa /drivers/scsi/iscsi_tcp.c | |
parent | 0ab1c2529e6a70e1b3c63fe9c6b41d4049758a8e (diff) |
[SCSI] iscsi_tcp: replace scsi_debug/tcp_debug logging with iscsi conn logging
This makes the logging a compile time option and replaces
the tcp_debug macro with a iscsi connection one that prints
out a driver model id prefix.
Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/iscsi_tcp.c')
-rw-r--r-- | drivers/scsi/iscsi_tcp.c | 57 |
1 files changed, 34 insertions, 23 deletions
diff --git a/drivers/scsi/iscsi_tcp.c b/drivers/scsi/iscsi_tcp.c index 5a08ca48fb3a..9c2e52792bdc 100644 --- a/drivers/scsi/iscsi_tcp.c +++ b/drivers/scsi/iscsi_tcp.c | |||
@@ -48,13 +48,6 @@ MODULE_AUTHOR("Mike Christie <michaelc@cs.wisc.edu>, " | |||
48 | "Alex Aizman <itn780@yahoo.com>"); | 48 | "Alex Aizman <itn780@yahoo.com>"); |
49 | MODULE_DESCRIPTION("iSCSI/TCP data-path"); | 49 | MODULE_DESCRIPTION("iSCSI/TCP data-path"); |
50 | MODULE_LICENSE("GPL"); | 50 | MODULE_LICENSE("GPL"); |
51 | #undef DEBUG_TCP | ||
52 | |||
53 | #ifdef DEBUG_TCP | ||
54 | #define debug_tcp(fmt...) printk(KERN_INFO "tcp: " fmt) | ||
55 | #else | ||
56 | #define debug_tcp(fmt...) | ||
57 | #endif | ||
58 | 51 | ||
59 | static struct scsi_transport_template *iscsi_sw_tcp_scsi_transport; | 52 | static struct scsi_transport_template *iscsi_sw_tcp_scsi_transport; |
60 | static struct scsi_host_template iscsi_sw_tcp_sht; | 53 | static struct scsi_host_template iscsi_sw_tcp_sht; |
@@ -63,6 +56,21 @@ static struct iscsi_transport iscsi_sw_tcp_transport; | |||
63 | static unsigned int iscsi_max_lun = 512; | 56 | static unsigned int iscsi_max_lun = 512; |
64 | module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO); | 57 | module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO); |
65 | 58 | ||
59 | static int iscsi_sw_tcp_dbg; | ||
60 | module_param_named(debug_iscsi_tcp, iscsi_sw_tcp_dbg, int, | ||
61 | S_IRUGO | S_IWUSR); | ||
62 | MODULE_PARM_DESC(debug_iscsi_tcp, "Turn on debugging for iscsi_tcp module " | ||
63 | "Set to 1 to turn on, and zero to turn off. Default is off."); | ||
64 | |||
65 | #define ISCSI_SW_TCP_DBG(_conn, dbg_fmt, arg...) \ | ||
66 | do { \ | ||
67 | if (iscsi_sw_tcp_dbg) \ | ||
68 | iscsi_conn_printk(KERN_INFO, _conn, \ | ||
69 | "%s " dbg_fmt, \ | ||
70 | __func__, ##arg); \ | ||
71 | } while (0); | ||
72 | |||
73 | |||
66 | /** | 74 | /** |
67 | * iscsi_sw_tcp_recv - TCP receive in sendfile fashion | 75 | * iscsi_sw_tcp_recv - TCP receive in sendfile fashion |
68 | * @rd_desc: read descriptor | 76 | * @rd_desc: read descriptor |
@@ -77,7 +85,7 @@ static int iscsi_sw_tcp_recv(read_descriptor_t *rd_desc, struct sk_buff *skb, | |||
77 | unsigned int consumed, total_consumed = 0; | 85 | unsigned int consumed, total_consumed = 0; |
78 | int status; | 86 | int status; |
79 | 87 | ||
80 | debug_tcp("in %d bytes\n", skb->len - offset); | 88 | ISCSI_SW_TCP_DBG(conn, "in %d bytes\n", skb->len - offset); |
81 | 89 | ||
82 | do { | 90 | do { |
83 | status = 0; | 91 | status = 0; |
@@ -86,7 +94,8 @@ static int iscsi_sw_tcp_recv(read_descriptor_t *rd_desc, struct sk_buff *skb, | |||
86 | total_consumed += consumed; | 94 | total_consumed += consumed; |
87 | } while (consumed != 0 && status != ISCSI_TCP_SKB_DONE); | 95 | } while (consumed != 0 && status != ISCSI_TCP_SKB_DONE); |
88 | 96 | ||
89 | debug_tcp("read %d bytes status %d\n", skb->len - offset, status); | 97 | ISCSI_SW_TCP_DBG(conn, "read %d bytes status %d\n", |
98 | skb->len - offset, status); | ||
90 | return total_consumed; | 99 | return total_consumed; |
91 | } | 100 | } |
92 | 101 | ||
@@ -131,7 +140,8 @@ static void iscsi_sw_tcp_state_change(struct sock *sk) | |||
131 | if ((sk->sk_state == TCP_CLOSE_WAIT || | 140 | if ((sk->sk_state == TCP_CLOSE_WAIT || |
132 | sk->sk_state == TCP_CLOSE) && | 141 | sk->sk_state == TCP_CLOSE) && |
133 | !atomic_read(&sk->sk_rmem_alloc)) { | 142 | !atomic_read(&sk->sk_rmem_alloc)) { |
134 | debug_tcp("iscsi_tcp_state_change: TCP_CLOSE|TCP_CLOSE_WAIT\n"); | 143 | ISCSI_SW_TCP_DBG(conn, "iscsi_tcp_state_change: " |
144 | "TCP_CLOSE|TCP_CLOSE_WAIT\n"); | ||
135 | iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED); | 145 | iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED); |
136 | } | 146 | } |
137 | 147 | ||
@@ -155,7 +165,7 @@ static void iscsi_sw_tcp_write_space(struct sock *sk) | |||
155 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; | 165 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
156 | 166 | ||
157 | tcp_sw_conn->old_write_space(sk); | 167 | tcp_sw_conn->old_write_space(sk); |
158 | debug_tcp("iscsi_write_space: cid %d\n", conn->id); | 168 | ISCSI_SW_TCP_DBG(conn, "iscsi_write_space\n"); |
159 | scsi_queue_work(conn->session->host, &conn->xmitwork); | 169 | scsi_queue_work(conn->session->host, &conn->xmitwork); |
160 | } | 170 | } |
161 | 171 | ||
@@ -283,7 +293,7 @@ static int iscsi_sw_tcp_xmit(struct iscsi_conn *conn) | |||
283 | } | 293 | } |
284 | } | 294 | } |
285 | 295 | ||
286 | debug_tcp("xmit %d bytes\n", consumed); | 296 | ISCSI_SW_TCP_DBG(conn, "xmit %d bytes\n", consumed); |
287 | 297 | ||
288 | conn->txdata_octets += consumed; | 298 | conn->txdata_octets += consumed; |
289 | return consumed; | 299 | return consumed; |
@@ -291,7 +301,7 @@ static int iscsi_sw_tcp_xmit(struct iscsi_conn *conn) | |||
291 | error: | 301 | error: |
292 | /* Transmit error. We could initiate error recovery | 302 | /* Transmit error. We could initiate error recovery |
293 | * here. */ | 303 | * here. */ |
294 | debug_tcp("Error sending PDU, errno=%d\n", rc); | 304 | ISCSI_SW_TCP_DBG(conn, "Error sending PDU, errno=%d\n", rc); |
295 | iscsi_conn_failure(conn, rc); | 305 | iscsi_conn_failure(conn, rc); |
296 | return -EIO; | 306 | return -EIO; |
297 | } | 307 | } |
@@ -334,9 +344,10 @@ static int iscsi_sw_tcp_send_hdr_done(struct iscsi_tcp_conn *tcp_conn, | |||
334 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; | 344 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
335 | 345 | ||
336 | tcp_sw_conn->out.segment = tcp_sw_conn->out.data_segment; | 346 | tcp_sw_conn->out.segment = tcp_sw_conn->out.data_segment; |
337 | debug_tcp("Header done. Next segment size %u total_size %u\n", | 347 | ISCSI_SW_TCP_DBG(tcp_conn->iscsi_conn, |
338 | tcp_sw_conn->out.segment.size, | 348 | "Header done. Next segment size %u total_size %u\n", |
339 | tcp_sw_conn->out.segment.total_size); | 349 | tcp_sw_conn->out.segment.size, |
350 | tcp_sw_conn->out.segment.total_size); | ||
340 | return 0; | 351 | return 0; |
341 | } | 352 | } |
342 | 353 | ||
@@ -346,8 +357,8 @@ static void iscsi_sw_tcp_send_hdr_prep(struct iscsi_conn *conn, void *hdr, | |||
346 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; | 357 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
347 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; | 358 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
348 | 359 | ||
349 | debug_tcp("%s(%p%s)\n", __func__, tcp_conn, | 360 | ISCSI_SW_TCP_DBG(conn, "%s\n", conn->hdrdgst_en ? |
350 | conn->hdrdgst_en? ", digest enabled" : ""); | 361 | "digest enabled" : "digest disabled"); |
351 | 362 | ||
352 | /* Clear the data segment - needs to be filled in by the | 363 | /* Clear the data segment - needs to be filled in by the |
353 | * caller using iscsi_tcp_send_data_prep() */ | 364 | * caller using iscsi_tcp_send_data_prep() */ |
@@ -389,9 +400,9 @@ iscsi_sw_tcp_send_data_prep(struct iscsi_conn *conn, struct scatterlist *sg, | |||
389 | struct hash_desc *tx_hash = NULL; | 400 | struct hash_desc *tx_hash = NULL; |
390 | unsigned int hdr_spec_len; | 401 | unsigned int hdr_spec_len; |
391 | 402 | ||
392 | debug_tcp("%s(%p, offset=%d, datalen=%d%s)\n", __func__, | 403 | ISCSI_SW_TCP_DBG(conn, "offset=%d, datalen=%d %s\n", offset, len, |
393 | tcp_conn, offset, len, | 404 | conn->datadgst_en ? |
394 | conn->datadgst_en? ", digest enabled" : ""); | 405 | "digest enabled" : "digest disabled"); |
395 | 406 | ||
396 | /* Make sure the datalen matches what the caller | 407 | /* Make sure the datalen matches what the caller |
397 | said he would send. */ | 408 | said he would send. */ |
@@ -415,8 +426,8 @@ iscsi_sw_tcp_send_linear_data_prep(struct iscsi_conn *conn, void *data, | |||
415 | struct hash_desc *tx_hash = NULL; | 426 | struct hash_desc *tx_hash = NULL; |
416 | unsigned int hdr_spec_len; | 427 | unsigned int hdr_spec_len; |
417 | 428 | ||
418 | debug_tcp("%s(%p, datalen=%d%s)\n", __func__, tcp_conn, len, | 429 | ISCSI_SW_TCP_DBG(conn, "datalen=%zd %s\n", len, conn->datadgst_en ? |
419 | conn->datadgst_en? ", digest enabled" : ""); | 430 | "digest enabled" : "digest disabled"); |
420 | 431 | ||
421 | /* Make sure the datalen matches what the caller | 432 | /* Make sure the datalen matches what the caller |
422 | said he would send. */ | 433 | said he would send. */ |