aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/filesystems
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@redhat.com>2011-01-11 10:12:37 -0500
committerJ. Bruce Fields <bfields@redhat.com>2011-01-11 10:13:47 -0500
commit8c3df3e58cde676de4df9363c00f37dbfce08e5c (patch)
treeddf4618c0d20de6cbc237116ac96f5555db65b9e /Documentation/filesystems
parent6f3d772fb8a039de8f21d725f5e38c252b4c0efd (diff)
Documentation: don't remove lock manager fl_release_private
I thought I'd removed the last user of this, but missed fs/locks.c:lease_release_private_callback(). Thanks to Christoph for pointing this out. Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'Documentation/filesystems')
-rw-r--r--Documentation/filesystems/Locking2
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/filesystems/Locking b/Documentation/filesystems/Locking
index 075be12bc531..b6426f15b4ae 100644
--- a/Documentation/filesystems/Locking
+++ b/Documentation/filesystems/Locking
@@ -327,12 +327,14 @@ fl_release_private: yes yes
327prototypes: 327prototypes:
328 int (*fl_compare_owner)(struct file_lock *, struct file_lock *); 328 int (*fl_compare_owner)(struct file_lock *, struct file_lock *);
329 void (*fl_notify)(struct file_lock *); /* unblock callback */ 329 void (*fl_notify)(struct file_lock *); /* unblock callback */
330 void (*fl_release_private)(struct file_lock *);
330 void (*fl_break)(struct file_lock *); /* break_lease callback */ 331 void (*fl_break)(struct file_lock *); /* break_lease callback */
331 332
332locking rules: 333locking rules:
333 BKL may block 334 BKL may block
334fl_compare_owner: yes no 335fl_compare_owner: yes no
335fl_notify: yes no 336fl_notify: yes no
337fl_release_private: yes yes
336fl_break: yes no 338fl_break: yes no
337 339
338 Currently only NFSD and NLM provide instances of this class. None of the 340 Currently only NFSD and NLM provide instances of this class. None of the