linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: icoolidge@google.com (Ian Coolidge)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] arm64: spinlock: const qualify read-only functions
Date: Wed, 28 Oct 2015 12:44:55 -0700	[thread overview]
Message-ID: <1446061495-38554-2-git-send-email-icoolidge@google.com> (raw)
In-Reply-To: <1446061495-38554-1-git-send-email-icoolidge@google.com>

This allows assert_spin_locked() to be used against
spinlocks that are const qualified.

Signed-off-by: Ian Coolidge <icoolidge@google.com>
---
 arch/arm64/include/asm/spinlock.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm64/include/asm/spinlock.h b/arch/arm64/include/asm/spinlock.h
index c85e96d..72a7f33 100644
--- a/arch/arm64/include/asm/spinlock.h
+++ b/arch/arm64/include/asm/spinlock.h
@@ -122,17 +122,17 @@ static inline void arch_spin_unlock(arch_spinlock_t *lock)
 	: "memory");
 }
 
-static inline int arch_spin_value_unlocked(arch_spinlock_t lock)
+static inline int arch_spin_value_unlocked(const arch_spinlock_t lock)
 {
 	return lock.owner == lock.next;
 }
 
-static inline int arch_spin_is_locked(arch_spinlock_t *lock)
+static inline int arch_spin_is_locked(const arch_spinlock_t *lock)
 {
 	return !arch_spin_value_unlocked(READ_ONCE(*lock));
 }
 
-static inline int arch_spin_is_contended(arch_spinlock_t *lock)
+static inline int arch_spin_is_contended(const arch_spinlock_t *lock)
 {
 	arch_spinlock_t lockval = READ_ONCE(*lock);
 	return (lockval.next - lockval.owner) > 1;
-- 
2.6.0.rc2.230.g3dd15c0

  reply	other threads:[~2015-10-28 19:44 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-28 19:44 [PATCH] arm: spinlock: const qualify read-only functions Ian Coolidge
2015-10-28 19:44 ` Ian Coolidge [this message]
2015-10-29 21:51 ` Arnd Bergmann
2015-10-30  0:27 ` Ian Coolidge
2015-10-31 17:26   ` Ian Coolidge
2015-10-31 18:34     ` Ard Biesheuvel
2015-10-31 19:46       ` Ian Coolidge
2015-10-31 19:49         ` Ian Coolidge
  -- strict thread matches above, loose matches on Subject: below --
2015-10-29  0:47 Ian Coolidge
2015-10-29  0:47 ` [PATCH] arm64: " Ian Coolidge

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=1446061495-38554-2-git-send-email-icoolidge@google.com \
    --to=icoolidge@google.com \
    --cc=linux-arm-kernel@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).