projects
/
platform
/
kernel
/
linux-arm64.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
40a5c0b
)
ARM: l2x0: use -st dsb option for ordering writel_relaxed with unlock
author
Will Deacon
<will.deacon@arm.com>
Wed, 12 Jun 2013 08:59:59 +0000
(09:59 +0100)
committer
Will Deacon
<will.deacon@arm.com>
Mon, 12 Aug 2013 11:25:46 +0000
(12:25 +0100)
writel_relaxed and spin_unlock are both store operations, so we only
need to enforce store ordering in the dsb.
Signed-off-by: Will Deacon <will.deacon@arm.com>
arch/arm/mm/cache-l2x0.c
patch
|
blob
|
history
diff --git
a/arch/arm/mm/cache-l2x0.c
b/arch/arm/mm/cache-l2x0.c
index
d70e0ab
..
0c3fc27
100644
(file)
--- a/
arch/arm/mm/cache-l2x0.c
+++ b/
arch/arm/mm/cache-l2x0.c
@@
-290,7
+290,7
@@
static void l2x0_disable(void)
raw_spin_lock_irqsave(&l2x0_lock, flags);
__l2x0_flush_all();
writel_relaxed(0, l2x0_base + L2X0_CTRL);
- dsb();
+ dsb(
st
);
raw_spin_unlock_irqrestore(&l2x0_lock, flags);
}