Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 128007
b: refs/heads/master
c: 7f2347a
h: refs/heads/master
i:
  128005: 0f7de3d
  128003: 53a3a93
  127999: c3235cf
v: v3
  • Loading branch information
Helge Deller authored and Kyle McMartin committed Jan 5, 2009
1 parent 05a86fb commit 18f77c6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 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: 70da2d96306bea9ab56a1c6907b19f889dcdda5c
refs/heads/master: 7f2347a44d2d5c8edf04d6950f4fb21ac868d256
2 changes: 1 addition & 1 deletion trunk/arch/parisc/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -421,5 +421,5 @@ void __init init_IRQ(void)

void ack_bad_irq(unsigned int irq)
{
printk("unexpected IRQ %d\n", irq);
printk(KERN_WARNING "unexpected IRQ %d\n", irq);
}
8 changes: 2 additions & 6 deletions trunk/arch/parisc/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,10 +224,7 @@ send_IPI_mask(cpumask_t mask, enum ipi_message_type op)
static inline void
send_IPI_single(int dest_cpu, enum ipi_message_type op)
{
if (dest_cpu == NO_PROC_ID) {
BUG();
return;
}
BUG_ON(dest_cpu == NO_PROC_ID);

ipi_send(dest_cpu, op);
}
Expand Down Expand Up @@ -309,8 +306,7 @@ smp_cpu_init(int cpunum)
/* Initialise the idle task for this CPU */
atomic_inc(&init_mm.mm_count);
current->active_mm = &init_mm;
if(current->mm)
BUG();
BUG_ON(current->mm);
enter_lazy_tlb(&init_mm, current);

init_IRQ(); /* make sure no IRQs are enabled or pending */
Expand Down

0 comments on commit 18f77c6

Please sign in to comment.