diff options
author | Steve French <stfrench@microsoft.com> | 2020-06-12 06:43:01 +0300 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-06-12 16:54:12 +0300 |
commit | d313852d7ad044476df7f640801aac17080e0521 (patch) | |
tree | b9dea6d7abdfdb183f467df26f17726479909305 /fs/cifs/link.c | |
parent | 790434ff9848a4d44f067a6a5416b49a2db89a59 (diff) | |
download | linux-d313852d7ad044476df7f640801aac17080e0521.tar.xz |
smb311: add support for using info level for posix extensions query
Adds calls to the newer info level for query info using SMB3.1.1 posix extensions.
The remaining two places that call the older query info (non-SMB3.1.1 POSIX)
require passing in the fid and can be updated in a later patch.
Signed-off-by: Steve French <stfrench@microsoft.com>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
Diffstat (limited to 'fs/cifs/link.c')
-rw-r--r-- | fs/cifs/link.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/cifs/link.c b/fs/cifs/link.c index c381d2d03ef6..94dab4309fbb 100644 --- a/fs/cifs/link.c +++ b/fs/cifs/link.c @@ -701,7 +701,9 @@ cifs_symlink(struct inode *inode, struct dentry *direntry, const char *symname) cifs_sb_target->local_nls); */ if (rc == 0) { - if (pTcon->unix_ext) + if (pTcon->posix_extensions) + rc = smb311_posix_get_inode_info(&newinode, full_path, inode->i_sb, xid); + else if (pTcon->unix_ext) rc = cifs_get_inode_info_unix(&newinode, full_path, inode->i_sb, xid); else |