diff options
author | Namjae Jeon <linkinjeon@gmail.com> | 2012-08-29 10:10:10 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2012-11-07 19:22:30 -0500 |
commit | 216b6cbdcbd86b1db0754d58886b466ae31f5a63 (patch) | |
tree | 409ef2bc2fcc5a8336453d29f8a5eac9dd45ec10 /fs/fhandle.c | |
parent | 6f0c0580b70c89094b3422ba81118c7b959c7556 (diff) |
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.c | 2 |
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, | |||
52 | handle_bytes = handle_dwords * sizeof(u32); | 52 | handle_bytes = handle_dwords * sizeof(u32); |
53 | handle->handle_bytes = handle_bytes; | 53 | handle->handle_bytes = handle_bytes; |
54 | if ((handle->handle_bytes > f_handle.handle_bytes) || | 54 | if ((handle->handle_bytes > f_handle.handle_bytes) || |
55 | (retval == 255) || (retval == -ENOSPC)) { | 55 | (retval == FILEID_INVALID) || (retval == -ENOSPC)) { |
56 | /* As per old exportfs_encode_fh documentation | 56 | /* As per old exportfs_encode_fh documentation |
57 | * we could return ENOSPC to indicate overflow | 57 | * we could return ENOSPC to indicate overflow |
58 | * But file system returned 255 always. So handle | 58 | * But file system returned 255 always. So handle |