diff options
author | Steve French <[email protected]> | 2021-01-28 11:20:22 -0600 |
---|---|---|
committer | Steve French <[email protected]> | 2021-01-28 11:20:22 -0600 |
commit | c9b8cd6a39c48b2827c0925b648b221b5f8ef25d (patch) | |
tree | d5bac297d71a73e2b22f123885bcfaf417a7127a | |
parent | 19d51588125fb7abe258e85b412710486a3d9219 (diff) |
cifs: fix mounts to subdirectories of target
The "prefixpath" mount option needs to be ignored
which was missed in the recent conversion to the
new mount API (prefixpath would be set by the mount
helper if mounting a subdirectory of the root of a
share e.g. //server/share/subdir)
Fixes: 24e0a1eff9e2 ("cifs: switch to new mount api")
Suggested-by: Ronnie Sahlberg <[email protected]>
Signed-off-by: Steve French <[email protected]>
Reviewed-by: Ronnie Sahlberg <[email protected]>
-rw-r--r-- | fs/cifs/fs_context.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/fs_context.c b/fs/cifs/fs_context.c index 62818b142e2e..818c413db82d 100644 --- a/fs/cifs/fs_context.c +++ b/fs/cifs/fs_context.c @@ -178,6 +178,7 @@ const struct fs_parameter_spec smb3_fs_parameters[] = { fsparam_flag_no("auto", Opt_ignore), fsparam_string("cred", Opt_ignore), fsparam_string("credentials", Opt_ignore), + fsparam_string("prefixpath", Opt_ignore), {} }; |