diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2017-08-24 03:24:56 +0200 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2017-09-04 21:03:45 +0200 |
commit | 5517554e43131f542e5f95c94c5cd9a1bb989fab (patch) | |
tree | 3e3a16ce06f242c85cf194218227bf57412cbe87 /fs/cifs/smb2proto.h | |
parent | cifs: Add support for reading attributes on SMB2+ (diff) | |
download | linux-5517554e43131f542e5f95c94c5cd9a1bb989fab.tar.xz linux-5517554e43131f542e5f95c94c5cd9a1bb989fab.zip |
cifs: Add support for writing attributes on SMB2+
This adds support for writing extended attributes on SMB2+ shares.
Attributes can be written using the setfattr command.
RH-bz: 1110709
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: Steve French <smfrench@gmail.com>
Reviewed-by: Pavel Shilovsky <pshilov@microsoft.com>
Diffstat (limited to 'fs/cifs/smb2proto.h')
-rw-r--r-- | fs/cifs/smb2proto.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/cifs/smb2proto.h b/fs/cifs/smb2proto.h index 183389bfc8f6..003217099ef3 100644 --- a/fs/cifs/smb2proto.h +++ b/fs/cifs/smb2proto.h @@ -172,6 +172,9 @@ extern int SMB2_set_info(const unsigned int xid, struct cifs_tcon *tcon, extern int SMB2_set_acl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, u64 volatile_fid, struct cifs_ntsd *pnntsd, int pacllen, int aclflag); +extern int SMB2_set_ea(const unsigned int xid, struct cifs_tcon *tcon, + u64 persistent_fid, u64 volatile_fid, + struct smb2_file_full_ea_info *buf, int len); extern int SMB2_set_compression(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, u64 volatile_fid); extern int SMB2_oplock_break(const unsigned int xid, struct cifs_tcon *tcon, |