Here is a fix. Not an ideal fix, but it at least works.
--- linux-2.4.20-pre4-ac1/include/asm/bitops.h.orig Fri Aug 23 08:56:27 2002
+++ linux-2.4.20-pre4-ac1/include/asm/bitops.h Fri Aug 23 09:12:02 2002
@@ -24,6 +24,35 @@
#define ADDR (*(volatile long *) addr)
+static __inline__ int __generic_ffs(int x)
+{
+ int r = 1;
+
+ if (!x)
+ return 0;
+ if (!(x & 0xffff)) {
+ x >>= 16;
+ r += 16;
+ }
+ if (!(x & 0xff)) {
+ x >>= 8;
+ r += 8;
+ }
+ if (!(x & 0xf)) {
+ x >>= 4;
+ r += 4;
+ }
+ if (!(x & 3)) {
+ x >>= 2;
+ r += 2;
+ }
+ if (!(x & 1)) {
+ x >>= 1;
+ r += 1;
+ }
+ return r;
+}
+
/**
* set_bit - Atomically set a bit in memory
* @nr: the bit to set
@@ -386,8 +415,6 @@
return (offset + set + res);
}
-#include <linux/bitops.h>
-
/**
* ffz - find first zero in word.
* @word: The word to search
@@ -399,7 +426,7 @@
/* The generic_ffs function is used to avoid the asm when the
argument is a constant. */
if (__builtin_constant_p (word)) {
- return (~word ? (unsigned long) generic_ffs ((int) ~word) - 1 : 32);
+ return (~word ? (unsigned long) __generic_ffs ((int) ~word) - 1 : 32);
} else {
__asm__("bsfl %1,%0"
:"=r" (word)
@@ -462,7 +489,7 @@
/* The generic_ffs function is used to avoid the asm when the
argument is a constant. */
if (__builtin_constant_p (x)) {
- return generic_ffs (x);
+ return __generic_ffs (x);
} else {
int r;
--- linux-2.4.20-pre4-ac1/include/linux/bitops.h.orig Fri Aug 23 08:57:43 2002
+++ linux-2.4.20-pre4-ac1/include/linux/bitops.h Fri Aug 23 09:12:12 2002
@@ -2,6 +2,7 @@
#define _LINUX_BITOPS_H
#include <asm/bitops.h>
+
/*
* ffs: find first bit set. This is defined the same way as
* the libc and compiler builtin ffs routines, therefore
@@ -106,8 +107,5 @@
res = (res & 0x33) + ((res >> 2) & 0x33);
return (res & 0x0F) + ((res >> 4) & 0x0F);
}
-
-#include <asm/bitops.h>
-
#endif
-Erik
-- Erik B. Andersen http://codepoet-consulting.com/ --This message was written using 73% post-consumer electrons-- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/