diff options
author | Pavel Shilovsky <piastry@etersoft.ru> | 2012-02-24 13:41:06 +0100 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2012-05-17 03:13:35 +0200 |
commit | fbd35acadd728eac5d94f360c7cd8cbe12a0379f (patch) | |
tree | 3db901833cee1e177aae17cb35e5d57fa998a27a /fs/cifs/cifsfs.c | |
parent | cifs: convert send_nt_cancel into a version specific op (diff) | |
download | linux-fbd35acadd728eac5d94f360c7cd8cbe12a0379f.tar.xz linux-fbd35acadd728eac5d94f360c7cd8cbe12a0379f.zip |
CIFS: Move locks to cifsFileInfo structure
CIFS brlock cache can be used by several file handles if we have a
write-caching lease on the file that is supported by SMB2 protocol.
Prepate the code to handle this situation correctly by sorting brlocks
by a fid to easily push them in portions when lease break comes.
Signed-off-by: Pavel Shilovsky <piastry@etersoft.ru>
Diffstat (limited to 'fs/cifs/cifsfs.c')
-rw-r--r-- | fs/cifs/cifsfs.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 8a6928c4537d..d6660f7e42f4 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -955,7 +955,6 @@ cifs_init_once(void *inode) struct cifsInodeInfo *cifsi = inode; inode_init_once(&cifsi->vfs_inode); - INIT_LIST_HEAD(&cifsi->llist); mutex_init(&cifsi->lock_mutex); } |