aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorJeff Layton <jeff.layton@primarydata.com>2015-04-03 09:04:04 -0400
committerJeff Layton <jeff.layton@primarydata.com>2015-04-03 09:04:04 -0400
commitcae80b305e1c3944746dd93e33e9b2ccd5a490c1 (patch)
tree1ede43da59f29e2a9af7cfb13070310a4d073194 /include/linux
parent5c1c669a1b2435e071d566b6db1a8e6b26542ba1 (diff)
locks: change lm_get_owner and lm_put_owner prototypes
The current prototypes for these operations are somewhat awkward as they deal with fl_owners but take struct file_lock arguments. In the future, we'll want to be able to take references without necessarily dealing with a struct file_lock. Change them to take fl_owner_t arguments instead and have the callers deal with assigning the values to the file_lock structs. Signed-off-by: Jeff Layton <jlayton@primarydata.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index f4131e8ead74..e4111a29697e 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -893,8 +893,8 @@ struct file_lock_operations {
893struct lock_manager_operations { 893struct lock_manager_operations {
894 int (*lm_compare_owner)(struct file_lock *, struct file_lock *); 894 int (*lm_compare_owner)(struct file_lock *, struct file_lock *);
895 unsigned long (*lm_owner_key)(struct file_lock *); 895 unsigned long (*lm_owner_key)(struct file_lock *);
896 void (*lm_get_owner)(struct file_lock *, struct file_lock *); 896 fl_owner_t (*lm_get_owner)(fl_owner_t);
897 void (*lm_put_owner)(struct file_lock *); 897 void (*lm_put_owner)(fl_owner_t);
898 void (*lm_notify)(struct file_lock *); /* unblock callback */ 898 void (*lm_notify)(struct file_lock *); /* unblock callback */
899 int (*lm_grant)(struct file_lock *, int); 899 int (*lm_grant)(struct file_lock *, int);
900 bool (*lm_break)(struct file_lock *); 900 bool (*lm_break)(struct file_lock *);