]> Git Repo - linux.git/commitdiff
net/9p: remove unused p9_req_t aux field
authorDominique Martinet <[email protected]>
Wed, 5 Feb 2020 22:19:12 +0000 (23:19 +0100)
committerDominique Martinet <[email protected]>
Fri, 27 Mar 2020 09:29:57 +0000 (09:29 +0000)
The p9_req_t field 'aux' has not been used in a very long time,
remove leftover field declaration

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Dominique Martinet <[email protected]>
include/net/9p/client.h

index f6c890e94f877beee73e4b735afa2a2335a82f17..dd5b5bd781a4957f00203c7499241f45065e7510 100644 (file)
@@ -73,7 +73,6 @@ enum p9_req_status_t {
  * @wq: wait_queue for the client to block on for this request
  * @tc: the request fcall structure
  * @rc: the response fcall structure
- * @aux: transport specific data (provided for trans_fd migration)
  * @req_list: link for higher level objects to chain requests
  */
 struct p9_req_t {
@@ -83,7 +82,6 @@ struct p9_req_t {
        wait_queue_head_t wq;
        struct p9_fcall tc;
        struct p9_fcall rc;
-       void *aux;
        struct list_head req_list;
 };
 
This page took 0.057054 seconds and 4 git commands to generate.