[patch V4 15/68] rtmutex: Provide rt_mutex_base_is_locked()

From: Thomas Gleixner
Date: Wed Aug 11 2021 - 08:25:10 EST


Provide rt_mutex_base_is_locked() which will be used for various wrapped
locking primitives for RT.

Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
---
V4: Use READ_ONCE() - Davidlohr
---
include/linux/rtmutex.h | 12 ++++++++++++
1 file changed, 12 insertions(+)

--- a/include/linux/rtmutex.h
+++ b/include/linux/rtmutex.h
@@ -13,6 +13,7 @@
#ifndef __LINUX_RT_MUTEX_H
#define __LINUX_RT_MUTEX_H

+#include <linux/compiler.h>
#include <linux/linkage.h>
#include <linux/rbtree.h>
#include <linux/spinlock_types.h>
@@ -32,6 +33,17 @@ struct rt_mutex_base {
.owner = NULL \
}

+/**
+ * rt_mutex_base_is_locked - is the rtmutex locked
+ * @lock: the mutex to be queried
+ *
+ * Returns true if the mutex is locked, false if unlocked.
+ */
+static inline bool rt_mutex_base_is_locked(struct rt_mutex_base *lock)
+{
+ return READ_ONCE(lock->owner) != NULL;
+}
+
extern void rt_mutex_base_init(struct rt_mutex_base *rtb);

/**