Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 1 | /* |
| 2 | * include/net/9p/client.h |
| 3 | * |
| 4 | * 9P Client Definitions |
| 5 | * |
Eric Van Hensbergen | 8a0dc95 | 2008-02-06 19:25:03 -0600 | [diff] [blame] | 6 | * Copyright (C) 2008 by Eric Van Hensbergen <ericvh@gmail.com> |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 7 | * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net> |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 |
| 11 | * as published by the Free Software Foundation. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to: |
| 20 | * Free Software Foundation |
| 21 | * 51 Franklin Street, Fifth Floor |
| 22 | * Boston, MA 02111-1301 USA |
| 23 | * |
| 24 | */ |
| 25 | |
| 26 | #ifndef NET_9P_CLIENT_H |
| 27 | #define NET_9P_CLIENT_H |
| 28 | |
Will Deacon | 50192ab | 2013-08-21 18:24:47 +0100 | [diff] [blame] | 29 | #include <linux/utsname.h> |
| 30 | |
Eric Van Hensbergen | fea511a | 2008-10-13 18:45:23 -0500 | [diff] [blame] | 31 | /* Number of requests per row */ |
| 32 | #define P9_ROW_MAXTAG 255 |
| 33 | |
Sripathi Kodi | 0fb80ab | 2010-03-05 18:49:11 +0000 | [diff] [blame] | 34 | /** enum p9_proto_versions - 9P protocol versions |
| 35 | * @p9_proto_legacy: 9P Legacy mode, pre-9P2000.u |
| 36 | * @p9_proto_2000u: 9P2000.u extension |
Sripathi Kodi | 45bc21e | 2010-03-08 17:33:04 +0000 | [diff] [blame] | 37 | * @p9_proto_2000L: 9P2000.L extension |
Sripathi Kodi | 0fb80ab | 2010-03-05 18:49:11 +0000 | [diff] [blame] | 38 | */ |
| 39 | |
| 40 | enum p9_proto_versions{ |
Prem Karat | 4d63055 | 2011-05-06 18:35:32 +0530 | [diff] [blame] | 41 | p9_proto_legacy, |
| 42 | p9_proto_2000u, |
| 43 | p9_proto_2000L, |
Sripathi Kodi | 0fb80ab | 2010-03-05 18:49:11 +0000 | [diff] [blame] | 44 | }; |
| 45 | |
| 46 | |
Eric Van Hensbergen | ee44399 | 2008-03-05 07:08:09 -0600 | [diff] [blame] | 47 | /** |
Eric Van Hensbergen | 8b81ef5 | 2008-10-13 18:45:25 -0500 | [diff] [blame] | 48 | * enum p9_trans_status - different states of underlying transports |
| 49 | * @Connected: transport is connected and healthy |
| 50 | * @Disconnected: transport has been disconnected |
| 51 | * @Hung: transport is connected by wedged |
| 52 | * |
| 53 | * This enumeration details the various states a transport |
| 54 | * instatiation can be in. |
| 55 | */ |
| 56 | |
| 57 | enum p9_trans_status { |
| 58 | Connected, |
Aneesh Kumar K.V | 6d96d3a | 2010-03-29 18:13:59 -0500 | [diff] [blame] | 59 | BeginDisconnect, |
Eric Van Hensbergen | 8b81ef5 | 2008-10-13 18:45:25 -0500 | [diff] [blame] | 60 | Disconnected, |
| 61 | Hung, |
| 62 | }; |
| 63 | |
| 64 | /** |
Rob Landley | aca0076 | 2011-05-08 18:46:38 +0000 | [diff] [blame] | 65 | * enum p9_req_status_t - status of a request |
Eric Van Hensbergen | fea511a | 2008-10-13 18:45:23 -0500 | [diff] [blame] | 66 | * @REQ_STATUS_IDLE: request slot unused |
| 67 | * @REQ_STATUS_ALLOC: request has been allocated but not sent |
Eric Van Hensbergen | 673d62cd | 2008-10-13 18:45:22 -0500 | [diff] [blame] | 68 | * @REQ_STATUS_UNSENT: request waiting to be sent |
Eric Van Hensbergen | fea511a | 2008-10-13 18:45:23 -0500 | [diff] [blame] | 69 | * @REQ_STATUS_SENT: request sent to server |
| 70 | * @REQ_STATUS_FLSH: a flush has been sent for this request |
| 71 | * @REQ_STATUS_RCVD: response received from server |
| 72 | * @REQ_STATUS_FLSHD: request has been flushed |
Eric Van Hensbergen | 673d62cd | 2008-10-13 18:45:22 -0500 | [diff] [blame] | 73 | * @REQ_STATUS_ERROR: request encountered an error on the client side |
Eric Van Hensbergen | fea511a | 2008-10-13 18:45:23 -0500 | [diff] [blame] | 74 | * |
| 75 | * The @REQ_STATUS_IDLE state is used to mark a request slot as unused |
| 76 | * but use is actually tracked by the idpool structure which handles tag |
| 77 | * id allocation. |
| 78 | * |
| 79 | */ |
| 80 | |
| 81 | enum p9_req_status_t { |
| 82 | REQ_STATUS_IDLE, |
| 83 | REQ_STATUS_ALLOC, |
Eric Van Hensbergen | 673d62cd | 2008-10-13 18:45:22 -0500 | [diff] [blame] | 84 | REQ_STATUS_UNSENT, |
Eric Van Hensbergen | fea511a | 2008-10-13 18:45:23 -0500 | [diff] [blame] | 85 | REQ_STATUS_SENT, |
| 86 | REQ_STATUS_FLSH, |
| 87 | REQ_STATUS_RCVD, |
| 88 | REQ_STATUS_FLSHD, |
| 89 | REQ_STATUS_ERROR, |
| 90 | }; |
| 91 | |
| 92 | /** |
| 93 | * struct p9_req_t - request slots |
| 94 | * @status: status of this request slot |
| 95 | * @t_err: transport error |
Eric Van Hensbergen | 51a87c5 | 2008-10-16 08:30:07 -0500 | [diff] [blame] | 96 | * @flush_tag: tag of request being flushed (for flush requests) |
Eric Van Hensbergen | fea511a | 2008-10-13 18:45:23 -0500 | [diff] [blame] | 97 | * @wq: wait_queue for the client to block on for this request |
| 98 | * @tc: the request fcall structure |
| 99 | * @rc: the response fcall structure |
| 100 | * @aux: transport specific data (provided for trans_fd migration) |
Eric Van Hensbergen | 673d62cd | 2008-10-13 18:45:22 -0500 | [diff] [blame] | 101 | * @req_list: link for higher level objects to chain requests |
Eric Van Hensbergen | fea511a | 2008-10-13 18:45:23 -0500 | [diff] [blame] | 102 | * |
| 103 | * Transport use an array to track outstanding requests |
| 104 | * instead of a list. While this may incurr overhead during initial |
| 105 | * allocation or expansion, it makes request lookup much easier as the |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 106 | * tag id is a index into an array. (We use tag+1 so that we can accommodate |
Eric Van Hensbergen | fea511a | 2008-10-13 18:45:23 -0500 | [diff] [blame] | 107 | * the -1 tag for the T_VERSION request). |
| 108 | * This also has the nice effect of only having to allocate wait_queues |
| 109 | * once, instead of constantly allocating and freeing them. Its possible |
| 110 | * other resources could benefit from this scheme as well. |
| 111 | * |
| 112 | */ |
| 113 | |
| 114 | struct p9_req_t { |
| 115 | int status; |
| 116 | int t_err; |
| 117 | wait_queue_head_t *wq; |
| 118 | struct p9_fcall *tc; |
| 119 | struct p9_fcall *rc; |
Eric Van Hensbergen | fea511a | 2008-10-13 18:45:23 -0500 | [diff] [blame] | 120 | void *aux; |
Eric Van Hensbergen | 673d62cd | 2008-10-13 18:45:22 -0500 | [diff] [blame] | 121 | |
Eric Van Hensbergen | 673d62cd | 2008-10-13 18:45:22 -0500 | [diff] [blame] | 122 | struct list_head req_list; |
Eric Van Hensbergen | fea511a | 2008-10-13 18:45:23 -0500 | [diff] [blame] | 123 | }; |
| 124 | |
| 125 | /** |
Eric Van Hensbergen | ee44399 | 2008-03-05 07:08:09 -0600 | [diff] [blame] | 126 | * struct p9_client - per client instance state |
| 127 | * @lock: protect @fidlist |
| 128 | * @msize: maximum data size negotiated by protocol |
| 129 | * @dotu: extension flags negotiated by protocol |
Sripathi Kodi | 0fb80ab | 2010-03-05 18:49:11 +0000 | [diff] [blame] | 130 | * @proto_version: 9P protocol version to use |
Eric Van Hensbergen | ee44399 | 2008-03-05 07:08:09 -0600 | [diff] [blame] | 131 | * @trans_mod: module API instantiated with this client |
| 132 | * @trans: tranport instance state and API |
| 133 | * @conn: connection state information used by trans_fd |
| 134 | * @fidpool: fid handle accounting for session |
| 135 | * @fidlist: List of active fid handles |
Eric Van Hensbergen | fea511a | 2008-10-13 18:45:23 -0500 | [diff] [blame] | 136 | * @tagpool - transaction id accounting for session |
| 137 | * @reqs - 2D array of requests |
| 138 | * @max_tag - current maximum tag id allocated |
Will Deacon | 50192ab | 2013-08-21 18:24:47 +0100 | [diff] [blame] | 139 | * @name - node name used as client id |
Eric Van Hensbergen | ee44399 | 2008-03-05 07:08:09 -0600 | [diff] [blame] | 140 | * |
| 141 | * The client structure is used to keep track of various per-client |
| 142 | * state that has been instantiated. |
Eric Van Hensbergen | fea511a | 2008-10-13 18:45:23 -0500 | [diff] [blame] | 143 | * In order to minimize per-transaction overhead we use a |
| 144 | * simple array to lookup requests instead of a hash table |
| 145 | * or linked list. In order to support larger number of |
| 146 | * transactions, we make this a 2D array, allocating new rows |
| 147 | * when we need to grow the total number of the transactions. |
| 148 | * |
| 149 | * Each row is 256 requests and we'll support up to 256 rows for |
| 150 | * a total of 64k concurrent requests per session. |
Eric Van Hensbergen | ee44399 | 2008-03-05 07:08:09 -0600 | [diff] [blame] | 151 | * |
| 152 | * Bugs: duplicated data and potentially unnecessary elements. |
| 153 | */ |
| 154 | |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 155 | struct p9_client { |
| 156 | spinlock_t lock; /* protect client structure */ |
Dan Carpenter | ef6b080 | 2011-08-26 19:57:40 +0300 | [diff] [blame] | 157 | unsigned int msize; |
Sripathi Kodi | 0fb80ab | 2010-03-05 18:49:11 +0000 | [diff] [blame] | 158 | unsigned char proto_version; |
Eric Van Hensbergen | 8a0dc95 | 2008-02-06 19:25:03 -0600 | [diff] [blame] | 159 | struct p9_trans_module *trans_mod; |
Eric Van Hensbergen | 8b81ef5 | 2008-10-13 18:45:25 -0500 | [diff] [blame] | 160 | enum p9_trans_status status; |
| 161 | void *trans; |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 162 | struct p9_conn *conn; |
| 163 | |
| 164 | struct p9_idpool *fidpool; |
| 165 | struct list_head fidlist; |
Eric Van Hensbergen | fea511a | 2008-10-13 18:45:23 -0500 | [diff] [blame] | 166 | |
| 167 | struct p9_idpool *tagpool; |
| 168 | struct p9_req_t *reqs[P9_ROW_MAXTAG]; |
| 169 | int max_tag; |
Will Deacon | 50192ab | 2013-08-21 18:24:47 +0100 | [diff] [blame] | 170 | |
| 171 | char name[__NEW_UTS_LEN + 1]; |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 172 | }; |
| 173 | |
Eric Van Hensbergen | ee44399 | 2008-03-05 07:08:09 -0600 | [diff] [blame] | 174 | /** |
| 175 | * struct p9_fid - file system entity handle |
| 176 | * @clnt: back pointer to instantiating &p9_client |
| 177 | * @fid: numeric identifier for this handle |
| 178 | * @mode: current mode of this fid (enum?) |
| 179 | * @qid: the &p9_qid server identifier this handle points to |
| 180 | * @iounit: the server reported maximum transaction size for this file |
| 181 | * @uid: the numeric uid of the local user who owns this handle |
Eric Van Hensbergen | 3e2796a | 2009-11-02 08:39:28 -0600 | [diff] [blame] | 182 | * @rdir: readdir accounting structure (allocated on demand) |
Eric Van Hensbergen | ee44399 | 2008-03-05 07:08:09 -0600 | [diff] [blame] | 183 | * @flist: per-client-instance fid tracking |
| 184 | * @dlist: per-dentry fid tracking |
| 185 | * |
| 186 | * TODO: This needs lots of explanation. |
| 187 | */ |
| 188 | |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 189 | struct p9_fid { |
| 190 | struct p9_client *clnt; |
| 191 | u32 fid; |
| 192 | int mode; |
| 193 | struct p9_qid qid; |
| 194 | u32 iounit; |
Eric W. Biederman | b464255 | 2013-01-30 11:48:53 -0800 | [diff] [blame] | 195 | kuid_t uid; |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 196 | |
Eric Van Hensbergen | 3e2796a | 2009-11-02 08:39:28 -0600 | [diff] [blame] | 197 | void *rdir; |
| 198 | |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 199 | struct list_head flist; |
Al Viro | c4d3096 | 2013-02-27 22:51:08 -0500 | [diff] [blame] | 200 | struct hlist_node dlist; /* list of all fids attached to a dentry */ |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 201 | }; |
| 202 | |
Sripathi Kodi | 7751bdb | 2010-06-04 13:41:26 +0000 | [diff] [blame] | 203 | /** |
| 204 | * struct p9_dirent - directory entry structure |
| 205 | * @qid: The p9 server qid for this dirent |
| 206 | * @d_off: offset to the next dirent |
| 207 | * @d_type: type of file |
| 208 | * @d_name: file name |
| 209 | */ |
| 210 | |
| 211 | struct p9_dirent { |
| 212 | struct p9_qid qid; |
| 213 | u64 d_off; |
| 214 | unsigned char d_type; |
| 215 | char d_name[256]; |
| 216 | }; |
| 217 | |
Sripathi Kodi | bda8e77 | 2010-03-25 12:45:30 +0000 | [diff] [blame] | 218 | int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb); |
Aneesh Kumar K.V | 9e8fb38 | 2011-06-28 15:41:16 +0530 | [diff] [blame] | 219 | int p9_client_rename(struct p9_fid *fid, struct p9_fid *newdirfid, |
| 220 | const char *name); |
| 221 | int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name, |
| 222 | struct p9_fid *newdirfid, const char *new_name); |
Eric Van Hensbergen | 8a0dc95 | 2008-02-06 19:25:03 -0600 | [diff] [blame] | 223 | struct p9_client *p9_client_create(const char *dev_name, char *options); |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 224 | void p9_client_destroy(struct p9_client *clnt); |
| 225 | void p9_client_disconnect(struct p9_client *clnt); |
Aneesh Kumar K.V | 6d96d3a | 2010-03-29 18:13:59 -0500 | [diff] [blame] | 226 | void p9_client_begin_disconnect(struct p9_client *clnt); |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 227 | struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid, |
Eric W. Biederman | f791f7c | 2013-01-29 16:09:41 -0800 | [diff] [blame] | 228 | char *uname, kuid_t n_uname, char *aname); |
Harsh Prateek Bora | b76225e | 2011-03-31 15:49:39 +0530 | [diff] [blame] | 229 | struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname, |
| 230 | char **wnames, int clone); |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 231 | int p9_client_open(struct p9_fid *fid, int mode); |
| 232 | int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode, |
| 233 | char *extension); |
Venkateswararao Jujjuri (JV) | 652df9a | 2010-06-03 15:16:59 -0700 | [diff] [blame] | 234 | int p9_client_link(struct p9_fid *fid, struct p9_fid *oldfid, char *newname); |
Eric W. Biederman | f791f7c | 2013-01-29 16:09:41 -0800 | [diff] [blame] | 235 | int p9_client_symlink(struct p9_fid *fid, char *name, char *symname, kgid_t gid, |
Venkateswararao Jujjuri (JV) | 50cc42f | 2010-06-09 15:59:31 -0700 | [diff] [blame] | 236 | struct p9_qid *qid); |
Venkateswararao Jujjuri (JV) | 5643135 | 2010-06-17 18:27:46 -0700 | [diff] [blame] | 237 | int p9_client_create_dotl(struct p9_fid *ofid, char *name, u32 flags, u32 mode, |
Eric W. Biederman | f791f7c | 2013-01-29 16:09:41 -0800 | [diff] [blame] | 238 | kgid_t gid, struct p9_qid *qid); |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 239 | int p9_client_clunk(struct p9_fid *fid); |
Venkateswararao Jujjuri (JV) | b165d60 | 2010-10-22 10:13:12 -0700 | [diff] [blame] | 240 | int p9_client_fsync(struct p9_fid *fid, int datasync); |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 241 | int p9_client_remove(struct p9_fid *fid); |
Aneesh Kumar K.V | 48e370f | 2011-06-28 15:41:18 +0530 | [diff] [blame] | 242 | int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags); |
Eric Van Hensbergen | 0fc9655 | 2008-10-13 20:36:17 -0500 | [diff] [blame] | 243 | int p9_client_read(struct p9_fid *fid, char *data, char __user *udata, |
| 244 | u64 offset, u32 count); |
Eric Van Hensbergen | 0fc9655 | 2008-10-13 20:36:17 -0500 | [diff] [blame] | 245 | int p9_client_write(struct p9_fid *fid, char *data, const char __user *udata, |
| 246 | u64 offset, u32 count); |
Sripathi Kodi | 7751bdb | 2010-06-04 13:41:26 +0000 | [diff] [blame] | 247 | int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset); |
Aneesh Kumar K.V | 348b590 | 2011-08-07 00:46:59 +0530 | [diff] [blame] | 248 | int p9dirent_read(struct p9_client *clnt, char *buf, int len, |
| 249 | struct p9_dirent *dirent); |
Eric Van Hensbergen | 51a87c5 | 2008-10-16 08:30:07 -0500 | [diff] [blame] | 250 | struct p9_wstat *p9_client_stat(struct p9_fid *fid); |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 251 | int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst); |
Sripathi Kodi | 87d7845 | 2010-06-18 11:50:10 +0530 | [diff] [blame] | 252 | int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *attr); |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 253 | |
Sripathi Kodi | f085312 | 2010-07-12 20:07:23 +0530 | [diff] [blame] | 254 | struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid, |
| 255 | u64 request_mask); |
| 256 | |
M. Mohan Kumar | 4b43516 | 2010-06-16 14:27:01 +0530 | [diff] [blame] | 257 | int p9_client_mknod_dotl(struct p9_fid *oldfid, char *name, int mode, |
Eric W. Biederman | f791f7c | 2013-01-29 16:09:41 -0800 | [diff] [blame] | 258 | dev_t rdev, kgid_t gid, struct p9_qid *); |
M. Mohan Kumar | 01a622b | 2010-06-16 14:27:22 +0530 | [diff] [blame] | 259 | int p9_client_mkdir_dotl(struct p9_fid *fid, char *name, int mode, |
Eric W. Biederman | f791f7c | 2013-01-29 16:09:41 -0800 | [diff] [blame] | 260 | kgid_t gid, struct p9_qid *); |
M. Mohan Kumar | a099027 | 2010-09-27 11:34:24 +0530 | [diff] [blame] | 261 | int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status); |
M. Mohan Kumar | 1d769cd | 2010-09-27 12:22:13 +0530 | [diff] [blame] | 262 | int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *fl); |
Eric Van Hensbergen | fea511a | 2008-10-13 18:45:23 -0500 | [diff] [blame] | 263 | struct p9_req_t *p9_tag_lookup(struct p9_client *, u16); |
Eric Van Hensbergen | 91b8534 | 2008-10-13 18:45:21 -0500 | [diff] [blame] | 264 | void p9_client_cb(struct p9_client *c, struct p9_req_t *req); |
Eric Van Hensbergen | fea511a | 2008-10-13 18:45:23 -0500 | [diff] [blame] | 265 | |
Tom Tucker | fc79d4b | 2008-10-22 18:47:39 -0500 | [diff] [blame] | 266 | int p9_parse_header(struct p9_fcall *, int32_t *, int8_t *, int16_t *, int); |
Aneesh Kumar K.V | 348b590 | 2011-08-07 00:46:59 +0530 | [diff] [blame] | 267 | int p9stat_read(struct p9_client *, char *, int, struct p9_wstat *); |
Eric Van Hensbergen | 51a87c5 | 2008-10-16 08:30:07 -0500 | [diff] [blame] | 268 | void p9stat_free(struct p9_wstat *); |
| 269 | |
Sripathi Kodi | 342fee1 | 2010-03-05 18:50:14 +0000 | [diff] [blame] | 270 | int p9_is_proto_dotu(struct p9_client *clnt); |
| 271 | int p9_is_proto_dotl(struct p9_client *clnt); |
Aneesh Kumar K.V | 0ef63f3 | 2010-05-31 13:22:45 +0530 | [diff] [blame] | 272 | struct p9_fid *p9_client_xattrwalk(struct p9_fid *, const char *, u64 *); |
Aneesh Kumar K.V | eda25e46 | 2010-05-31 13:22:50 +0530 | [diff] [blame] | 273 | int p9_client_xattrcreate(struct p9_fid *, const char *, u64, int); |
M. Mohan Kumar | 329176c | 2010-09-28 19:59:25 +0530 | [diff] [blame] | 274 | int p9_client_readlink(struct p9_fid *fid, char **target); |
Eric Van Hensbergen | 02da398 | 2008-10-16 08:29:30 -0500 | [diff] [blame] | 275 | |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 276 | #endif /* NET_9P_CLIENT_H */ |