linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* ext4 still busted on ext4
@ 2008-05-23  6:54 Andrew Morton
  2008-05-23  6:55 ` Andrew Morton
  2008-05-29 14:07 ` Jan Kara
  0 siblings, 2 replies; 4+ messages in thread
From: Andrew Morton @ 2008-05-23  6:54 UTC (permalink / raw)
  To: linux-ext4; +Cc: Geert Uytterhoeven

/usr/src/devel/fs/ext4/mballoc.c: In function 'mb_find_next_bit':
/usr/src/devel/fs/ext4/mballoc.c:399: error: implicit declaration of function 'generic_find_next_le_bit'

This has been happening for months.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: ext4 still busted on ext4
  2008-05-23  6:54 ext4 still busted on ext4 Andrew Morton
@ 2008-05-23  6:55 ` Andrew Morton
  2008-05-29 14:07 ` Jan Kara
  1 sibling, 0 replies; 4+ messages in thread
From: Andrew Morton @ 2008-05-23  6:55 UTC (permalink / raw)
  To: linux-ext4, Geert Uytterhoeven

On Thu, 22 May 2008 23:54:41 -0700 Andrew Morton <akpm@linux-foundation.org> wrote:

> Subject: ext4 still busted on ext4

err, on m68k.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: ext4 still busted on ext4
  2008-05-23  6:54 ext4 still busted on ext4 Andrew Morton
  2008-05-23  6:55 ` Andrew Morton
@ 2008-05-29 14:07 ` Jan Kara
  2008-05-29 14:40   ` Geert Uytterhoeven
  1 sibling, 1 reply; 4+ messages in thread
From: Jan Kara @ 2008-05-29 14:07 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-ext4, Geert Uytterhoeven

> /usr/src/devel/fs/ext4/mballoc.c: In function 'mb_find_next_bit':
> /usr/src/devel/fs/ext4/mballoc.c:399: error: implicit declaration of function 'generic_find_next_le_bit'
> 
> This has been happening for months.
  Is there anything wrong with the obvious fix (below)? I don't have a
way to even compile-test this...

								Honza

-- 
Jan Kara <jack@suse.cz>
SuSE CR Labs
---

From: Jan Kara <jack@suse.cz>
Subject: [PATCH] m68k: Fix compilation warning

/usr/src/devel/fs/ext4/mballoc.c: In function 'mb_find_next_bit':
/usr/src/devel/fs/ext4/mballoc.c:399: error: implicit declaration of function 'generic_find_next_le_bit'

Signed-off-by: Jan Kara <jack@suse.cz>
---
 include/asm-m68k/bitops.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/include/asm-m68k/bitops.h b/include/asm-m68k/bitops.h
index 83d1f28..bb3a2fa 100644
--- a/include/asm-m68k/bitops.h
+++ b/include/asm-m68k/bitops.h
@@ -13,6 +13,7 @@
 #endif
 
 #include <linux/compiler.h>
+#include <asm-generic/bitops.h>
 
 /*
  * Require 68020 or better.
-- 
1.5.2.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: ext4 still busted on ext4
  2008-05-29 14:07 ` Jan Kara
@ 2008-05-29 14:40   ` Geert Uytterhoeven
  0 siblings, 0 replies; 4+ messages in thread
From: Geert Uytterhoeven @ 2008-05-29 14:40 UTC (permalink / raw)
  To: Jan Kara; +Cc: Andrew Morton, linux-ext4

On Thu, 29 May 2008, Jan Kara wrote:
> > /usr/src/devel/fs/ext4/mballoc.c: In function 'mb_find_next_bit':
> > /usr/src/devel/fs/ext4/mballoc.c:399: error: implicit declaration of function 'generic_find_next_le_bit'
> > 
> > This has been happening for months.
>   Is there anything wrong with the obvious fix (below)? I don't have a
> way to even compile-test this...

Yes. Including the header only provides the prototype of
generic_find_next_le_bit(), not the actual implementation. So it will
still fail at link time.

There exists a patch to fix it, but I haven't tested it yet. Will do (when
time permits), hopefully before 2.6.26...

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-05-29 14:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-23  6:54 ext4 still busted on ext4 Andrew Morton
2008-05-23  6:55 ` Andrew Morton
2008-05-29 14:07 ` Jan Kara
2008-05-29 14:40   ` Geert Uytterhoeven

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).