Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 199823
b: refs/heads/master
c: 9e506f7
h: refs/heads/master
i:
  199821: 6243583
  199819: 5e8a3f3
  199815: 2e14b00
  199807: 9646fd7
v: v3
  • Loading branch information
Akinobu Mita authored and Linus Torvalds committed Jun 4, 2010
1 parent a14c550 commit c458df7
Show file tree
Hide file tree
Showing 3 changed files with 3 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: 94b3dd0f7bb393d93e84a173b1df9b8b64c83ac4
refs/heads/master: 9e506f7adce8e6165a104d3d78fddd8ff0cdccf8
2 changes: 1 addition & 1 deletion trunk/kernel/softirq.c
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ static __init int spawn_ksoftirqd(void)
void *cpu = (void *)(long)smp_processor_id();
int err = cpu_callback(&cpu_nfb, CPU_UP_PREPARE, cpu);

BUG_ON(err == NOTIFY_BAD);
BUG_ON(err != NOTIFY_OK);
cpu_callback(&cpu_nfb, CPU_ONLINE, cpu);
register_cpu_notifier(&cpu_nfb);
return 0;
Expand Down
2 changes: 1 addition & 1 deletion trunk/kernel/timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1717,7 +1717,7 @@ void __init init_timers(void)

init_timer_stats();

BUG_ON(err == NOTIFY_BAD);
BUG_ON(err != NOTIFY_OK);
register_cpu_notifier(&timers_nb);
open_softirq(TIMER_SOFTIRQ, run_timer_softirq);
}
Expand Down

0 comments on commit c458df7

Please sign in to comment.