diff options
author | Jeff Layton <jeff.layton@primarydata.com> | 2015-02-16 19:32:03 (GMT) |
---|---|---|
committer | Jeff Layton <jeff.layton@primarydata.com> | 2015-02-16 19:32:03 (GMT) |
commit | e084c1bd40926938ff8d26af3bde34396dd4d06d (patch) | |
tree | 5d4dd8e3eaf5c46430670d4858084230128f3bbd /include | |
parent | 1fa185ebcbcefdc5229c783450c9f0439a69f0c1 (diff) | |
download | linux-e084c1bd40926938ff8d26af3bde34396dd4d06d.tar.xz |
Revert "locks: keep a count of locks on the flctx lists"
This reverts commit 9bd0f45b7037fcfa8b575c7e27d0431d6e6dc3bb.
Linus rightly pointed out that I failed to initialize the counters
when adding them, so they don't work as expected. Just revert this
patch for now.
Reported-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Jeff Layton <jeff.layton@primarydata.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fs.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index e49f10c..a5a303e 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -969,9 +969,6 @@ struct file_lock_context { struct list_head flc_flock; struct list_head flc_posix; struct list_head flc_lease; - int flc_flock_cnt; - int flc_posix_cnt; - int flc_lease_cnt; }; /* The following constant reflects the upper bound of the file/locking space */ |