Don't try v4 mounts unless explicitly requested. In 1.2.1, mount.nfs tries v4 mounts by default. We don't want this for SLE11-SP1 as it is a behviour change and can cause breakage: bnc#557138 --- utils/mount/stropts.c | 4 ++++ 1 file changed, 4 insertions(+) --- nfs-utils-1.2.1.orig/utils/mount/stropts.c +++ nfs-utils-1.2.1/utils/mount/stropts.c @@ -662,6 +662,9 @@ static int nfs_try_mount(struct nfsmount switch (mi->version) { case 0: +#if 0 +/* We don't want this in SLES11-SP1 as it is a behavioural change and could cause breakage */ +/* Always try v3 first unless v4 was explicitly requested */ if (linux_version_code() > MAKE_VERSION(2, 6, 31)) { errno = 0; result = nfs_try_mount_v4(mi); @@ -675,6 +678,7 @@ static int nfs_try_mount(struct nfsmount break; } } +#endif case 2: case 3: result = nfs_try_mount_v3v2(mi);