diff options
author | Akinobu Mita <mita@miraclelinux.com> | 2006-03-26 04:39:03 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-26 11:57:09 -0500 |
commit | 4668f0cd0abd41a908ec7aa292e91fd158e0c8f8 (patch) | |
tree | 8ae8ae1531b3f1da6e63d685a940d0f7979247a5 /arch/ia64/kernel/mca.c | |
parent | 4b417d0c7cb6af4afb7bad6463f7f3227d8a5074 (diff) |
[PATCH] bitops: ia64: use cpu_set() instead of __set_bit()
__set_bit() --> cpu_set() cleanup
Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Cc: "Luck, Tony" <tony.luck@intel.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/ia64/kernel/mca.c')
-rw-r--r-- | arch/ia64/kernel/mca.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/ia64/kernel/mca.c b/arch/ia64/kernel/mca.c index 87ff7fe33cfb..8963171788d5 100644 --- a/arch/ia64/kernel/mca.c +++ b/arch/ia64/kernel/mca.c | |||
@@ -69,6 +69,7 @@ | |||
69 | #include <linux/kernel.h> | 69 | #include <linux/kernel.h> |
70 | #include <linux/smp.h> | 70 | #include <linux/smp.h> |
71 | #include <linux/workqueue.h> | 71 | #include <linux/workqueue.h> |
72 | #include <linux/cpumask.h> | ||
72 | 73 | ||
73 | #include <asm/delay.h> | 74 | #include <asm/delay.h> |
74 | #include <asm/kdebug.h> | 75 | #include <asm/kdebug.h> |
@@ -1505,7 +1506,7 @@ format_mca_init_stack(void *mca_data, unsigned long offset, | |||
1505 | ti->cpu = cpu; | 1506 | ti->cpu = cpu; |
1506 | p->thread_info = ti; | 1507 | p->thread_info = ti; |
1507 | p->state = TASK_UNINTERRUPTIBLE; | 1508 | p->state = TASK_UNINTERRUPTIBLE; |
1508 | __set_bit(cpu, &p->cpus_allowed); | 1509 | cpu_set(cpu, p->cpus_allowed); |
1509 | INIT_LIST_HEAD(&p->tasks); | 1510 | INIT_LIST_HEAD(&p->tasks); |
1510 | p->parent = p->real_parent = p->group_leader = p; | 1511 | p->parent = p->real_parent = p->group_leader = p; |
1511 | INIT_LIST_HEAD(&p->children); | 1512 | INIT_LIST_HEAD(&p->children); |