diff options
author | Steve French <stfrench@microsoft.com> | 2020-06-11 22:43:01 -0500 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-06-12 08:54:12 -0500 |
commit | d313852d7ad044476df7f640801aac17080e0521 (patch) | |
tree | b9dea6d7abdfdb183f467df26f17726479909305 /fs/cifs/dir.c | |
parent | 790434ff9848a4d44f067a6a5416b49a2db89a59 (diff) | |
download | linux-d313852d7ad044476df7f640801aac17080e0521.tar.bz2 |
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/dir.c')
-rw-r--r-- | fs/cifs/dir.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c index aa61ffab8ab8..398c1eef7190 100644 --- a/fs/cifs/dir.c +++ b/fs/cifs/dir.c @@ -411,6 +411,7 @@ cifs_create_get_file_info: rc = cifs_get_inode_info_unix(&newinode, full_path, inode->i_sb, xid); else { + /* TODO: Add support for calling POSIX query info here, but passing in fid */ rc = cifs_get_inode_info(&newinode, full_path, buf, inode->i_sb, xid, fid); if (newinode) { |