diff options
author | Christoph Hellwig <hch@infradead.org> | 2010-10-31 08:35:31 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-31 06:35:15 -0700 |
commit | bb8430a2c8fe2b726033017daadf73c69b0348ea (patch) | |
tree | feb6063cab812816bc67bca4e509995b5ad9217d /Documentation | |
parent | 51ee4b84f5c86935b438d6636f34b523edb415a8 (diff) | |
download | linux-stable-bb8430a2c8fe2b726033017daadf73c69b0348ea.tar.gz linux-stable-bb8430a2c8fe2b726033017daadf73c69b0348ea.tar.bz2 linux-stable-bb8430a2c8fe2b726033017daadf73c69b0348ea.zip |
locks: remove fl_copy_lock lock_manager operation
This one was only used for a nasty hack in nfsd, which has recently
been removed.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/filesystems/Locking | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Documentation/filesystems/Locking b/Documentation/filesystems/Locking index 8a817f656f0a..a91f30890011 100644 --- a/Documentation/filesystems/Locking +++ b/Documentation/filesystems/Locking @@ -322,7 +322,6 @@ fl_release_private: yes yes prototypes: int (*fl_compare_owner)(struct file_lock *, struct file_lock *); void (*fl_notify)(struct file_lock *); /* unblock callback */ - void (*fl_copy_lock)(struct file_lock *, struct file_lock *); void (*fl_release_private)(struct file_lock *); void (*fl_break)(struct file_lock *); /* break_lease callback */ @@ -330,7 +329,6 @@ locking rules: BKL may block fl_compare_owner: yes no fl_notify: yes no -fl_copy_lock: yes no fl_release_private: yes yes fl_break: yes no |