The patch titled git-nfs oops fix has been added to the -mm tree. Its filename is git-nfs-oops-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: git-nfs oops fix From: Trond Myklebust <trond.myklebust@xxxxxxxxxx> That 'sec=null' would explain why you are seeing a problem, and the attached patch ought to fix it. Signed-off-by: Trond Myklebust <Trond.Myklebust@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/nfs/super.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff -puN fs/nfs/super.c~git-nfs-oops-fix fs/nfs/super.c --- a/fs/nfs/super.c~git-nfs-oops-fix +++ a/fs/nfs/super.c @@ -471,9 +471,10 @@ static int nfs_validate_mount_data(struc data->version); return -EINVAL; } - /* Fill in pseudoflavor for mount version < 5 */ - data->pseudoflavor = RPC_AUTH_UNIX; case 5: + /* Set the pseudoflavor */ + if (!(data->flags & NFS_MOUNT_SECFLAVOUR)) + data->pseudoflavor = RPC_AUTH_UNIX; memset(data->context, 0, sizeof(data->context)); } _ Patches currently in -mm which might be from trond.myklebust@xxxxxxxxxx are git-nfs.patch git-nfs-oops-fix.patch restore-rogue-readahead-printk.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