diff -NurpP --minimal linux-2.6.18.1-vs2.0.2.2-rc2/kernel/vserver/history.c linux-2.6.18.1-vs2.0.2.2-rc2.1/kernel/vserver/history.c --- linux-2.6.18.1-vs2.0.2.2-rc2/kernel/vserver/history.c 2006-09-20 17:01:45 +0200 +++ linux-2.6.18.1-vs2.0.2.2-rc2.1/kernel/vserver/history.c 2006-10-20 00:40:24 +0200 @@ -138,19 +138,19 @@ void vxh_dump_entry(struct _vx_hist_entr static void __vxh_dump_history(void) { - unsigned int i,j; + unsigned int i, cpu; printk("History:\tSEQ: %8x\tNR_CPUS: %d\n", atomic_read(&sequence), NR_CPUS); for (i=0; i < VXH_SIZE; i++) { - for (j=0; j < NR_CPUS; j++) { + for_each_online_cpu(cpu) { struct _vx_history *hist = - &per_cpu(vx_history_buffer, j); + &per_cpu(vx_history_buffer, cpu); unsigned int index = (hist->counter-i) % VXH_SIZE; struct _vx_hist_entry *entry = &hist->entry[index]; - vxh_dump_entry(entry, j); + vxh_dump_entry(entry, cpu); } } }