diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/net/9p/9p.h | 2 | ||||
| -rw-r--r-- | include/net/9p/client.h | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/net/9p/9p.h b/include/net/9p/9p.h index 160193e6dddd..61156207c98c 100644 --- a/include/net/9p/9p.h +++ b/include/net/9p/9p.h | |||
| @@ -181,6 +181,8 @@ enum p9_msg_t { | |||
| 181 | P9_RLINK, | 181 | P9_RLINK, |
| 182 | P9_TMKDIR = 72, | 182 | P9_TMKDIR = 72, |
| 183 | P9_RMKDIR, | 183 | P9_RMKDIR, |
| 184 | P9_TRENAMEAT = 74, | ||
| 185 | P9_RRENAMEAT, | ||
| 184 | P9_TVERSION = 100, | 186 | P9_TVERSION = 100, |
| 185 | P9_RVERSION, | 187 | P9_RVERSION, |
| 186 | P9_TAUTH = 102, | 188 | P9_TAUTH = 102, |
diff --git a/include/net/9p/client.h b/include/net/9p/client.h index f7a8d036f803..62ceddf9994a 100644 --- a/include/net/9p/client.h +++ b/include/net/9p/client.h | |||
| @@ -211,7 +211,10 @@ struct p9_dirent { | |||
| 211 | }; | 211 | }; |
| 212 | 212 | ||
| 213 | int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb); | 213 | int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb); |
| 214 | int p9_client_rename(struct p9_fid *fid, struct p9_fid *newdirfid, char *name); | 214 | int p9_client_rename(struct p9_fid *fid, struct p9_fid *newdirfid, |
| 215 | const char *name); | ||
| 216 | int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name, | ||
| 217 | struct p9_fid *newdirfid, const char *new_name); | ||
| 215 | struct p9_client *p9_client_create(const char *dev_name, char *options); | 218 | struct p9_client *p9_client_create(const char *dev_name, char *options); |
| 216 | void p9_client_destroy(struct p9_client *clnt); | 219 | void p9_client_destroy(struct p9_client *clnt); |
| 217 | void p9_client_disconnect(struct p9_client *clnt); | 220 | void p9_client_disconnect(struct p9_client *clnt); |
