aboutsummaryrefslogtreecommitdiffstats
path: root/net/9p/protocol.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/9p/protocol.c')
-rw-r--r--net/9p/protocol.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/net/9p/protocol.c b/net/9p/protocol.c
index 29be52439086..908e79faf48e 100644
--- a/net/9p/protocol.c
+++ b/net/9p/protocol.c
@@ -53,6 +53,7 @@
53static int 53static int
54p9pdu_writef(struct p9_fcall *pdu, int optional, const char *fmt, ...); 54p9pdu_writef(struct p9_fcall *pdu, int optional, const char *fmt, ...);
55 55
56#ifdef CONFIG_NET_9P_DEBUG
56void 57void
57p9pdu_dump(int way, struct p9_fcall *pdu) 58p9pdu_dump(int way, struct p9_fcall *pdu)
58{ 59{
@@ -81,6 +82,12 @@ p9pdu_dump(int way, struct p9_fcall *pdu)
81 else 82 else
82 P9_DPRINTK(P9_DEBUG_PKT, "]]](%d) %s\n", datalen, buf); 83 P9_DPRINTK(P9_DEBUG_PKT, "]]](%d) %s\n", datalen, buf);
83} 84}
85#else
86void
87p9pdu_dump(int way, struct p9_fcall *pdu)
88{
89}
90#endif
84EXPORT_SYMBOL(p9pdu_dump); 91EXPORT_SYMBOL(p9pdu_dump);
85 92
86void p9stat_free(struct p9_wstat *stbuf) 93void p9stat_free(struct p9_wstat *stbuf)
@@ -542,8 +549,10 @@ int p9pdu_finalize(struct p9_fcall *pdu)
542 err = p9pdu_writef(pdu, 0, "d", size); 549 err = p9pdu_writef(pdu, 0, "d", size);
543 pdu->size = size; 550 pdu->size = size;
544 551
552#ifdef CONFIG_NET_9P_DEBUG
545 if ((p9_debug_level & P9_DEBUG_PKT) == P9_DEBUG_PKT) 553 if ((p9_debug_level & P9_DEBUG_PKT) == P9_DEBUG_PKT)
546 p9pdu_dump(0, pdu); 554 p9pdu_dump(0, pdu);
555#endif
547 556
548 P9_DPRINTK(P9_DEBUG_9P, ">>> size=%d type: %d tag: %d\n", pdu->size, 557 P9_DPRINTK(P9_DEBUG_9P, ">>> size=%d type: %d tag: %d\n", pdu->size,
549 pdu->id, pdu->tag); 558 pdu->id, pdu->tag);