diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2012-03-29 01:08:30 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-03-29 01:08:30 -0400 |
commit | 0b5f9c005def154f9c21f9be0223b65b50d54368 (patch) | |
tree | bbee9b3e549acc5886d1022c2aad46d5abfdd22e /arch/arm/kernel/kprobes.c | |
parent | b5174fa3a7f4f8f150bfa3b917c92608953dfa0f (diff) |
remove references to cpu_*_map in arch/
This has been obsolescent for a while; time for the final push.
In adjacent context, replaced old cpus_* with cpumask_*.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Acked-by: David S. Miller <davem@davemloft.net> (arch/sparc)
Acked-by: Chris Metcalf <cmetcalf@tilera.com> (arch/tile)
Cc: user-mode-linux-devel@lists.sourceforge.net
Cc: Russell King <linux@arm.linux.org.uk>
Cc: linux-arm-kernel@lists.infradead.org
Cc: Richard Kuo <rkuo@codeaurora.org>
Cc: linux-hexagon@vger.kernel.org
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: Helge Deller <deller@gmx.de>
Cc: sparclinux@vger.kernel.org
Diffstat (limited to 'arch/arm/kernel/kprobes.c')
-rw-r--r-- | arch/arm/kernel/kprobes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/kernel/kprobes.c b/arch/arm/kernel/kprobes.c index 129c1163248b..a79e5c75a96e 100644 --- a/arch/arm/kernel/kprobes.c +++ b/arch/arm/kernel/kprobes.c | |||
@@ -127,7 +127,7 @@ void __kprobes arch_arm_kprobe(struct kprobe *p) | |||
127 | flush_insns(addr, sizeof(u16)); | 127 | flush_insns(addr, sizeof(u16)); |
128 | } else if (addr & 2) { | 128 | } else if (addr & 2) { |
129 | /* A 32-bit instruction spanning two words needs special care */ | 129 | /* A 32-bit instruction spanning two words needs special care */ |
130 | stop_machine(set_t32_breakpoint, (void *)addr, &cpu_online_map); | 130 | stop_machine(set_t32_breakpoint, (void *)addr, cpu_online_mask); |
131 | } else { | 131 | } else { |
132 | /* Word aligned 32-bit instruction can be written atomically */ | 132 | /* Word aligned 32-bit instruction can be written atomically */ |
133 | u32 bkp = KPROBE_THUMB32_BREAKPOINT_INSTRUCTION; | 133 | u32 bkp = KPROBE_THUMB32_BREAKPOINT_INSTRUCTION; |
@@ -190,7 +190,7 @@ int __kprobes __arch_disarm_kprobe(void *p) | |||
190 | 190 | ||
191 | void __kprobes arch_disarm_kprobe(struct kprobe *p) | 191 | void __kprobes arch_disarm_kprobe(struct kprobe *p) |
192 | { | 192 | { |
193 | stop_machine(__arch_disarm_kprobe, p, &cpu_online_map); | 193 | stop_machine(__arch_disarm_kprobe, p, cpu_online_mask); |
194 | } | 194 | } |
195 | 195 | ||
196 | void __kprobes arch_remove_kprobe(struct kprobe *p) | 196 | void __kprobes arch_remove_kprobe(struct kprobe *p) |