summaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorEric Van Hensbergen <ericvh@gmail.com>2008-10-16 08:29:31 -0500
committerEric Van Hensbergen <ericvh@gmail.com>2008-10-17 11:04:45 -0500
commitcb198131b0e7aba755ac164744536d461e86ab82 (patch)
treeb6396ab16839bf2e87833c3a0cb32d710fdaa8f4 /include/net
parent51d71f9f7a639c8a39401de1ec5ce9b0b6476c99 (diff)
downloadlinux-cb198131b0e7aba755ac164744536d461e86ab82.tar.gz
linux-cb198131b0e7aba755ac164744536d461e86ab82.tar.xz
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 'include/net')
-rw-r--r--include/net/9p/client.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/net/9p/client.h b/include/net/9p/client.h
index eeb7d922816e..475ef5cf1644 100644
--- a/include/net/9p/client.h
+++ b/include/net/9p/client.h
@@ -81,7 +81,6 @@ enum p9_req_status_t {
* @tc: the request fcall structure
* @rc: the response fcall structure
* @aux: transport specific data (provided for trans_fd migration)
- * @tag: tag on request (BUG: redundant)
* @req_list: link for higher level objects to chain requests
*
* Transport use an array to track outstanding requests
@@ -104,7 +103,6 @@ struct p9_req_t {
u16 flush_tag;
void *aux;
- int tag;
struct list_head req_list;
};