diff options
author | Pavel Shilovsky <piastry@etersoft.ru> | 2012-02-28 12:23:34 +0100 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2012-05-17 03:13:36 +0200 |
commit | 106dc538abac88e804c63b7fe21ffb09cffaefc7 (patch) | |
tree | f3c4a0075e09c852b42a6f265a4dea42761352ed /fs/cifs/smb1ops.c | |
parent | CIFS: Convert lock type to 32 bit variable (diff) | |
download | linux-106dc538abac88e804c63b7fe21ffb09cffaefc7.tar.xz linux-106dc538abac88e804c63b7fe21ffb09cffaefc7.zip |
CIFS: Separate protocol specific lock type handling
Signed-off-by: Pavel Shilovsky <piastry@etersoft.ru>
Diffstat (limited to 'fs/cifs/smb1ops.c')
-rw-r--r-- | fs/cifs/smb1ops.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/cifs/smb1ops.c b/fs/cifs/smb1ops.c index fa486f0ca8b2..af48a8b8b75d 100644 --- a/fs/cifs/smb1ops.c +++ b/fs/cifs/smb1ops.c @@ -20,6 +20,7 @@ #include "cifsglob.h" #include "cifsproto.h" #include "cifs_debug.h" +#include "cifspdu.h" /* * An NT cancel request header looks just like the original request except: @@ -65,4 +66,8 @@ struct smb_version_operations smb1_operations = { struct smb_version_values smb1_values = { .version_string = SMB1_VERSION_STRING, + .large_lock_type = LOCKING_ANDX_LARGE_FILES, + .exclusive_lock_type = 0, + .shared_lock_type = LOCKING_ANDX_SHARED_LOCK, + .unlock_lock_type = 0, }; |