Commit 8c3df3e5 authored by J. Bruce Fields's avatar J. Bruce Fields

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: default avatarJ. Bruce Fields <bfields@redhat.com>
parent 6f3d772f
...@@ -327,12 +327,14 @@ fl_release_private: yes yes ...@@ -327,12 +327,14 @@ fl_release_private: yes yes
prototypes: prototypes:
int (*fl_compare_owner)(struct file_lock *, struct file_lock *); int (*fl_compare_owner)(struct file_lock *, struct file_lock *);
void (*fl_notify)(struct file_lock *); /* unblock callback */ void (*fl_notify)(struct file_lock *); /* unblock callback */
void (*fl_release_private)(struct file_lock *);
void (*fl_break)(struct file_lock *); /* break_lease callback */ void (*fl_break)(struct file_lock *); /* break_lease callback */
locking rules: locking rules:
BKL may block BKL may block
fl_compare_owner: yes no fl_compare_owner: yes no
fl_notify: yes no fl_notify: yes no
fl_release_private: yes yes
fl_break: yes no fl_break: yes no
Currently only NFSD and NLM provide instances of this class. None of the Currently only NFSD and NLM provide instances of this class. None of the
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment