diff options
author | Eric Van Hensbergen <ericvh@gmail.com> | 2008-10-16 08:29:31 -0500 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2008-10-17 11:04:45 -0500 |
commit | cb198131b0e7aba755ac164744536d461e86ab82 (patch) | |
tree | b6396ab16839bf2e87833c3a0cb32d710fdaa8f4 /net/9p | |
parent | 51d71f9f7a639c8a39401de1ec5ce9b0b6476c99 (diff) | |
download | linux-3.10-cb198131b0e7aba755ac164744536d461e86ab82.tar.gz linux-3.10-cb198131b0e7aba755ac164744536d461e86ab82.tar.bz2 linux-3.10-cb198131b0e7aba755ac164744536d461e86ab82.zip |
9p: remove unnecessary tag field from p9_req_t structure
This removes the vestigial tag field from the p9_req_t structure.
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'net/9p')
-rw-r--r-- | net/9p/trans_fd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/9p/trans_fd.c b/net/9p/trans_fd.c index 95c9b949d1a..e147ec53958 100644 --- a/net/9p/trans_fd.c +++ b/net/9p/trans_fd.c @@ -672,7 +672,7 @@ static int p9_fd_cancel(struct p9_client *client, struct p9_req_t *req) struct p9_trans_fd *ts = client->trans; struct p9_conn *m = ts->conn; - P9_DPRINTK(P9_DEBUG_MUX, "mux %p req %p tag %d\n", m, req, req->tag); + P9_DPRINTK(P9_DEBUG_MUX, "mux %p req %p\n", m, req); spin_lock(&client->lock); list_del(&req->req_list); |