Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2fbb5644 authored by Steve French's avatar Steve French Committed by Steve French
Browse files

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

parent b5d903c2
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -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 */