Skip to content

Commit

Permalink
powerpc/64: Fix arch_local_irq_disable() prototype
Browse files Browse the repository at this point in the history
In powerpc/64, the arch_local_irq_disable() function returns unsigned
long, which is not consistent with other architectures.

Move that set-return asm implementation into arch_local_irq_save(),
and make arch_local_irq_disable() return void, simplifying the
assembly.

Suggested-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Madhavan Srinivasan <maddy@linux.vnet.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
  • Loading branch information
Madhavan Srinivasan authored and Michael Ellerman committed Jan 19, 2018
1 parent 9f83e00 commit b5c1bd6
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions arch/powerpc/include/asm/hw_irq.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,14 @@ static inline unsigned long arch_local_save_flags(void)
return flags;
}

static inline unsigned long arch_local_irq_disable(void)
static inline void arch_local_irq_disable(void)
{
unsigned long flags;

asm volatile(
"lbz %0,%1(13); stb %2,%1(13)"
: "=&r" (flags)
: "i" (offsetof(struct paca_struct, soft_enabled)),
"r" (IRQS_DISABLED)
"stb %0,%1(13)"
:
: "r" (IRQS_DISABLED),
"i" (offsetof(struct paca_struct, soft_enabled))
: "memory");

return flags;
}

extern void arch_local_irq_restore(unsigned long);
Expand All @@ -84,7 +80,16 @@ static inline void arch_local_irq_enable(void)

static inline unsigned long arch_local_irq_save(void)
{
return arch_local_irq_disable();
unsigned long flags;

asm volatile(
"lbz %0,%1(13); stb %2,%1(13)"
: "=&r" (flags)
: "i" (offsetof(struct paca_struct, soft_enabled)),
"r" (IRQS_DISABLED)
: "memory");

return flags;
}

static inline bool arch_irqs_disabled_flags(unsigned long flags)
Expand Down

0 comments on commit b5c1bd6

Please sign in to comment.