diff options
author | Steve French <smfrench@gmail.com> | 2015-06-24 03:17:02 -0500 |
---|---|---|
committer | Steve French <steve.french@primarydata.com> | 2015-06-28 21:15:45 -0500 |
commit | b3152e2c7aa9ad0c50085738d048fbf16d01d32d (patch) | |
tree | 2015cead72bda343290909c2187cf3039171d53b /fs/cifs/cifsglob.h | |
parent | 9d1b06602eb6716220c5988735c0b4944d62abaa (diff) |
Add ioctl to set integrity
set integrity increases reliability of files stored on SMB3 servers.
Add ioctl to allow setting this on files on SMB3 and later mounts.
Signed-off-by: Steve French <steve.french@primarydata.com>
Diffstat (limited to 'fs/cifs/cifsglob.h')
-rw-r--r-- | fs/cifs/cifsglob.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 81194e6c7601..b406a32deb1f 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -372,6 +372,8 @@ struct smb_version_operations { void (*new_lease_key)(struct cifs_fid *); int (*generate_signingkey)(struct cifs_ses *); int (*calc_signature)(struct smb_rqst *, struct TCP_Server_Info *); + int (*set_integrity)(const unsigned int, struct cifs_tcon *tcon, + struct cifsFileInfo *src_file); int (*query_mf_symlink)(unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const unsigned char *, char *, unsigned int *); |