linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Eric Chan <ericchancf@google.com>
To: paul.walmsley@sifive.com, palmer@dabbelt.com, aou@eecs.berkeley.edu
Cc: linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org,
	 ericchancf@google.com
Subject: [PATCH v3 1/4] riscv/barrier: Define __{mb,rmb,wmb}
Date: Tue, 13 Feb 2024 14:28:56 +0000	[thread overview]
Message-ID: <20240213142856.2416073-1-ericchancf@google.com> (raw)
In-Reply-To: <20240213142632.2415127-1-ericchancf@google.com>

Introduce __{mb,rmb,wmb}, and rely on the generic definitions
for {mb,rmb,wmb}.
Although KCSAN is not yet support,
it can be made more consistent with generic instrumentation.

Signed-off-by: Eric Chan <ericchancf@google.com>
---
 arch/riscv/include/asm/barrier.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/riscv/include/asm/barrier.h b/arch/riscv/include/asm/barrier.h
index 110752594228..4c49a8ff2c68 100644
--- a/arch/riscv/include/asm/barrier.h
+++ b/arch/riscv/include/asm/barrier.h
@@ -20,9 +20,9 @@
 	__asm__ __volatile__ ("fence " #p "," #s : : : "memory")
 
 /* These barriers need to enforce ordering on both devices or memory. */
-#define mb()		RISCV_FENCE(iorw,iorw)
-#define rmb()		RISCV_FENCE(ir,ir)
-#define wmb()		RISCV_FENCE(ow,ow)
+#define __mb()		RISCV_FENCE(iorw,iorw)
+#define __rmb()		RISCV_FENCE(ir,ir)
+#define __wmb()		RISCV_FENCE(ow,ow)
 
 /* These barriers do not need to enforce ordering on devices, just memory. */
 #define __smp_mb()	RISCV_FENCE(rw,rw)
-- 
2.43.0.687.g38aa6559b0-goog


  reply	other threads:[~2024-02-13 14:29 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-13 14:26 [PATCH v3 0/4] riscv/barrier: tidying up barrier-related macro Eric Chan
2024-02-13 14:28 ` Eric Chan [this message]
2024-02-13 15:50   ` [PATCH v3 1/4] riscv/barrier: Define __{mb,rmb,wmb} Emil Renner Berthing
2024-02-13 14:29 ` [PATCH v3 2/4] riscv/barrier: Define RISCV_FULL_BARRIER Eric Chan
2024-02-13 14:29 ` [PATCH v3 3/4] riscv/barrier: Consolidate fence definitions Eric Chan
2024-02-13 14:31 ` [PATCH v3 4/4] riscv/barrier: Resolve checkpath.pl error Eric Chan
2024-02-13 15:53   ` Emil Renner Berthing
2024-02-13 20:29     ` [PATCH v3 4/4] riscv/barrier: Resolve checkpatch.pl error Eric Chan

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=20240213142856.2416073-1-ericchancf@google.com \
    --to=ericchancf@google.com \
    --cc=aou@eecs.berkeley.edu \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=palmer@dabbelt.com \
    --cc=paul.walmsley@sifive.com \
    /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).