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 091b471d8f05..06d111d61038 100644
--- a/include/net/9p/9p.h
+++ b/include/net/9p/9p.h
@@ -92,6 +92,8 @@ do { \
92 * @P9_RSYMLINK: make symlink response 92 * @P9_RSYMLINK: make symlink response
93 * @P9_TMKNOD: create a special file object request 93 * @P9_TMKNOD: create a special file object request
94 * @P9_RMKNOD: create a special file object response 94 * @P9_RMKNOD: create a special file object response
95 * @P9_TLCREATE: prepare a handle for I/O on an new file for 9P2000.L
96 * @P9_RLCREATE: response with file access information for 9P2000.L
95 * @P9_TRENAME: rename request 97 * @P9_TRENAME: rename request
96 * @P9_RRENAME: rename response 98 * @P9_RRENAME: rename response
97 * @P9_TMKDIR: create a directory request 99 * @P9_TMKDIR: create a directory request
@@ -137,6 +139,8 @@ do { \
137enum p9_msg_t { 139enum p9_msg_t {
138 P9_TSTATFS = 8, 140 P9_TSTATFS = 8,
139 P9_RSTATFS, 141 P9_RSTATFS,
142 P9_TLCREATE = 14,
143 P9_RLCREATE,
140 P9_TSYMLINK = 16, 144 P9_TSYMLINK = 16,
141 P9_RSYMLINK, 145 P9_RSYMLINK,
142 P9_TMKNOD = 18, 146 P9_TMKNOD = 18,
diff --git a/include/net/9p/client.h b/include/net/9p/client.h
index 55d913a9b797..d755c0ed6750 100644
--- a/include/net/9p/client.h
+++ b/include/net/9p/client.h
@@ -229,6 +229,8 @@ int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode,
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, 230int p9_client_symlink(struct p9_fid *fid, char *name, char *symname, gid_t gid,
231 struct p9_qid *qid); 231 struct p9_qid *qid);
232int p9_client_create_dotl(struct p9_fid *ofid, char *name, u32 flags, u32 mode,
233 gid_t gid, struct p9_qid *qid);
232int p9_client_clunk(struct p9_fid *fid); 234int p9_client_clunk(struct p9_fid *fid);
233int p9_client_remove(struct p9_fid *fid); 235int p9_client_remove(struct p9_fid *fid);
234int p9_client_read(struct p9_fid *fid, char *data, char __user *udata, 236int p9_client_read(struct p9_fid *fid, char *data, char __user *udata,