diff mbox series

[05/20] filelock: convert some internal functions to use file_lock_core instead

Message ID 20240116-flsplit-v1-5-c9d0f4370a5d@kernel.org (mailing list archive)
State New
Headers show
Series filelock: split struct file_lock into file_lock and file_lease structs | expand

Commit Message

Jeffrey Layton Jan. 16, 2024, 7:46 p.m. UTC
Convert some internal fs/locks.c function to take and deal with struct
file_lock_core instead of struct file_lock:

- locks_init_lock_heads
- locks_alloc_lock
- locks_init_lock

Signed-off-by: Jeff Layton <jlayton@kernel.org>
---
 fs/locks.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
diff mbox series

Patch

diff --git a/fs/locks.c b/fs/locks.c
index afe6e82a6207..42221cecd331 100644
--- a/fs/locks.c
+++ b/fs/locks.c
@@ -258,13 +258,13 @@  locks_free_lock_context(struct inode *inode)
 	}
 }
 
-static void locks_init_lock_heads(struct file_lock *fl)
+static void locks_init_lock_heads(struct file_lock_core *flc)
 {
-	INIT_HLIST_NODE(&fl->fl_core.fl_link);
-	INIT_LIST_HEAD(&fl->fl_core.fl_list);
-	INIT_LIST_HEAD(&fl->fl_core.fl_blocked_requests);
-	INIT_LIST_HEAD(&fl->fl_core.fl_blocked_member);
-	init_waitqueue_head(&fl->fl_core.fl_wait);
+	INIT_HLIST_NODE(&flc->fl_link);
+	INIT_LIST_HEAD(&flc->fl_list);
+	INIT_LIST_HEAD(&flc->fl_blocked_requests);
+	INIT_LIST_HEAD(&flc->fl_blocked_member);
+	init_waitqueue_head(&flc->fl_wait);
 }
 
 /* Allocate an empty lock structure. */
@@ -273,7 +273,7 @@  struct file_lock *locks_alloc_lock(void)
 	struct file_lock *fl = kmem_cache_zalloc(filelock_cache, GFP_KERNEL);
 
 	if (fl)
-		locks_init_lock_heads(fl);
+		locks_init_lock_heads(&fl->fl_core);
 
 	return fl;
 }
@@ -354,7 +354,7 @@  locks_dispose_list(struct list_head *dispose)
 void locks_init_lock(struct file_lock *fl)
 {
 	memset(fl, 0, sizeof(struct file_lock));
-	locks_init_lock_heads(fl);
+	locks_init_lock_heads(&fl->fl_core);
 }
 EXPORT_SYMBOL(locks_init_lock);