From: Chandan Babu R <chandan.babu@oracle.com>
To: linux-xfs@vger.kernel.org
Cc: Dave Chinner <dchinner@redhat.com>,
david@fromorbit.com, sandeen@sandeen.net, djwong@kernel.org
Subject: [PATCH V2 5/5] libxfs: add wrappers for kernel semaphores
Date: Fri, 24 Sep 2021 19:39:12 +0530 [thread overview]
Message-ID: <20210924140912.201481-6-chandan.babu@oracle.com> (raw)
In-Reply-To: <20210924140912.201481-1-chandan.babu@oracle.com>
From: Dave Chinner <dchinner@redhat.com>
Implemented via pthread mutexes.
On Linux, fast pthread mutexes don't actaully check which thread
owns the lock on unlock, so can be used in situations where the
unlock occurs in a different thread to the lock. This is
non-portable behaviour, so if other platforms are supported, this
may need to be converted to posix semaphores.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
---
include/Makefile | 1 +
include/libxfs.h | 1 +
include/sema.h | 35 +++++++++++++++++++++++++++++++++++
libxfs/libxfs_priv.h | 1 +
4 files changed, 38 insertions(+)
create mode 100644 include/sema.h
diff --git a/include/Makefile b/include/Makefile
index 98031e70..ce89d023 100644
--- a/include/Makefile
+++ b/include/Makefile
@@ -17,6 +17,7 @@ LIBHFILES = libxfs.h \
kmem.h \
list.h \
parent.h \
+ sema.h \
spinlock.h \
xfs_inode.h \
xfs_log_recover.h \
diff --git a/include/libxfs.h b/include/libxfs.h
index 61475347..ca5a21b0 100644
--- a/include/libxfs.h
+++ b/include/libxfs.h
@@ -20,6 +20,7 @@
#include "atomic.h"
#include "spinlock.h"
#include "completion.h"
+#include "sema.h"
#include "xfs_types.h"
#include "xfs_fs.h"
diff --git a/include/sema.h b/include/sema.h
new file mode 100644
index 00000000..bcccb156
--- /dev/null
+++ b/include/sema.h
@@ -0,0 +1,35 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Copyright (c) 2019-20 RedHat, Inc.
+ * All Rights Reserved.
+ */
+#ifndef __LIBXFS_SEMA_H__
+#define __LIBXFS_SEMA_H__
+
+/*
+ * This implements kernel compatible semaphore _exclusion_ semantics. It does
+ * not implement counting semaphore behaviour.
+ *
+ * This makes use of the fact that fast pthread mutexes on Linux don't check
+ * that the unlocker is the same thread that locked the mutex, and hence can be
+ * unlocked in a different thread safely.
+ *
+ * If this needs to be portable or we require counting semaphore behaviour in
+ * libxfs code, this requires re-implementation based on posix semaphores.
+ */
+struct semaphore {
+ pthread_mutex_t lock;
+};
+
+#define sema_init(l, nolock) \
+do { \
+ pthread_mutex_init(&(l)->lock, NULL); \
+ if (!nolock) \
+ pthread_mutex_lock(&(l)->lock); \
+} while (0)
+
+#define down(l) pthread_mutex_lock(&(l)->lock)
+#define down_trylock(l) pthread_mutex_trylock(&(l)->lock)
+#define up(l) pthread_mutex_unlock(&(l)->lock)
+
+#endif /* __LIBXFS_SEMA_H__ */
diff --git a/libxfs/libxfs_priv.h b/libxfs/libxfs_priv.h
index 9f28fd90..1fc243cf 100644
--- a/libxfs/libxfs_priv.h
+++ b/libxfs/libxfs_priv.h
@@ -50,6 +50,7 @@
#include "atomic.h"
#include "spinlock.h"
#include "completion.h"
+#include "sema.h"
#include "xfs_types.h"
#include "xfs_arch.h"
--
2.30.2
prev parent reply other threads:[~2021-09-24 14:10 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-24 14:09 [PATCH V2 0/5] xfsprogs: generic serialisation primitives Chandan Babu R
2021-09-24 14:09 ` [PATCH V2 1/5] xfsprogs: introduce liburcu support Chandan Babu R
2021-09-24 21:51 ` Eric Sandeen
2021-09-25 10:24 ` Chandan Babu R
2021-09-25 23:05 ` Dave Chinner
2021-09-27 18:48 ` Eric Sandeen
2021-09-29 20:46 ` Eric Sandeen
2021-09-24 14:09 ` [PATCH V2 2/5] libxfs: add spinlock_t wrapper Chandan Babu R
2021-09-24 22:06 ` Eric Sandeen
2021-09-24 14:09 ` [PATCH V2 3/5] atomic: convert to uatomic Chandan Babu R
2021-09-24 22:13 ` Eric Sandeen
2021-09-25 10:26 ` Chandan Babu R
2021-09-25 23:15 ` Dave Chinner
2021-09-25 23:18 ` Eric Sandeen
2021-09-25 23:49 ` Dave Chinner
2021-09-24 14:09 ` [PATCH V2 4/5] libxfs: add kernel-compatible completion API Chandan Babu R
2021-09-24 23:02 ` Eric Sandeen
2021-09-25 10:29 ` Chandan Babu R
2021-09-27 20:33 ` Darrick J. Wong
2021-09-27 20:55 ` Dave Chinner
2021-09-24 14:09 ` Chandan Babu R [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210924140912.201481-6-chandan.babu@oracle.com \
--to=chandan.babu@oracle.com \
--cc=david@fromorbit.com \
--cc=dchinner@redhat.com \
--cc=djwong@kernel.org \
--cc=linux-xfs@vger.kernel.org \
--cc=sandeen@sandeen.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox