1
0
Fork 0

smb3: note that smb3.11 posix extensions mount option is experimental

Signed-off-by: Steve French <stfrench@microsoft.com>
hifive-unleashed-5.1
Steve French 2018-06-12 12:11:31 -05:00 committed by Steve French
parent b5d903c2d6
commit 2fbb56446f
1 changed files with 4 additions and 1 deletions

View File

@ -3029,8 +3029,11 @@ cifs_get_tcon(struct cifs_ses *ses, struct smb_vol *volume_info)
#ifdef CONFIG_CIFS_SMB311
if ((volume_info->linux_ext) && (ses->server->posix_ext_supported)) {
if (ses->server->vals->protocol_id == SMB311_PROT_ID)
if (ses->server->vals->protocol_id == SMB311_PROT_ID) {
tcon->posix_extensions = true;
printk_once(KERN_WARNING
"SMB3.11 POSIX Extensions are experimental\n");
}
}
#endif /* 311 */