]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
fs/lock: add helper locks_owner_has_blockers to check for blockers
authorDai Ngo <dai.ngo@oracle.com>
Mon, 2 May 2022 21:19:24 +0000 (14:19 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 10 Apr 2024 14:19:04 +0000 (16:19 +0200)
[ Upstream commit 591502c5cb325b1c6ec59ab161927d606b918aa0 ]

Add helper locks_owner_has_blockers to check if there is any blockers
for a given lockowner.

Reviewed-by: J. Bruce Fields <bfields@fieldses.org>
Signed-off-by: Dai Ngo <dai.ngo@oracle.com>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
fs/locks.c
include/linux/fs.h

index 4899a4666f24d83207f76f6b28a851f179b29162..f8c4844ebcce4bd94596a22f7efa295f3910adb2 100644 (file)
@@ -376,6 +376,34 @@ void locks_release_private(struct file_lock *fl)
 }
 EXPORT_SYMBOL_GPL(locks_release_private);
 
+/**
+ * locks_owner_has_blockers - Check for blocking lock requests
+ * @flctx: file lock context
+ * @owner: lock owner
+ *
+ * Return values:
+ *   %true: @owner has at least one blocker
+ *   %false: @owner has no blockers
+ */
+bool locks_owner_has_blockers(struct file_lock_context *flctx,
+               fl_owner_t owner)
+{
+       struct file_lock *fl;
+
+       spin_lock(&flctx->flc_lock);
+       list_for_each_entry(fl, &flctx->flc_posix, fl_list) {
+               if (fl->fl_owner != owner)
+                       continue;
+               if (!list_empty(&fl->fl_blocked_requests)) {
+                       spin_unlock(&flctx->flc_lock);
+                       return true;
+               }
+       }
+       spin_unlock(&flctx->flc_lock);
+       return false;
+}
+EXPORT_SYMBOL_GPL(locks_owner_has_blockers);
+
 /* Free a lock which is not in use. */
 void locks_free_lock(struct file_lock *fl)
 {
index f32723d937fb5e0e112ab100c2635e855ef8a438..9b7ce642d4f087b41d7ee6064968ac9b25fe3880 100644 (file)
@@ -1212,6 +1212,8 @@ extern void lease_unregister_notifier(struct notifier_block *);
 struct files_struct;
 extern void show_fd_locks(struct seq_file *f,
                         struct file *filp, struct files_struct *files);
+extern bool locks_owner_has_blockers(struct file_lock_context *flctx,
+                       fl_owner_t owner);
 #else /* !CONFIG_FILE_LOCKING */
 static inline int fcntl_getlk(struct file *file, unsigned int cmd,
                              struct flock __user *user)
@@ -1352,6 +1354,11 @@ static inline int lease_modify(struct file_lock *fl, int arg,
 struct files_struct;
 static inline void show_fd_locks(struct seq_file *f,
                        struct file *filp, struct files_struct *files) {}
+static inline bool locks_owner_has_blockers(struct file_lock_context *flctx,
+                       fl_owner_t owner)
+{
+       return false;
+}
 #endif /* !CONFIG_FILE_LOCKING */
 
 static inline struct inode *file_inode(const struct file *f)