crit_enter();
#ifdef SMP
- db_printf("\nCPU%d stopping CPUs: 0x%08x\n",
- mycpu->gd_cpuid, mycpu->gd_other_cpus);
+ db_printf("\nCPU%d stopping CPUs: 0x%016jx\n",
+ mycpu->gd_cpuid, (uintmax_t)mycpu->gd_other_cpus);
/* We stop all CPUs except ourselves (obviously) */
stop_cpus(mycpu->gd_other_cpus);
/* Restart all the CPUs we previously stopped */
if (stopped_cpus != mycpu->gd_other_cpus) {
- db_printf("whoa, other_cpus: 0x%08x, stopped_cpus: 0x%016jx\n",
- mycpu->gd_other_cpus, (uintmax_t)stopped_cpus);
+ db_printf("whoa, other_cpus: 0x%016jx, "
+ "stopped_cpus: 0x%016jx\n",
+ (uintmax_t)mycpu->gd_other_cpus,
+ (uintmax_t)stopped_cpus);
panic("stop_cpus() failed");
}
restart_cpus(stopped_cpus);