Re: [PATCH] x86, clocksource, fix !CONFIG_CLOCKSOURCE_WATCHDOG compile

2013-07-22 Thread John Stultz
On 02/22/2013 12:08 PM, Prarit Bhargava wrote: If I explicitly disable the clocksource watchdog in the x86 Kconfig, the x86 kernel will not compile unless this is properly defined. Going through my backlog, I noticed I never picked this up. Queued for 3.12. thanks -john -- To unsubscribe from

Re: [PATCH] x86, clocksource, fix !CONFIG_CLOCKSOURCE_WATCHDOG compile

2013-05-27 Thread Thomas Gleixner
On Mon, 27 May 2013, Prarit Bhargava wrote: > > > On 05/27/2013 06:00 AM, Thomas Gleixner wrote: > > On Fri, 22 Feb 2013, Prarit Bhargava wrote: > > > >> If I explicitly disable the clocksource watchdog in the x86 Kconfig, > > > > And why do you want to do that? > > Hey Thomas, I was debuggin

Re: [PATCH] x86, clocksource, fix !CONFIG_CLOCKSOURCE_WATCHDOG compile

2013-05-27 Thread Prarit Bhargava
On 05/27/2013 06:00 AM, Thomas Gleixner wrote: > On Fri, 22 Feb 2013, Prarit Bhargava wrote: > >> If I explicitly disable the clocksource watchdog in the x86 Kconfig, > > And why do you want to do that? Hey Thomas, I was debugging something and stumbled across this. IIRC the issue was that th

Re: [PATCH] x86, clocksource, fix !CONFIG_CLOCKSOURCE_WATCHDOG compile

2013-05-27 Thread Thomas Gleixner
On Fri, 22 Feb 2013, Prarit Bhargava wrote: > If I explicitly disable the clocksource watchdog in the x86 Kconfig, And why do you want to do that? > the x86 kernel will not compile unless this is properly defined. > > Signed-off-by: Prarit Bhargava > Cc: John Stultz > Cc: Thomas Gleixner > C

[PATCH] x86, clocksource, fix !CONFIG_CLOCKSOURCE_WATCHDOG compile [v2]

2013-03-03 Thread Prarit Bhargava
If I explicitly disable the clocksource watchdog in the x86 Kconfig, the x86 kernel will not compile unless this is properly defined. v2: Oops ... move this to clocksource.h where it belongs Signed-off-by: Prarit Bhargava Cc: John Stultz Cc: Thomas Gleixner Cc: x...@kernel.org --- include/lin

Re: [PATCH] x86, clocksource, fix !CONFIG_CLOCKSOURCE_WATCHDOG compile

2013-02-25 Thread Prarit Bhargava
On 02/22/2013 03:14 PM, Thomas Gleixner wrote: > On Fri, 22 Feb 2013, Prarit Bhargava wrote: > >> If I explicitly disable the clocksource watchdog in the x86 Kconfig, >> the x86 kernel will not compile unless this is properly defined. > > You shouldn't do that. :) > >> Signed-off-by: Prarit B

Re: [PATCH] x86, clocksource, fix !CONFIG_CLOCKSOURCE_WATCHDOG compile

2013-02-25 Thread Prarit Bhargava
On 02/24/2013 12:04 PM, Prarit Bhargava wrote: > On 02/22/2013 03:14 PM, Thomas Gleixner wrote: >>> +void clocksource_mark_unstable(struct clocksource *cs) { } >> >> Unless this is defined as >> >>> +static inline void clocksource_mark_unstable(struct clocksource *cs) { } >> >> Right? > > Whups.

Re: [PATCH] x86, clocksource, fix !CONFIG_CLOCKSOURCE_WATCHDOG compile

2013-02-24 Thread Prarit Bhargava
On 02/22/2013 03:14 PM, Thomas Gleixner wrote: >> +void clocksource_mark_unstable(struct clocksource *cs) { } > > Unless this is defined as > >> +static inline void clocksource_mark_unstable(struct clocksource *cs) { } > > Right? Whups. Of course ... new patch ... -8< If I explicitly

Re: [PATCH] x86, clocksource, fix !CONFIG_CLOCKSOURCE_WATCHDOG compile

2013-02-22 Thread Thomas Gleixner
On Fri, 22 Feb 2013, Prarit Bhargava wrote: > If I explicitly disable the clocksource watchdog in the x86 Kconfig, > the x86 kernel will not compile unless this is properly defined. You shouldn't do that. :) > Signed-off-by: Prarit Bhargava > Cc: John Stultz > Cc: Thomas Gleixner > Cc: x...@

[PATCH] x86, clocksource, fix !CONFIG_CLOCKSOURCE_WATCHDOG compile

2013-02-22 Thread Prarit Bhargava
If I explicitly disable the clocksource watchdog in the x86 Kconfig, the x86 kernel will not compile unless this is properly defined. Signed-off-by: Prarit Bhargava Cc: John Stultz Cc: Thomas Gleixner Cc: x...@kernel.org --- kernel/time/clocksource.c |1 + 1 file changed, 1 insertion(+) d