aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/net/9p/9p.h2
-rw-r--r--include/net/9p/client.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/include/net/9p/9p.h b/include/net/9p/9p.h
index 7f64d72f6c61..5985c0f83db3 100644
--- a/include/net/9p/9p.h
+++ b/include/net/9p/9p.h
@@ -139,6 +139,8 @@ enum p9_msg_t {
139 P9_RSETATTR, 139 P9_RSETATTR,
140 P9_TREADDIR = 40, 140 P9_TREADDIR = 40,
141 P9_RREADDIR, 141 P9_RREADDIR,
142 P9_TLINK = 70,
143 P9_RLINK,
142 P9_TVERSION = 100, 144 P9_TVERSION = 100,
143 P9_RVERSION, 145 P9_RVERSION,
144 P9_TAUTH = 102, 146 P9_TAUTH = 102,
diff --git a/include/net/9p/client.h b/include/net/9p/client.h
index afdc385152f6..e36f11650e99 100644
--- a/include/net/9p/client.h
+++ b/include/net/9p/client.h
@@ -226,6 +226,7 @@ struct p9_fid *p9_client_walk(struct p9_fid *oldfid, int nwname, char **wnames,
226int p9_client_open(struct p9_fid *fid, int mode); 226int p9_client_open(struct p9_fid *fid, int mode);
227int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode, 227int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode,
228 char *extension); 228 char *extension);
229int p9_client_link(struct p9_fid *fid, struct p9_fid *oldfid, char *newname);
229int p9_client_clunk(struct p9_fid *fid); 230int p9_client_clunk(struct p9_fid *fid);
230int p9_client_remove(struct p9_fid *fid); 231int p9_client_remove(struct p9_fid *fid);
231int p9_client_read(struct p9_fid *fid, char *data, char __user *udata, 232int p9_client_read(struct p9_fid *fid, char *data, char __user *udata,