diff options
| author | Andrew Morton <akpm@osdl.org> | 2004-06-23 18:52:10 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-06-23 18:52:10 -0700 |
| commit | 5ffa67fc1233d9d065f9b3fcd6bc13425af54f89 (patch) | |
| tree | d2d8c237a2ffea3805fbda3b82b4e5bee3ad0b66 /include/linux/cpumask.h | |
| parent | ea72b2418251ee5b377136929b47ed83a24492cf (diff) | |
[PATCH] cpumask: Remove no longer used obsolete macro emulation
From: Paul Jackson <pj@sgi.com>
Now that the emulation of the obsolete cpumask macros is no longer needed,
remove it from cpumask.h
Signed-off-by: Paul Jackson <pj@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/cpumask.h')
| -rw-r--r-- | include/linux/cpumask.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index f05bf9402dfc..4d2cf59e5089 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h @@ -364,16 +364,4 @@ extern cpumask_t cpu_present_map; #define for_each_online_cpu(cpu) for_each_cpu_mask((cpu), cpu_online_map) #define for_each_present_cpu(cpu) for_each_cpu_mask((cpu), cpu_present_map) -/* Begin obsolete cpumask operator emulation */ -#define cpu_isset_const(a,b) cpu_isset(a,b) -#define cpumask_const_t cpumask_t -#define cpus_coerce(m) (cpus_addr(m)[0]) -#define cpus_coerce_const cpus_coerce -#define cpus_promote(x) ({ cpumask_t m; m.bits[0] = x; m; }) -#define cpus_weight_const cpus_weight -#define first_cpu_const first_cpu -#define mk_cpumask_const(x) x -#define next_cpu_const next_cpu -/* End of obsolete cpumask operator emulation */ - #endif /* __LINUX_CPUMASK_H */ |
