Linux SNPS ARC Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [RESEND PATCH v2] devres: Really align data field to unsigned long long
@ 2018-07-09  4:44 Alexey Brodkin
  2018-07-09  5:48 ` Greg KH
  2018-07-09  9:16 ` David Laight
  0 siblings, 2 replies; 19+ messages in thread
From: Alexey Brodkin @ 2018-07-09  4:44 UTC (permalink / raw)
  To: linux-snps-arc

Depending on ABI "long long" type of a particular 32-bit CPU
might be aligned by either word (32-bits) or double word (64-bits).
Make sure "data" is really 64-bit aligned for any 32-bit CPU.

At least for 32-bit ARC cores ABI requires "long long" types
to be aligned by normal 32-bit word. This makes "data" field aligned to
12 bytes. Which is still OK as long as we use 32-bit data only.

But once we want to use native atomic64_t type (i.e. when we use special
instructions LLOCKD/SCONDD for accessing 64-bit data) we easily hit
misaligned access exception.

That's because even on CPUs capable of non-aligned data access LL/SC
instructions require strict alignment.

Signed-off-by: Alexey Brodkin <abrodkin at synopsys.com>
Cc: Greg Kroah-Hartman <gregkh at linuxfoundation.org>
Cc: Thomas Gleixner <tglx at linutronix.de>
Cc: stable at vger.kernel.org
---

Changes v1 -> v2:

 * Reworded commit message
 * Inserted comment right in source [Thomas]

 drivers/base/devres.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/drivers/base/devres.c b/drivers/base/devres.c
index f98a097e73f2..466fa59c866a 100644
--- a/drivers/base/devres.c
+++ b/drivers/base/devres.c
@@ -24,8 +24,12 @@ struct devres_node {
 
 struct devres {
 	struct devres_node		node;
-	/* -- 3 pointers */
-	unsigned long long		data[];	/* guarantee ull alignment */
+	/*
+	 * Depending on ABI "long long" type of a particular 32-bit CPU
+	 * might be aligned by either word (32-bits) or double word (64-bits).
+	 * Make sure "data" is really 64-bit aligned for any 32-bit CPU.
+	 */
+	unsigned long long		data[] __aligned(sizeof(unsigned long long));
 };
 
 struct devres_group {
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2018-07-10  6:42 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-09  4:44 [RESEND PATCH v2] devres: Really align data field to unsigned long long Alexey Brodkin
2018-07-09  5:48 ` Greg KH
2018-07-09  6:46   ` Alexey Brodkin
2018-07-09  7:06     ` greg
2018-07-09  7:17       ` Alexey Brodkin
2018-07-09  7:33         ` greg
2018-07-09  7:07   ` Geert Uytterhoeven
2018-07-09  7:22     ` Alexey Brodkin
2018-07-09  7:52       ` Geert Uytterhoeven
2018-07-09  8:37         ` Alexey Brodkin
2018-07-09  9:03           ` Geert Uytterhoeven
2018-07-09  9:16 ` David Laight
2018-07-09  9:23   ` Geert Uytterhoeven
2018-07-09  9:54     ` David Laight
2018-07-09  9:59   ` Alexey Brodkin
2018-07-09 10:18     ` David Laight
2018-07-09 10:23       ` Alexey Brodkin
2018-07-09 18:27         ` Vineet Gupta
2018-07-10  6:42           ` Alexey Brodkin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox