Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 56873
b: refs/heads/master
c: 3528231
h: refs/heads/master
i:
  56871: f38fc6c
v: v3
  • Loading branch information
Thomas Gleixner authored and Linus Torvalds committed May 24, 2007
1 parent 3452294 commit 77a2660
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 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: 43d4f961a87509b4ea5c1d6f02751aef360a632f
refs/heads/master: 352823160613b65fdaa558be486720a71f75ed86
12 changes: 9 additions & 3 deletions trunk/kernel/time/tick-sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,15 @@ void tick_nohz_stop_sched_tick(void)
goto end;

cpu = smp_processor_id();
if (unlikely(local_softirq_pending()))
printk(KERN_ERR "NOHZ: local_softirq_pending %02x\n",
local_softirq_pending());
if (unlikely(local_softirq_pending())) {
static int ratelimit;

if (ratelimit < 10) {
printk(KERN_ERR "NOHZ: local_softirq_pending %02x\n",
local_softirq_pending());
ratelimit++;
}
}

now = ktime_get();
/*
Expand Down

0 comments on commit 77a2660

Please sign in to comment.