fs: encode_fh: return FILEID_INVALID if invalid fid_type

This patch is a follow up on below patch:

[PATCH] exportfs: add FILEID_INVALID to indicate invalid fid_type
commit: 216b6cbdcb

Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Vivek Trivedi <t.vivek@samsung.com>
Acked-by: Steven Whitehouse <swhiteho@redhat.com>
Acked-by: Sage Weil <sage@inktank.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Namjae Jeon 2013-02-17 15:48:11 +09:00 committed by Al Viro
commit 94e07a7590
12 changed files with 21 additions and 21 deletions

View file

@ -1603,10 +1603,10 @@ int reiserfs_encode_fh(struct inode *inode, __u32 * data, int *lenp,
if (parent && (maxlen < 5)) {
*lenp = 5;
return 255;
return FILEID_INVALID;
} else if (maxlen < 3) {
*lenp = 3;
return 255;
return FILEID_INVALID;
}
data[0] = inode->i_ino;