diff options
Diffstat (limited to 'net/9p/mux.c')
-rw-r--r-- | net/9p/mux.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/9p/mux.c b/net/9p/mux.c index 5d70558c4c61..f14014793bed 100644 --- a/net/9p/mux.c +++ b/net/9p/mux.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <linux/idr.h> | 31 | #include <linux/idr.h> |
32 | #include <linux/mutex.h> | 32 | #include <linux/mutex.h> |
33 | #include <net/9p/9p.h> | 33 | #include <net/9p/9p.h> |
34 | #include <linux/parser.h> | ||
34 | #include <net/9p/transport.h> | 35 | #include <net/9p/transport.h> |
35 | #include <net/9p/conn.h> | 36 | #include <net/9p/conn.h> |
36 | 37 | ||
@@ -71,7 +72,7 @@ struct p9_conn { | |||
71 | struct p9_mux_poll_task *poll_task; | 72 | struct p9_mux_poll_task *poll_task; |
72 | int msize; | 73 | int msize; |
73 | unsigned char *extended; | 74 | unsigned char *extended; |
74 | struct p9_transport *trans; | 75 | struct p9_trans *trans; |
75 | struct p9_idpool *tagpool; | 76 | struct p9_idpool *tagpool; |
76 | int err; | 77 | int err; |
77 | wait_queue_head_t equeue; | 78 | wait_queue_head_t equeue; |
@@ -271,7 +272,7 @@ static void p9_mux_poll_stop(struct p9_conn *m) | |||
271 | * @msize - maximum message size | 272 | * @msize - maximum message size |
272 | * @extended - pointer to the extended flag | 273 | * @extended - pointer to the extended flag |
273 | */ | 274 | */ |
274 | struct p9_conn *p9_conn_create(struct p9_transport *trans, int msize, | 275 | struct p9_conn *p9_conn_create(struct p9_trans *trans, int msize, |
275 | unsigned char *extended) | 276 | unsigned char *extended) |
276 | { | 277 | { |
277 | int i, n; | 278 | int i, n; |