Commit eb02db38 authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'for-linus' of git://linux-c6x.org/git/projects/linux-c6x-upstreaming

Pull C6X fix from Mark Salter.

Final (?) fix from the barrier discussion.

* tag 'for-linus' of git://linux-c6x.org/git/projects/linux-c6x-upstreaming:
  add memory barrier to arch_local_irq_restore
parents 51de0170 f934af05
...@@ -27,7 +27,7 @@ static inline unsigned long arch_local_save_flags(void) ...@@ -27,7 +27,7 @@ static inline unsigned long arch_local_save_flags(void)
/* set interrupt enabled status */ /* set interrupt enabled status */
static inline void arch_local_irq_restore(unsigned long flags) static inline void arch_local_irq_restore(unsigned long flags)
{ {
asm volatile (" mvc .s2 %0,CSR\n" : : "b"(flags)); asm volatile (" mvc .s2 %0,CSR\n" : : "b"(flags) : "memory");
} }
/* unconditionally enable interrupts */ /* unconditionally enable interrupts */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment