diff options
author | Dominique Martinet <dominique.martinet@cea.fr> | 2020-02-05 23:19:12 +0100 |
---|---|---|
committer | Dominique Martinet <dominique.martinet@cea.fr> | 2020-03-27 09:29:57 +0000 |
commit | 43657496e46672fe63bccc1fcfb5b68de6e1e2f4 (patch) | |
tree | fb84958ef0943ad6be9929a736d216ec8e9c07c0 /include/net | |
parent | 52cbee2a5768d1cf6051286490be43e1712674b3 (diff) | |
download | linux-43657496e46672fe63bccc1fcfb5b68de6e1e2f4.tar.gz |
net/9p: remove unused p9_req_t aux field
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/1580941152-12973-1-git-send-email-asmadeus@codewreck.org
Signed-off-by: Dominique Martinet <dominique.martinet@cea.fr>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/9p/client.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/net/9p/client.h b/include/net/9p/client.h index f6c890e94f87..dd5b5bd781a4 100644 --- a/include/net/9p/client.h +++ b/include/net/9p/client.h @@ -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; }; |