Skip to content

Commit 4365749

Browse files
author
Dominique Martinet
committed
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/[email protected] Signed-off-by: Dominique Martinet <[email protected]>
1 parent 52cbee2 commit 4365749

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

include/net/9p/client.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ enum p9_req_status_t {
7373
* @wq: wait_queue for the client to block on for this request
7474
* @tc: the request fcall structure
7575
* @rc: the response fcall structure
76-
* @aux: transport specific data (provided for trans_fd migration)
7776
* @req_list: link for higher level objects to chain requests
7877
*/
7978
struct p9_req_t {
@@ -83,7 +82,6 @@ struct p9_req_t {
8382
wait_queue_head_t wq;
8483
struct p9_fcall tc;
8584
struct p9_fcall rc;
86-
void *aux;
8785
struct list_head req_list;
8886
};
8987

0 commit comments

Comments
 (0)