The patch titled NFSv4: Fix thinko in fs/nfs/super.c has been removed from the -mm tree. Its filename was nfsv4-fix-thinko-in-fs-nfs-superc.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: NFSv4: Fix thinko in fs/nfs/super.c From: Trond Myklebust <Trond.Myklebust@xxxxxxxxxx> Duh. addr.sin_port should be in network byte order. Signed-off-by: Trond Myklebust <Trond.Myklebust@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/nfs/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/nfs/super.c~nfsv4-fix-thinko-in-fs-nfs-superc fs/nfs/super.c --- a/fs/nfs/super.c~nfsv4-fix-thinko-in-fs-nfs-superc +++ a/fs/nfs/super.c @@ -834,7 +834,7 @@ static int nfs4_get_sb(struct file_syste } /* RFC3530: The default port for NFS is 2049 */ if (addr.sin_port == 0) - addr.sin_port = NFS_PORT; + addr.sin_port = htons(NFS_PORT); /* Grab the authentication type */ authflavour = RPC_AUTH_UNIX; _ Patches currently in -mm which might be from Trond.Myklebust@xxxxxxxxxx are origin.patch vfs-make-d_materialise_unique-enforce-directory.patch nfs-cache-invalidation-fixup.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