Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 204714
b: refs/heads/master
c: 850f22d
h: refs/heads/master
v: v3
  • Loading branch information
Michael Ellerman authored and Benjamin Herrenschmidt committed Jul 9, 2010
1 parent 4d3d012 commit 2b1e05e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0e37d25950f4fd5a7d74723e6ce608aaa972d24c
refs/heads/master: 850f22d5688941ea51628f3f8f8dcf3baff409ff
1 change: 1 addition & 0 deletions trunk/arch/powerpc/include/asm/dbell.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ enum ppc_dbell {

extern void doorbell_message_pass(int target, int msg);
extern void doorbell_exception(struct pt_regs *regs);
extern void doorbell_check_self(void);
extern void doorbell_setup_this_cpu(void);

static inline void ppc_msgsnd(enum ppc_dbell type, u32 flags, u32 tag)
Expand Down
10 changes: 10 additions & 0 deletions trunk/arch/powerpc/kernel/dbell.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,16 @@ void doorbell_exception(struct pt_regs *regs)
set_irq_regs(old_regs);
}

void doorbell_check_self(void)
{
struct doorbell_cpu_info *info = &__get_cpu_var(doorbell_cpu_info);

if (!info->messages)
return;

ppc_msgsnd(PPC_DBELL, 0, info->tag);
}

#else /* CONFIG_SMP */
void doorbell_exception(struct pt_regs *regs)
{
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/powerpc/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ notrace void raw_local_irq_restore(unsigned long en)
return;

#if defined(CONFIG_BOOKE) && defined(CONFIG_SMP)
/* Check for pending doorbell interrupts on SMP */
doorbell_exception(NULL);
/* Check for pending doorbell interrupts and resend to ourself */
doorbell_check_self();
#endif

/*
Expand Down

0 comments on commit 2b1e05e

Please sign in to comment.