aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/timer.c
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-07-15 13:15:50 +0100
committerKeir Fraser <keir.fraser@citrix.com>2009-07-15 13:15:50 +0100
commit2e08ff6c7c17091f5c31c36792073cfab9298945 (patch)
tree2ed298b5b89ce0416172f39ef7f21064a3e20ef6 /xen/common/timer.c
parentdad74b0f9e62824dc1b902a0352a4a5f966472ac (diff)
downloadxen-2e08ff6c7c17091f5c31c36792073cfab9298945.tar.gz
xen-2e08ff6c7c17091f5c31c36792073cfab9298945.tar.bz2
xen-2e08ff6c7c17091f5c31c36792073cfab9298945.zip
Rename for_each_cpu() to for_each_possible_cpu()
... to be more precise in naming, and also to match Linux. Signed-off-by: Jan Beulich <jbeulich@novell.com>
Diffstat (limited to 'xen/common/timer.c')
-rw-r--r--xen/common/timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/timer.c b/xen/common/timer.c
index eca25b3fb7..8f975958d8 100644
--- a/xen/common/timer.c
+++ b/xen/common/timer.c
@@ -529,7 +529,7 @@ void __init timer_init(void)
SET_HEAP_SIZE(&dummy_heap, 0);
SET_HEAP_LIMIT(&dummy_heap, 0);
- for_each_cpu ( i )
+ for_each_possible_cpu ( i )
{
spin_lock_init(&per_cpu(timers, i).lock);
per_cpu(timers, i).heap = &dummy_heap;