]> git.baikalelectronics.ru Git - kernel.git/commitdiff
nfsroot: set tcp as the default transport protocol
authorLiwei Song <liwei.song@windriver.com>
Wed, 25 Mar 2020 03:50:13 +0000 (11:50 +0800)
committerTrond Myklebust <trond.myklebust@hammerspace.com>
Wed, 25 Mar 2020 12:45:47 +0000 (08:45 -0400)
UDP is disabled by default in commit 5f894806808d ("NFS: allow
deprecation of NFS UDP protocol"), but the default mount options
is still udp, change it to tcp to avoid the "Unsupported transport
protocol udp" error if no protocol is specified when mount nfs.

Fixes: 5f894806808d ("NFS: allow deprecation of NFS UDP protocol")
Signed-off-by: Liwei Song <liwei.song@windriver.com>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
fs/nfs/nfsroot.c

index effaa4247b912fe9836e65910470e1e0ec15a0f2..8d32788056022d71f030d1d90dff7c4c09ff9447 100644 (file)
@@ -88,7 +88,7 @@
 #define NFS_ROOT               "/tftpboot/%s"
 
 /* Default NFSROOT mount options. */
-#define NFS_DEF_OPTIONS                "vers=2,udp,rsize=4096,wsize=4096"
+#define NFS_DEF_OPTIONS                "vers=2,tcp,rsize=4096,wsize=4096"
 
 /* Parameters passed from the kernel command line */
 static char nfs_root_parms[NFS_MAXPATHLEN + 1] __initdata = "";