Re: [PATCH] x86_64/lib: find_first_zero_bit not extern

2005-03-28 Thread Andi Kleen
On Sun, Mar 27, 2005 at 09:39:07PM -0800, Randy.Dunlap wrote:
> 
> Exported function was marked inline:
> arch/x86_64/lib/bitops.c:18: warning: `find_first_zero_bit' declared inline 
> afte
> r being called
> 
> Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]>

That is already fixed in the patchkit in -mm*

-Andi
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] x86_64/lib: find_first_zero_bit not extern

2005-03-28 Thread Andi Kleen
On Sun, Mar 27, 2005 at 09:39:07PM -0800, Randy.Dunlap wrote:
 
 Exported function was marked inline:
 arch/x86_64/lib/bitops.c:18: warning: `find_first_zero_bit' declared inline 
 afte
 r being called
 
 Signed-off-by: Randy Dunlap [EMAIL PROTECTED]

That is already fixed in the patchkit in -mm*

-Andi
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] x86_64/lib: find_first_zero_bit not extern

2005-03-27 Thread Randy.Dunlap

Exported function was marked inline:
arch/x86_64/lib/bitops.c:18: warning: `find_first_zero_bit' declared inline afte
r being called

Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]>

diffstat:=
 arch/x86_64/lib/bitops.c |2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -Naurp ./arch/x86_64/lib/bitops.c~x8664_lib_bitops 
./arch/x86_64/lib/bitops.c
--- ./arch/x86_64/lib/bitops.c~x8664_lib_bitops 2005-03-01 23:37:49.0 
-0800
+++ ./arch/x86_64/lib/bitops.c  2005-03-27 20:42:59.0 -0800
@@ -14,7 +14,7 @@
  * Returns the bit-number of the first zero bit, not the number of the byte
  * containing a bit.
  */
-inline long find_first_zero_bit(const unsigned long * addr, unsigned long size)
+long find_first_zero_bit(const unsigned long * addr, unsigned long size)
 {
long d0, d1, d2;
long res;


---
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] x86_64/lib: find_first_zero_bit not extern

2005-03-27 Thread Randy.Dunlap

Exported function was marked inline:
arch/x86_64/lib/bitops.c:18: warning: `find_first_zero_bit' declared inline afte
r being called

Signed-off-by: Randy Dunlap [EMAIL PROTECTED]

diffstat:=
 arch/x86_64/lib/bitops.c |2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -Naurp ./arch/x86_64/lib/bitops.c~x8664_lib_bitops 
./arch/x86_64/lib/bitops.c
--- ./arch/x86_64/lib/bitops.c~x8664_lib_bitops 2005-03-01 23:37:49.0 
-0800
+++ ./arch/x86_64/lib/bitops.c  2005-03-27 20:42:59.0 -0800
@@ -14,7 +14,7 @@
  * Returns the bit-number of the first zero bit, not the number of the byte
  * containing a bit.
  */
-inline long find_first_zero_bit(const unsigned long * addr, unsigned long size)
+long find_first_zero_bit(const unsigned long * addr, unsigned long size)
 {
long d0, d1, d2;
long res;


---
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/