From: Joshua Watt Date: Tue, 7 Nov 2017 22:25:47 +0000 (-0600) Subject: NFS: Fix typo in nomigration mount option X-Git-Tag: v4.19~1965^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f02fee227e5f21981152850744a6084ff3fa94ee;p=platform%2Fkernel%2Flinux-rpi.git NFS: Fix typo in nomigration mount option The option was incorrectly masking off all other options. Signed-off-by: Joshua Watt Cc: stable@vger.kernel.org #3.7 Signed-off-by: Anna Schumaker --- diff --git a/fs/nfs/super.c b/fs/nfs/super.c index da19c72..43cadb2 100644 --- a/fs/nfs/super.c +++ b/fs/nfs/super.c @@ -1332,7 +1332,7 @@ static int nfs_parse_mount_options(char *raw, mnt->options |= NFS_OPTION_MIGRATION; break; case Opt_nomigration: - mnt->options &= NFS_OPTION_MIGRATION; + mnt->options &= ~NFS_OPTION_MIGRATION; break; /*