diff options
author | M. Mohan Kumar <mohan@in.ibm.com> | 2010-09-28 10:29:25 -0400 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2010-10-28 10:08:48 -0400 |
commit | 329176cc2c50e63c580ddaabb385876db5af1360 (patch) | |
tree | c7a95364c6339f75d37e1b63890d94114cd1935e /include/net/9p/9p.h | |
parent | 368c09d2a303c39e9f37193b23e945e6754cf0a7 (diff) |
9p: Implement TREADLINK operation for 9p2000.L
Synopsis
size[4] TReadlink tag[2] fid[4]
size[4] RReadlink tag[2] target[s]
Description
Readlink is used to return the contents of the symoblic link
referred by fid. Contents of symboic link is returned as a
response.
target[s] - Contents of the symbolic link referred by fid.
Signed-off-by: M. Mohan Kumar <mohan@in.ibm.com>
Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: Venkateswararao Jujjuri <jvrao@linux.vnet.ibm.com>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'include/net/9p/9p.h')
-rw-r--r-- | include/net/9p/9p.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/9p/9p.h b/include/net/9p/9p.h index 6367a71d84fc..071fd7a8d781 100644 --- a/include/net/9p/9p.h +++ b/include/net/9p/9p.h | |||
@@ -153,6 +153,8 @@ enum p9_msg_t { | |||
153 | P9_RMKNOD, | 153 | P9_RMKNOD, |
154 | P9_TRENAME = 20, | 154 | P9_TRENAME = 20, |
155 | P9_RRENAME, | 155 | P9_RRENAME, |
156 | P9_TREADLINK = 22, | ||
157 | P9_RREADLINK, | ||
156 | P9_TGETATTR = 24, | 158 | P9_TGETATTR = 24, |
157 | P9_RGETATTR, | 159 | P9_RGETATTR, |
158 | P9_TSETATTR = 26, | 160 | P9_TSETATTR = 26, |