aboutsummaryrefslogtreecommitdiffstats
path: root/fs/9p/mux.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/9p/mux.h')
-rw-r--r--fs/9p/mux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/9p/mux.h b/fs/9p/mux.h
index 02b13b14b05b..9473b84f24b2 100644
--- a/fs/9p/mux.h
+++ b/fs/9p/mux.h
@@ -40,7 +40,7 @@ struct v9fs_mux_data;
40typedef void (*v9fs_mux_req_callback)(void *a, struct v9fs_fcall *tc, 40typedef void (*v9fs_mux_req_callback)(void *a, struct v9fs_fcall *tc,
41 struct v9fs_fcall *rc, int err); 41 struct v9fs_fcall *rc, int err);
42 42
43void v9fs_mux_global_init(void); 43int v9fs_mux_global_init(void);
44void v9fs_mux_global_exit(void); 44void v9fs_mux_global_exit(void);
45 45
46struct v9fs_mux_data *v9fs_mux_init(struct v9fs_transport *trans, int msize, 46struct v9fs_mux_data *v9fs_mux_init(struct v9fs_transport *trans, int msize,
@@ -55,3 +55,4 @@ int v9fs_mux_rpcnb(struct v9fs_mux_data *m, struct v9fs_fcall *tc,
55 55
56void v9fs_mux_flush(struct v9fs_mux_data *m, int sendflush); 56void v9fs_mux_flush(struct v9fs_mux_data *m, int sendflush);
57void v9fs_mux_cancel(struct v9fs_mux_data *m, int err); 57void v9fs_mux_cancel(struct v9fs_mux_data *m, int err);
58int v9fs_errstr2errno(char *errstr, int len);