aboutsummaryrefslogtreecommitdiffstats
path: root/net/9p/trans_fd.c
diff options
context:
space:
mode:
authorEric Van Hensbergen <ericvh@gmail.com>2008-10-16 09:29:31 -0400
committerEric Van Hensbergen <ericvh@gmail.com>2008-10-17 12:04:44 -0400
commit51d71f9f7a639c8a39401de1ec5ce9b0b6476c99 (patch)
treea4030ff517c58c3a3ab027417d7299daca61bbf9 /net/9p/trans_fd.c
parentace51c4dd2f968f427c4627023759ae7e3786cba (diff)
9p: remove 9p fcall debug prints
One of the current debug options allows users to get a verbose dump of fcalls. This isn't really necessary as correctly parsed protocol frames can be printed as part of the code in the client functions. The consolidated printfcalls structure would require new entries to be added for every extension. This patch removes the debug print methods and their use. Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'net/9p/trans_fd.c')
-rw-r--r--net/9p/trans_fd.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/net/9p/trans_fd.c b/net/9p/trans_fd.c
index c07f2ab8d0f7..95c9b949d1a5 100644
--- a/net/9p/trans_fd.c
+++ b/net/9p/trans_fd.c
@@ -650,15 +650,6 @@ static int p9_fd_request(struct p9_client *client, struct p9_req_t *req)
650 if (m->err < 0) 650 if (m->err < 0)
651 return m->err; 651 return m->err;
652 652
653#ifdef CONFIG_NET_9P_DEBUG
654 if ((p9_debug_level&P9_DEBUG_FCALL) == P9_DEBUG_FCALL) {
655 char buf[150];
656
657 p9_printfcall(buf, sizeof(buf), req->tc, client->dotu);
658 printk(KERN_NOTICE "<<< %p %s\n", m, buf);
659 }
660#endif
661
662 req->status = REQ_STATUS_UNSENT; 653 req->status = REQ_STATUS_UNSENT;
663 654
664 spin_lock(&client->lock); 655 spin_lock(&client->lock);