Prev: [07/34] arm/imx/gpio: add spinlock protection
Next: [16/36] ath9k: fix a potential buffer leak in the STA teardown path
From: Randy Dunlap on 6 Aug 2010 15:20 On Fri, 6 Aug 2010 13:27:58 +1000 Stephen Rothwell wrote: > Hi all, > > As the merge window is open, please do not add 2.6.37 material to your > linux-next included trees until after 2.6.36-rc1. > > Changes since 20100805: ERROR: "con_debug_enter" [drivers/serial/kgdboc.ko] undefined! ERROR: "vc_cons" [drivers/serial/kgdboc.ko] undefined! ERROR: "fg_console" [drivers/serial/kgdboc.ko] undefined! ERROR: "con_debug_leave" [drivers/serial/kgdboc.ko] undefined! ..config is attached. --- ~Randy *** Remember to use Documentation/SubmitChecklist when testing your code ***
From: Jason Wessel on 6 Aug 2010 16:10 On 08/06/2010 01:53 PM, Randy Dunlap wrote: > On Fri, 6 Aug 2010 13:27:58 +1000 Stephen Rothwell wrote: > >> Hi all, >> >> As the merge window is open, please do not add 2.6.37 material to your >> linux-next included trees until after 2.6.36-rc1. >> >> Changes since 20100805: > > > ERROR: "con_debug_enter" [drivers/serial/kgdboc.ko] undefined! > ERROR: "vc_cons" [drivers/serial/kgdboc.ko] undefined! > ERROR: "fg_console" [drivers/serial/kgdboc.ko] undefined! > ERROR: "con_debug_leave" [drivers/serial/kgdboc.ko] undefined! > > .config is attached. > > --- > ~Randy > *** Remember to use Documentation/SubmitChecklist when testing your code *** Any possibility you can try this patch? I'll push it into kgdb-next in just a few min, and I created another test against this. Thanks, Jason. diff --git a/include/linux/console.h b/include/linux/console.h index f76fc29..305e9c2 100644 --- a/include/linux/console.h +++ b/include/linux/console.h @@ -79,8 +79,13 @@ int register_con_driver(const struct consw *csw, int first, int last); int unregister_con_driver(const struct consw *csw); int take_over_console(const struct consw *sw, int first, int last, int deflt); void give_up_console(const struct consw *sw); +#ifdef CONFIG_HW_CONSOLE int con_debug_enter(struct vc_data *vc); int con_debug_leave(void); +#else +#define con_debug_enter() +#define con_debug_leave() +#endif /* scroll */ #define SM_UP (1) -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
From: rdunlap on 6 Aug 2010 17:10
On Fri, August 6, 2010 1:00 pm, Jason Wessel wrote: > On 08/06/2010 01:53 PM, Randy Dunlap wrote: > >> On Fri, 6 Aug 2010 13:27:58 +1000 Stephen Rothwell wrote: >> >> >>> Hi all, >>> >>> >>> As the merge window is open, please do not add 2.6.37 material to >>> your linux-next included trees until after 2.6.36-rc1. >>> >>> Changes since 20100805: >>> >> >> >> ERROR: "con_debug_enter" [drivers/serial/kgdboc.ko] undefined! >> ERROR: "vc_cons" [drivers/serial/kgdboc.ko] undefined! >> ERROR: "fg_console" [drivers/serial/kgdboc.ko] undefined! >> ERROR: "con_debug_leave" [drivers/serial/kgdboc.ko] undefined! >> >> >> .config is attached. >> >> >> --- >> ~Randy >> *** Remember to use Documentation/SubmitChecklist when testing your code >> *** >> > > > Any possibility you can try this patch? > > > I'll push it into kgdb-next in just a few min, and I created another test > against this. Yes, that works for me. Thanks. > Thanks, > Jason. > > > > diff --git a/include/linux/console.h b/include/linux/console.h index > f76fc29..305e9c2 100644 --- a/include/linux/console.h > +++ b/include/linux/console.h > @@ -79,8 +79,13 @@ int register_con_driver(const struct consw *csw, int > first, int last); int unregister_con_driver(const struct consw *csw); int > take_over_console(const struct consw *sw, int first, int last, int > deflt); void give_up_console(const struct consw *sw); +#ifdef > CONFIG_HW_CONSOLE > int con_debug_enter(struct vc_data *vc); int con_debug_leave(void); +#else > +#define con_debug_enter() > +#define con_debug_leave() > +#endif > > > /* scroll */ > #define SM_UP (1) > -- -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |