The patch titled knfsd: fixing missing 'expkey' support for fsid type 3 has been added to the -mm tree. Its filename is knfsd-fixing-missing-expkey-support-for-fsid-type-3.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: knfsd: fixing missing 'expkey' support for fsid type 3 From: Frank Filz <ffilzlnx@xxxxxxxxxx> Type '3' is used for the fsid in filehandles when the device number of the device holding the filesystem has more than 8 bits in either major or minor. Unfortunately expkey_parse doesn't recognise type 3. Fix this. (Slighty modified from Frank's original) Signed-off-by: Frank Filz <ffilzlnx@xxxxxxxxxx> Signed-off-by: Neil Brown <neilb@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/nfsd/export.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/nfsd/export.c~knfsd-fixing-missing-expkey-support-for-fsid-type-3 fs/nfsd/export.c --- a/fs/nfsd/export.c~knfsd-fixing-missing-expkey-support-for-fsid-type-3 +++ a/fs/nfsd/export.c @@ -126,7 +126,7 @@ static int expkey_parse(struct cache_det if (*ep) goto out; dprintk("found fsidtype %d\n", fsidtype); - if (fsidtype > 2) + if (key_len(fsidtype)==0) /* invalid type */ goto out; if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0) goto out; _ Patches currently in -mm which might be from ffilzlnx@xxxxxxxxxx are knfsd-fixing-missing-expkey-support-for-fsid-type-3.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html