X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=utils%2Fmount%2Fstropts.c;h=34b4134076cf1faa8aa7bd54e6665549338a4ca7;hb=20db952fc211b3444d83049f2d127da4f3ca6989;hp=967fd69531f7a338b13fe7b7775ea3d991bf2af2;hpb=52dff26c60c07cf1b4fbf8fbd3a1eab7ba90405f;p=nfs-utils.git diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c index 967fd69..34b4134 100644 --- a/utils/mount/stropts.c +++ b/utils/mount/stropts.c @@ -45,6 +45,7 @@ #include "error.h" #include "network.h" #include "parse_opt.h" +#include "version.h" #ifdef HAVE_RPCSVC_NFS_PROT_H #include @@ -76,6 +77,7 @@ extern int nfs_mount_data_version; extern char *progname; extern int verbose; +extern int sloppy; struct nfsmount_info { const char *spec, /* server:/path */ @@ -287,6 +289,16 @@ static int verify_lock_option(struct mount_options *options) return 1; } +static int nfs_append_sloppy_option(struct mount_options *options) +{ + if (!sloppy || linux_version_code() < MAKE_VERSION(2, 6, 27)) + return 1; + + if (po_append(options, "sloppy") == PO_FAILED) + return 0; + return 1; +} + /* * Set up mandatory NFS mount options. * @@ -309,6 +321,9 @@ static int nfs_validate_options(struct nfsmount_info *mi) return 0; } + if (!nfs_append_sloppy_option(mi->options)) + return 0; + if (!append_addr_option(&saddr, mi->options)) return 0; @@ -356,12 +371,13 @@ static struct mount_options *rewrite_mount_options(char *str) clnt_addr_t nfs_server = { }; int p; - errno = EIO; - options = po_split(str); - if (!options) + if (!options) { + errno = EFAULT; return NULL; + } + errno = EINVAL; option = po_get(options, "addr"); if (option) { nfs_server.saddr.sin_family = AF_INET;