Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 100573
b: refs/heads/master
c: 040ec23
h: refs/heads/master
i:
  100571: 63a6025
v: v3
  • Loading branch information
Ingo Molnar committed Jun 10, 2008
1 parent 360550a commit 9ed6381
Show file tree
Hide file tree
Showing 2 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: 34078a5e44db3cbed2e0ed580c29a39d94e0cd97
refs/heads/master: 040ec23d07f95285e9777a85cda29cb339a3065b
4 changes: 2 additions & 2 deletions trunk/kernel/sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ unsigned long long notrace cpu_clock(int cpu)
unsigned long long prev_cpu_time, time, delta_time;
unsigned long flags;

raw_local_irq_save(flags);
local_irq_save(flags);
prev_cpu_time = per_cpu(prev_cpu_time, cpu);
time = __cpu_clock(cpu) + per_cpu(time_offset, cpu);
delta_time = time-prev_cpu_time;
Expand All @@ -898,7 +898,7 @@ unsigned long long notrace cpu_clock(int cpu)
time = __sync_cpu_clock(time, cpu);
per_cpu(prev_cpu_time, cpu) = time;
}
raw_local_irq_restore(flags);
local_irq_restore(flags);

return time;
}
Expand Down

0 comments on commit 9ed6381

Please sign in to comment.