diff options
author | Steve French <stfrench@microsoft.com> | 2020-02-12 22:37:08 -0600 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-02-14 11:10:06 -0600 |
commit | 2c6251ad91afc2e3c671c904702e8d121d3d50c0 (patch) | |
tree | dec26dc2b83c1e4720168c77551de44ad5bbc12b /fs/cifs | |
parent | f52aa79df43c4509146140de0241bc21a4a3b4c7 (diff) | |
download | linux-2c6251ad91afc2e3c671c904702e8d121d3d50c0.tar.bz2 |
cifs: enable change notification for SMB2.1 dialect
It was originally enabled only for SMB3 or later dialects, but
had requests to add it to SMB2.1 mounts as well given the
large number of systems at that dialect level.
Signed-off-by: Steve French <stfrench@microsoft.com>
Reported-by: L Walsh <cifs@tlinx.org>
Acked-by: Ronnie Sahlberg <lsahlber@redhat.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/smb2ops.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/smb2ops.c b/fs/cifs/smb2ops.c index baa825f4cec0..aef33630e315 100644 --- a/fs/cifs/smb2ops.c +++ b/fs/cifs/smb2ops.c @@ -4795,6 +4795,7 @@ struct smb_version_operations smb21_operations = { .wp_retry_size = smb2_wp_retry_size, .dir_needs_close = smb2_dir_needs_close, .enum_snapshots = smb3_enum_snapshots, + .notify = smb3_notify, .get_dfs_refer = smb2_get_dfs_refer, .select_sectype = smb2_select_sectype, #ifdef CONFIG_CIFS_XATTR |