mount: ignore unknown mount options when remounting NFS mounts
Don't fail on unknown nfs mount options. The kernel automatically adds a few mount options that we don't currently handle, like: sec=null|sys|krb5.. mountaddr=<ip> mountproto=tcp|udp local_lock=none|all|flock|posix Which causes a simple mount -o remount,rw <mountpoint> to fail. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
945fd173e9
commit
301fe50ca2
@ -1129,6 +1129,9 @@ static NOINLINE int nfsmount(struct mntent *mp, long vfsflags, char *filteropts)
|
||||
continue;
|
||||
case 20: // "addr" - ignore
|
||||
continue;
|
||||
case -1: // unknown
|
||||
if (vfsflags & MS_REMOUNT)
|
||||
continue;
|
||||
}
|
||||
|
||||
val = xatoi_positive(opteq);
|
||||
|
Loading…
Reference in New Issue
Block a user