aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/net/9p/9p.h4
-rw-r--r--include/net/9p/client.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/include/net/9p/9p.h b/include/net/9p/9p.h
index 5985c0f83db3..44a6883d7144 100644
--- a/include/net/9p/9p.h
+++ b/include/net/9p/9p.h
@@ -88,6 +88,8 @@ do { \
88 * enum p9_msg_t - 9P message types 88 * enum p9_msg_t - 9P message types
89 * @P9_TSTATFS: file system status request 89 * @P9_TSTATFS: file system status request
90 * @P9_RSTATFS: file system status response 90 * @P9_RSTATFS: file system status response
91 * @P9_TSYMLINK: make symlink request
92 * @P9_RSYMLINK: make symlink response
91 * @P9_TRENAME: rename request 93 * @P9_TRENAME: rename request
92 * @P9_RRENAME: rename response 94 * @P9_RRENAME: rename response
93 * @P9_TVERSION: version handshake request 95 * @P9_TVERSION: version handshake request
@@ -131,6 +133,8 @@ do { \
131enum p9_msg_t { 133enum p9_msg_t {
132 P9_TSTATFS = 8, 134 P9_TSTATFS = 8,
133 P9_RSTATFS, 135 P9_RSTATFS,
136 P9_TSYMLINK = 16,
137 P9_RSYMLINK,
134 P9_TRENAME = 20, 138 P9_TRENAME = 20,
135 P9_RRENAME, 139 P9_RRENAME,
136 P9_TGETATTR = 24, 140 P9_TGETATTR = 24,
diff --git a/include/net/9p/client.h b/include/net/9p/client.h
index e36f11650e99..2e039730920e 100644
--- a/include/net/9p/client.h
+++ b/include/net/9p/client.h
@@ -227,6 +227,8 @@ int 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_link(struct p9_fid *fid, struct p9_fid *oldfid, char *newname);
230int p9_client_symlink(struct p9_fid *fid, char *name, char *symname, gid_t gid,
231 struct p9_qid *qid);
230int p9_client_clunk(struct p9_fid *fid); 232int p9_client_clunk(struct p9_fid *fid);
231int p9_client_remove(struct p9_fid *fid); 233int p9_client_remove(struct p9_fid *fid);
232int p9_client_read(struct p9_fid *fid, char *data, char __user *udata, 234int p9_client_read(struct p9_fid *fid, char *data, char __user *udata,