diff options
author | Pavel Shilovsky <pshilovsky@samba.org> | 2012-09-19 03:20:28 +0400 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2012-09-25 06:46:27 +0400 |
commit | 7a5cfb1965854132f2f382eade8c6ce2eeb6f692 (patch) | |
tree | 93f982d31fbcf23418423319be26ca77b364f83c /fs/cifs/smb2pdu.h | |
parent | 1d8c4c0009deda22b436b1f0ab9f2885863717fc (diff) | |
download | linux-7a5cfb1965854132f2f382eade8c6ce2eeb6f692.tar.xz |
CIFS: Add SMB2 support for flush
Signed-off-by: Pavel Shilovsky <pshilovsky@samba.org>
Signed-off-by: Steve French <smfrench@gmail.com>
Diffstat (limited to 'fs/cifs/smb2pdu.h')
-rw-r--r-- | fs/cifs/smb2pdu.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/fs/cifs/smb2pdu.h b/fs/cifs/smb2pdu.h index 0e962cbf8166..f5bf63f66971 100644 --- a/fs/cifs/smb2pdu.h +++ b/fs/cifs/smb2pdu.h @@ -453,6 +453,21 @@ struct smb2_close_rsp { __le32 Attributes; } __packed; +struct smb2_flush_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 24 */ + __le16 Reserved1; + __le32 Reserved2; + __u64 PersistentFileId; /* opaque endianness */ + __u64 VolatileFileId; /* opaque endianness */ +} __packed; + +struct smb2_flush_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 Reserved; +} __packed; + struct smb2_echo_req { struct smb2_hdr hdr; __le16 StructureSize; /* Must be 4 */ |