aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/bitops_64.h
diff options
context:
space:
mode:
authorAlexander van Heukelum <heukelum@mailshack.com>2008-04-01 11:47:57 -0400
committerIngo Molnar <mingo@elte.hu>2008-04-26 13:21:17 -0400
commit5245698f665c4b7a533dcc47a5afdf33095d436a (patch)
tree5e417154f181e523c8491ec263eb71fbaf8ec0da /include/asm-x86/bitops_64.h
parent3a48305028aa38afba93fc05066c71a6ee668ad8 (diff)
x86, UML: remove x86-specific implementations of find_first_bit
x86 has been switched to the generic versions of find_first_bit and find_first_zero_bit, but the original versions were retained. This patch just removes the now unused x86-specific versions. also update UML. Signed-off-by: Alexander van Heukelum <heukelum@fastmail.fm> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/bitops_64.h')
-rw-r--r--include/asm-x86/bitops_64.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/include/asm-x86/bitops_64.h b/include/asm-x86/bitops_64.h
index 4081d7ecc2bd..cb23122d23f1 100644
--- a/include/asm-x86/bitops_64.h
+++ b/include/asm-x86/bitops_64.h
@@ -4,29 +4,6 @@
4/* 4/*
5 * Copyright 1992, Linus Torvalds. 5 * Copyright 1992, Linus Torvalds.
6 */ 6 */
7
8#ifndef CONFIG_GENERIC_FIND_FIRST_BIT
9extern long find_first_zero_bit(const unsigned long *addr, unsigned long size);
10extern long find_first_bit(const unsigned long *addr, unsigned long size);
11
12/* return index of first bet set in val or max when no bit is set */
13static inline long __scanbit(unsigned long val, unsigned long max)
14{
15 asm("bsfq %1,%0 ; cmovz %2,%0" : "=&r" (val) : "r" (val), "r" (max));
16 return val;
17}
18
19#define find_first_bit(addr, size) \
20 ((__builtin_constant_p((size)) && (size) <= BITS_PER_LONG \
21 ? (__scanbit(*(unsigned long *)(addr), (size))) \
22 : find_first_bit((addr), (size))))
23
24#define find_first_zero_bit(addr, size) \
25 ((__builtin_constant_p((size)) && (size) <= BITS_PER_LONG \
26 ? (__scanbit(~*(unsigned long *)(addr), (size))) \
27 : find_first_zero_bit((addr), (size))))
28#endif
29
30static inline void set_bit_string(unsigned long *bitmap, unsigned long i, 7static inline void set_bit_string(unsigned long *bitmap, unsigned long i,
31 int len) 8 int len)
32{ 9{