From faa0e911fbf078cebf9b465da824035f4d9e471b Mon Sep 17 00:00:00 2001 From: Attilio Rao Date: Sat, 14 May 2011 18:22:08 +0000 Subject: [PATCH] Simplify the code here. Submitted by: jhb --- sys/kern/kern_cpuset.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sys/kern/kern_cpuset.c b/sys/kern/kern_cpuset.c index 9ed19d4d60d9..d604c5937938 100644 --- a/sys/kern/kern_cpuset.c +++ b/sys/kern/kern_cpuset.c @@ -797,11 +797,7 @@ cpuset_init(void *arg) { cpuset_t mask; -#ifdef SMP mask = all_cpus; -#else - CPU_SETOF(0, &mask); -#endif if (cpuset_modify(cpuset_zero, &mask)) panic("Can't set initial cpuset mask.\n"); cpuset_zero->cs_flags |= CPU_SET_RDONLY;