Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'for_linus-4.15-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb

Pull kgdb fixes from Jason Wessel:

- Fix long standing problem with kdb kallsyms_symbol_next() return
value

- Add new co-maintainer Daniel Thompson

* tag 'for_linus-4.15-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb:
kgdb/kdb/debug_core: Add co-maintainer Daniel Thompson
kdb: Fix handling of kallsyms_symbol_next() return value

+2 -1
+1
MAINTAINERS
··· 7767 7767 7768 7768 KGDB / KDB /debug_core 7769 7769 M: Jason Wessel <jason.wessel@windriver.com> 7770 + M: Daniel Thompson <daniel.thompson@linaro.org> 7770 7771 W: http://kgdb.wiki.kernel.org/ 7771 7772 L: kgdb-bugreport@lists.sourceforge.net 7772 7773 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
+1 -1
kernel/debug/kdb/kdb_io.c
··· 350 350 } 351 351 kdb_printf("\n"); 352 352 for (i = 0; i < count; i++) { 353 - if (kallsyms_symbol_next(p_tmp, i) < 0) 353 + if (WARN_ON(!kallsyms_symbol_next(p_tmp, i))) 354 354 break; 355 355 kdb_printf("%s ", p_tmp); 356 356 *(p_tmp + len) = '\0';