> /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@xxxxxxx> SuSE CR Labs --- From: Jan Kara <jack@xxxxxxx> 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@xxxxxxx> --- 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 -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html