From: Juergen Gross <jgross@suse.com>
To: xen-devel@lists.xenproject.org
Cc: Juergen Gross <jgross@suse.com>,
Andrew Cooper <andrew.cooper3@citrix.com>,
George Dunlap <george.dunlap@citrix.com>,
Jan Beulich <jbeulich@suse.com>, Julien Grall <julien@xen.org>,
Stefano Stabellini <sstabellini@kernel.org>, Wei Liu <wl@xen.org>
Subject: [PATCH v4 11/12] xen/spinlock: remove indirection through macros for spin_*() functions
Date: Tue, 12 Dec 2023 10:47:24 +0100 [thread overview]
Message-ID: <20231212094725.22184-12-jgross@suse.com> (raw)
In-Reply-To: <20231212094725.22184-1-jgross@suse.com>
In reality all spin_*() functions are macros which are defined to just
call a related real function.
Remove this macro layer, as it is adding complexity without any gain.
Signed-off-by: Juergen Gross <jgross@suse.com>
---
V2:
- new patch
---
xen/common/spinlock.c | 28 +++++++++---------
xen/include/xen/spinlock.h | 58 +++++++++++++++-----------------------
2 files changed, 36 insertions(+), 50 deletions(-)
diff --git a/xen/common/spinlock.c b/xen/common/spinlock.c
index d0f8393504..296bcf33e6 100644
--- a/xen/common/spinlock.c
+++ b/xen/common/spinlock.c
@@ -332,30 +332,30 @@ static void always_inline spin_lock_common(spinlock_tickets_t *t,
LOCK_PROFILE_GOT(block);
}
-void _spin_lock(spinlock_t *lock)
+void spin_lock(spinlock_t *lock)
{
spin_lock_common(&lock->tickets, &lock->debug, LOCK_PROFILE_PAR, NULL,
NULL);
}
-void _spin_lock_cb(spinlock_t *lock, void (*cb)(void *data), void *data)
+void spin_lock_cb(spinlock_t *lock, void (*cb)(void *data), void *data)
{
spin_lock_common(&lock->tickets, &lock->debug, LOCK_PROFILE_PAR, cb, data);
}
-void _spin_lock_irq(spinlock_t *lock)
+void spin_lock_irq(spinlock_t *lock)
{
ASSERT(local_irq_is_enabled());
local_irq_disable();
- _spin_lock(lock);
+ spin_lock(lock);
}
-unsigned long _spin_lock_irqsave(spinlock_t *lock)
+unsigned long __spin_lock_irqsave(spinlock_t *lock)
{
unsigned long flags;
local_irq_save(flags);
- _spin_lock(lock);
+ spin_lock(lock);
return flags;
}
@@ -371,20 +371,20 @@ static void always_inline spin_unlock_common(spinlock_tickets_t *t,
preempt_enable();
}
-void _spin_unlock(spinlock_t *lock)
+void spin_unlock(spinlock_t *lock)
{
spin_unlock_common(&lock->tickets, &lock->debug, LOCK_PROFILE_PAR);
}
-void _spin_unlock_irq(spinlock_t *lock)
+void spin_unlock_irq(spinlock_t *lock)
{
- _spin_unlock(lock);
+ spin_unlock(lock);
local_irq_enable();
}
-void _spin_unlock_irqrestore(spinlock_t *lock, unsigned long flags)
+void spin_unlock_irqrestore(spinlock_t *lock, unsigned long flags)
{
- _spin_unlock(lock);
+ spin_unlock(lock);
local_irq_restore(flags);
}
@@ -393,7 +393,7 @@ static int always_inline spin_is_locked_common(const spinlock_tickets_t *t)
return t->head != t->tail;
}
-int _spin_is_locked(const spinlock_t *lock)
+int spin_is_locked(const spinlock_t *lock)
{
return spin_is_locked_common(&lock->tickets);
}
@@ -429,7 +429,7 @@ static int always_inline spin_trylock_common(spinlock_tickets_t *t,
return 1;
}
-int _spin_trylock(spinlock_t *lock)
+int spin_trylock(spinlock_t *lock)
{
return spin_trylock_common(&lock->tickets, &lock->debug, LOCK_PROFILE_PAR);
}
@@ -453,7 +453,7 @@ static void always_inline spin_barrier_common(spinlock_tickets_t *t,
smp_mb();
}
-void _spin_barrier(spinlock_t *lock)
+void spin_barrier(spinlock_t *lock)
{
spin_barrier_common(&lock->tickets, &lock->debug, LOCK_PROFILE_PAR);
}
diff --git a/xen/include/xen/spinlock.h b/xen/include/xen/spinlock.h
index ca18b9250a..87946965b2 100644
--- a/xen/include/xen/spinlock.h
+++ b/xen/include/xen/spinlock.h
@@ -224,18 +224,30 @@ typedef struct rspinlock {
#define spin_lock_init(l) (*(l) = (spinlock_t)SPIN_LOCK_UNLOCKED)
#define rspin_lock_init(l) (*(l) = (rspinlock_t)RSPIN_LOCK_UNLOCKED)
-void _spin_lock(spinlock_t *lock);
-void _spin_lock_cb(spinlock_t *lock, void (*cb)(void *data), void *data);
-void _spin_lock_irq(spinlock_t *lock);
-unsigned long _spin_lock_irqsave(spinlock_t *lock);
+void spin_lock(spinlock_t *lock);
+void spin_lock_cb(spinlock_t *lock, void (*cb)(void *data), void *data);
+void spin_lock_irq(spinlock_t *lock);
+#define spin_lock_irqsave(l, f) \
+ ({ \
+ BUILD_BUG_ON(sizeof(f) != sizeof(unsigned long)); \
+ ((f) = __spin_lock_irqsave(l)); \
+ })
+unsigned long __spin_lock_irqsave(spinlock_t *lock);
-void _spin_unlock(spinlock_t *lock);
-void _spin_unlock_irq(spinlock_t *lock);
-void _spin_unlock_irqrestore(spinlock_t *lock, unsigned long flags);
+void spin_unlock(spinlock_t *lock);
+void spin_unlock_irq(spinlock_t *lock);
+void spin_unlock_irqrestore(spinlock_t *lock, unsigned long flags);
-int _spin_is_locked(const spinlock_t *lock);
-int _spin_trylock(spinlock_t *lock);
-void _spin_barrier(spinlock_t *lock);
+int spin_is_locked(const spinlock_t *lock);
+int spin_trylock(spinlock_t *lock);
+#define spin_trylock_irqsave(lock, flags) \
+({ \
+ local_irq_save(flags); \
+ spin_trylock(lock) ? \
+ 1 : ({ local_irq_restore(flags); 0; }); \
+})
+/* Ensure a lock is quiescent between two critical operations. */
+void spin_barrier(spinlock_t *lock);
/*
* rspin_[un]lock(): Use these forms when the lock can (safely!) be
@@ -270,32 +282,6 @@ void nrspin_unlock_irq(rspinlock_t *lock);
unsigned long __nrspin_lock_irqsave(rspinlock_t *lock);
void nrspin_unlock_irqrestore(rspinlock_t *lock, unsigned long flags);
-#define spin_lock(l) _spin_lock(l)
-#define spin_lock_cb(l, c, d) _spin_lock_cb(l, c, d)
-#define spin_lock_irq(l) _spin_lock_irq(l)
-#define spin_lock_irqsave(l, f) \
- ({ \
- BUILD_BUG_ON(sizeof(f) != sizeof(unsigned long)); \
- ((f) = _spin_lock_irqsave(l)); \
- })
-
-#define spin_unlock(l) _spin_unlock(l)
-#define spin_unlock_irq(l) _spin_unlock_irq(l)
-#define spin_unlock_irqrestore(l, f) _spin_unlock_irqrestore(l, f)
-
-#define spin_is_locked(l) _spin_is_locked(l)
-#define spin_trylock(l) _spin_trylock(l)
-
-#define spin_trylock_irqsave(lock, flags) \
-({ \
- local_irq_save(flags); \
- spin_trylock(lock) ? \
- 1 : ({ local_irq_restore(flags); 0; }); \
-})
-
#define spin_lock_kick(l) arch_lock_signal_wmb()
-/* Ensure a lock is quiescent between two critical operations. */
-#define spin_barrier(l) _spin_barrier(l)
-
#endif /* __SPINLOCK_H__ */
--
2.35.3
next prev parent reply other threads:[~2023-12-12 9:54 UTC|newest]
Thread overview: 73+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-12 9:47 [PATCH v4 00/12] xen/spinlock: make recursive spinlocks a dedicated type Juergen Gross
2023-12-12 9:47 ` [PATCH v4 01/12] xen/spinlock: reduce lock profile ifdefs Juergen Gross
2023-12-12 12:44 ` Julien Grall
2023-12-12 9:47 ` [PATCH v4 02/12] xen/spinlock: make spinlock initializers more readable Juergen Gross
2023-12-12 9:47 ` [PATCH v4 03/12] xen/spinlock: introduce new type for recursive spinlocks Juergen Gross
2023-12-12 12:57 ` Julien Grall
2023-12-12 13:04 ` Juergen Gross
2023-12-12 13:07 ` Julien Grall
2023-12-21 10:34 ` Jan Beulich
2023-12-21 11:06 ` Juergen Gross
2023-12-21 11:07 ` Jan Beulich
2023-12-12 9:47 ` [PATCH v4 04/12] xen/spinlock: rename recursive lock functions Juergen Gross
2023-12-12 12:59 ` Julien Grall
2024-02-28 14:59 ` Jan Beulich
2023-12-12 9:47 ` [PATCH v4 05/12] xen/spinlock: add rspin_[un]lock_irq[save|restore]() Juergen Gross
2023-12-12 13:03 ` Julien Grall
2023-12-12 14:16 ` Juergen Gross
2024-02-28 15:09 ` Jan Beulich
2024-02-28 15:21 ` Jürgen Groß
2023-12-12 9:47 ` [PATCH v4 06/12] xen/spinlock: make struct lock_profile rspinlock_t aware Juergen Gross
2023-12-12 18:42 ` Julien Grall
2023-12-13 6:05 ` Juergen Gross
2023-12-13 8:32 ` Julien Grall
2023-12-13 8:36 ` Jan Beulich
2023-12-13 9:07 ` Juergen Gross
2024-02-28 15:19 ` Jan Beulich
2024-02-28 15:43 ` Jürgen Groß
2024-02-28 16:02 ` Jan Beulich
2024-02-28 16:22 ` Jürgen Groß
2023-12-12 9:47 ` [PATCH v4 07/12] xen/spinlock: add explicit non-recursive locking functions Juergen Gross
2023-12-12 18:49 ` Julien Grall
2023-12-13 6:17 ` Juergen Gross
2023-12-13 8:36 ` Julien Grall
2023-12-13 9:11 ` Juergen Gross
2024-02-29 13:49 ` Jan Beulich
2024-02-29 13:56 ` Juergen Gross
2023-12-12 9:47 ` [PATCH v4 08/12] xen/spinlock: add another function level Juergen Gross
2023-12-12 19:10 ` Julien Grall
2023-12-13 6:23 ` Juergen Gross
2023-12-13 8:43 ` Julien Grall
2023-12-13 9:17 ` Juergen Gross
2023-12-13 9:48 ` Julien Grall
2023-12-13 9:55 ` Juergen Gross
2023-12-13 10:06 ` Jan Beulich
2023-12-13 10:04 ` Jan Beulich
2024-02-29 13:59 ` Jan Beulich
2023-12-12 9:47 ` [PATCH v4 09/12] xen/spinlock: add missing rspin_is_locked() and rspin_barrier() Juergen Gross
2024-02-29 14:14 ` Jan Beulich
2024-02-29 14:18 ` Jürgen Groß
2023-12-12 9:47 ` [PATCH v4 10/12] xen/spinlock: split recursive spinlocks from normal ones Juergen Gross
2024-02-29 15:32 ` Jan Beulich
2024-02-29 15:45 ` Jürgen Groß
2024-03-01 14:37 ` Juergen Gross
2024-03-04 7:25 ` Jan Beulich
2024-03-04 7:43 ` Jürgen Groß
2023-12-12 9:47 ` Juergen Gross [this message]
2024-02-29 15:35 ` [PATCH v4 11/12] xen/spinlock: remove indirection through macros for spin_*() functions Jan Beulich
2023-12-12 9:47 ` [PATCH v4 12/12] xen/spinlock: support higher number of cpus Juergen Gross
2023-12-12 10:10 ` Julien Grall
2023-12-12 11:09 ` Juergen Gross
2023-12-12 11:40 ` Julien Grall
2023-12-12 12:11 ` Juergen Gross
2023-12-12 12:22 ` Julien Grall
2023-12-12 12:39 ` Julien Grall
2023-12-12 13:08 ` Juergen Gross
2023-12-12 14:04 ` Julien Grall
2024-02-29 15:46 ` Jan Beulich
2024-02-29 16:29 ` Jürgen Groß
2024-02-29 16:31 ` Jan Beulich
2024-02-29 16:45 ` Juergen Gross
2024-02-29 16:54 ` Jan Beulich
2024-02-29 17:04 ` Jürgen Groß
2024-02-29 17:07 ` Jan Beulich
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=20231212094725.22184-12-jgross@suse.com \
--to=jgross@suse.com \
--cc=andrew.cooper3@citrix.com \
--cc=george.dunlap@citrix.com \
--cc=jbeulich@suse.com \
--cc=julien@xen.org \
--cc=sstabellini@kernel.org \
--cc=wl@xen.org \
--cc=xen-devel@lists.xenproject.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.