diff options
author | Pavel Shilovsky <piastry@etersoft.ru> | 2012-02-28 14:04:17 +0300 |
---|---|---|
committer | Pavel Shilovsky <piastry@etersoft.ru> | 2012-05-17 13:07:41 +0400 |
commit | 55157dfbb566e23e3c76489cb028fc82bd985ea1 (patch) | |
tree | 46f8284bce1d3d37f69c33731b637ea82fbffff5 /fs/cifs/cifsglob.h | |
parent | 106dc538abac88e804c63b7fe21ffb09cffaefc7 (diff) |
CIFS: Separate protocol specific part from getlk
Signed-off-by: Pavel Shilovsky <piastry@etersoft.ru>
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 6943448c57e..b6e97f8586d 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -156,10 +156,12 @@ enum smb_version { struct mid_q_entry; struct TCP_Server_Info; +struct cifsFileInfo; struct smb_version_operations { int (*send_cancel)(struct TCP_Server_Info *, void *, struct mid_q_entry *); + bool (*compare_fids)(struct cifsFileInfo *, struct cifsFileInfo *); }; struct smb_version_values { |