summaryrefslogtreecommitdiffstats
path: root/fs/fhandle.c
diff options
context:
space:
mode:
authorNamjae Jeon2012-08-29 16:10:10 +0200
committerJ. Bruce Fields2012-11-08 01:22:30 +0100
commit216b6cbdcbd86b1db0754d58886b466ae31f5a63 (patch)
tree409ef2bc2fcc5a8336453d29f8a5eac9dd45ec10 /fs/fhandle.c
parentLinux 3.7-rc2 (diff)
downloadkernel-qcow2-linux-216b6cbdcbd86b1db0754d58886b466ae31f5a63.tar.gz
kernel-qcow2-linux-216b6cbdcbd86b1db0754d58886b466ae31f5a63.tar.xz
kernel-qcow2-linux-216b6cbdcbd86b1db0754d58886b466ae31f5a63.zip
exportfs: add FILEID_INVALID to indicate invalid fid_type
This commit adds FILEID_INVALID = 0xff in fid_type to indicate invalid fid_type It avoids using magic number 255 Signed-off-by: Namjae Jeon <linkinjeon@gmail.com> Signed-off-by: Vivek Trivedi <vtrivedi018@gmail.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/fhandle.c')
-rw-r--r--fs/fhandle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fhandle.c b/fs/fhandle.c
index f775bfdd6e4a..26f12b95702a 100644
--- a/fs/fhandle.c
+++ b/fs/fhandle.c
@@ -52,7 +52,7 @@ static long do_sys_name_to_handle(struct path *path,
handle_bytes = handle_dwords * sizeof(u32);
handle->handle_bytes = handle_bytes;
if ((handle->handle_bytes > f_handle.handle_bytes) ||
- (retval == 255) || (retval == -ENOSPC)) {
+ (retval == FILEID_INVALID) || (retval == -ENOSPC)) {
/* As per old exportfs_encode_fh documentation
* we could return ENOSPC to indicate overflow
* But file system returned 255 always. So handle