The patch titled reiser4 kgdb fix has been added to the -mm tree. Its filename is reiser4-kgdb-fix.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: reiser4 kgdb fix From: Kamalesh Babulal <kamalesh@xxxxxxxxxxxxxxxxxx> fs/built-in.o: In function `reiser4_debugtrap': /root/kernels/linux-2.6.25-rc5/fs/reiser4/debug.c:295: undefined reference to `breakpoint' make: *** [.tmp_vmlinux1] Error 1 This build failure has been introduced by reiser4.patch, i think the breakpoint() have been used instead of kgdb_breakpoint(). Cc: Edward Shishkin <edward.shishkin@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/reiser4/debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN fs/reiser4/debug.c~reiser4-kgdb-fix fs/reiser4/debug.c --- a/fs/reiser4/debug.c~reiser4-kgdb-fix +++ a/fs/reiser4/debug.c @@ -291,8 +291,8 @@ void reiser4_debugtrap(void) { /* do nothing. Put break point here. */ #if defined(CONFIG_KGDB) && !defined(CONFIG_REISER4_FS_MODULE) - extern void breakpoint(void); - breakpoint(); + extern void kgdb_breakpoint(void); + kgdb_breakpoint(); #endif } #endif _ Patches currently in -mm which might be from kamalesh@xxxxxxxxxxxxxxxxxx are git-x86.patch reiser4-kgdb-fix.patch put_pid-make-sure-we-dont-free-the-live-pid.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html