From: Brian Gerst <brgerst@gmail.com>
To: linux-kernel@vger.kernel.org, x86@kernel.org
Cc: Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@kernel.org>, Borislav Petkov <bp@alien8.de>,
"H . Peter Anvin" <hpa@zytor.com>,
Andy Lutomirski <luto@kernel.org>,
Peter Zijlstra <peterz@infradead.org>,
Nick Desaulniers <ndesaulniers@google.com>,
Brian Gerst <brgerst@gmail.com>
Subject: [PATCH 1/7] x86/percpu: Introduce size abstraction macros
Date: Sun, 17 May 2020 11:29:10 -0400 [thread overview]
Message-ID: <20200517152916.3146539-2-brgerst@gmail.com> (raw)
In-Reply-To: <20200517152916.3146539-1-brgerst@gmail.com>
In preparation for cleaning up the percpu operations, define macros for
abstraction based on the width of the operation.
Signed-off-by: Brian Gerst <brgerst@gmail.com>
---
arch/x86/include/asm/percpu.h | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/arch/x86/include/asm/percpu.h b/arch/x86/include/asm/percpu.h
index 2278797c769d..89f918a3e99b 100644
--- a/arch/x86/include/asm/percpu.h
+++ b/arch/x86/include/asm/percpu.h
@@ -87,6 +87,36 @@
* don't give an lvalue though). */
extern void __bad_percpu_size(void);
+#define __pcpu_type_1 u8
+#define __pcpu_type_2 u16
+#define __pcpu_type_4 u32
+#define __pcpu_type_8 u64
+
+#define __pcpu_cast_1(val) ((u8)((unsigned long) val))
+#define __pcpu_cast_2(val) ((u16)((unsigned long) val))
+#define __pcpu_cast_4(val) ((u32)((unsigned long) val))
+#define __pcpu_cast_8(val) ((u64)(val))
+
+#define __pcpu_op1_1(op, dst) op "b " dst
+#define __pcpu_op1_2(op, dst) op "w " dst
+#define __pcpu_op1_4(op, dst) op "l " dst
+#define __pcpu_op1_8(op, dst) op "q " dst
+
+#define __pcpu_op2_1(op, src, dst) op "b " src ", " dst
+#define __pcpu_op2_2(op, src, dst) op "w " src ", " dst
+#define __pcpu_op2_4(op, src, dst) op "l " src ", " dst
+#define __pcpu_op2_8(op, src, dst) op "q " src ", " dst
+
+#define __pcpu_reg_1(out, x) out "q" (x)
+#define __pcpu_reg_2(out, x) out "r" (x)
+#define __pcpu_reg_4(out, x) out "r" (x)
+#define __pcpu_reg_8(out, x) out "r" (x)
+
+#define __pcpu_reg_imm_1(x) "qi" (x)
+#define __pcpu_reg_imm_2(x) "ri" (x)
+#define __pcpu_reg_imm_4(x) "ri" (x)
+#define __pcpu_reg_imm_8(x) "re" (x)
+
#define percpu_to_op(qual, op, var, val) \
do { \
typedef typeof(var) pto_T__; \
--
2.25.4
next prev parent reply other threads:[~2020-05-17 15:29 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-17 15:29 [PATCH 0/7] x86: Clean up percpu operations Brian Gerst
2020-05-17 15:29 ` Brian Gerst [this message]
2020-05-18 23:48 ` [PATCH 1/7] x86/percpu: Introduce size abstraction macros Nick Desaulniers
2020-05-17 15:29 ` [PATCH 2/7] x86/percpu: Clean up percpu_to_op() Brian Gerst
2020-05-18 21:15 ` Nick Desaulniers
2020-05-19 3:38 ` Brian Gerst
2020-05-20 17:26 ` Nick Desaulniers
2020-05-21 13:06 ` Brian Gerst
2020-05-26 17:54 ` Nick Desaulniers
2020-05-17 15:29 ` [PATCH 3/7] x86/percpu: Clean up percpu_from_op() Brian Gerst
2020-05-18 21:27 ` Nick Desaulniers
2020-05-17 15:29 ` [PATCH 4/7] x86/percpu: Clean up percpu_add_op() Brian Gerst
2020-05-17 19:18 ` kbuild test robot
2020-05-17 20:04 ` kbuild test robot
2020-05-18 23:42 ` Nick Desaulniers
2020-05-17 15:29 ` [PATCH 5/7] x86/percpu: Clean up percpu_add_return_op() Brian Gerst
2020-05-18 22:46 ` Nick Desaulniers
2020-05-18 23:45 ` Brian Gerst
2020-05-17 15:29 ` [PATCH 6/7] x86/percpu: Clean up percpu_xchg_op() Brian Gerst
2020-05-18 22:15 ` Nick Desaulniers
2020-05-17 15:29 ` [PATCH 7/7] x86/percpu: Clean up percpu_cmpxchg_op() Brian Gerst
2020-05-18 22:28 ` Nick Desaulniers
2020-05-18 19:19 ` [PATCH 0/7] x86: Clean up percpu operations Nick Desaulniers
2020-05-18 23:54 ` Nick Desaulniers
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=20200517152916.3146539-2-brgerst@gmail.com \
--to=brgerst@gmail.com \
--cc=bp@alien8.de \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@kernel.org \
--cc=mingo@kernel.org \
--cc=ndesaulniers@google.com \
--cc=peterz@infradead.org \
--cc=tglx@linutronix.de \
--cc=x86@kernel.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