public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] tracing/ftrace: stop {irqs,preempt}soff tracers when tracing is stopped
       [not found] <1237325938-5240-1-git-send-email-fweisbec@gmail.com>
@ 2009-03-17 21:46 ` Steven Rostedt
  2009-03-17 21:49   ` Frederic Weisbecker
  2009-03-18  9:19 ` [tip:tracing/ftrace] tracing/ftrace: stop {irqs, preempt}soff " Frederic Weisbecker
  1 sibling, 1 reply; 10+ messages in thread
From: Steven Rostedt @ 2009-03-17 21:46 UTC (permalink / raw)
  To: Frederic Weisbecker; +Cc: Ingo Molnar, LKML




On Tue, 17 Mar 2009, Frederic Weisbecker wrote:

> Impact: fix a selftest warning
> 
> In some cases, it's possible to see the following warning on irqsoff
> tracer selftest:
> 
> [    4.640003] Testing tracer irqsoff: <4>------------[ cut here ]------------
> [    4.653562] WARNING: at kernel/trace/trace.c:458 update_max_tr_single+0x9a/0xc4()
> [    4.660000] Hardware name: System Product Name
> [    4.660000] Modules linked in:
> [    4.660000] Pid: 301, comm: kstop/1 Not tainted 2.6.29-rc8-tip #35837
> [    4.660000] Call Trace:
> [    4.660000]  [<4014b588>] warn_slowpath+0x79/0x8f
> [    4.660000]  [<402d6949>] ? put_dec+0x64/0x6b
> [    4.660000]  [<40162b56>] ? getnstimeofday+0x58/0xdd
> [    4.660000]  [<40162210>] ? clocksource_read+0x3/0xf
> [    4.660000]  [<4015eb44>] ? ktime_set+0x8/0x34
> [    4.660000]  [<4014101a>] ? balance_runtime+0x8/0x56
> [    4.660000]  [<405f6f11>] ? _spin_lock+0x3/0x10
> [    4.660000]  [<4011f643>] ? ftrace_call+0x5/0x8
> [    4.660000]  [<4015d0f1>] ? task_cputime_zero+0x3/0x27
> [    4.660000]  [<40190ee7>] ? cpupri_set+0x90/0xcb
> [    4.660000]  [<405f7208>] ? _spin_lock_irqsave+0x22/0x34
> [    4.660000]  [<40190f12>] ? cpupri_set+0xbb/0xcb
> [    4.660000]  [<405f7151>] ? _spin_unlock_irqrestore+0x23/0x35
> [    4.660000]  [<4018493f>] ? ring_buffer_reset_cpu+0x27/0x51
> [    4.660000]  [<405f7208>] ? _spin_lock_irqsave+0x22/0x34
> [    4.660000]  [<40184962>] ? ring_buffer_reset_cpu+0x4a/0x51
> [    4.660000]  [<405f7151>] ? _spin_unlock_irqrestore+0x23/0x35
> [    4.660000]  [<4018cc29>] ? trace_hardirqs_off+0x1a/0x1c
> [    4.660000]  [<405f7151>] ? _spin_unlock_irqrestore+0x23/0x35
> [    4.660000]  [<40184962>] ? ring_buffer_reset_cpu+0x4a/0x51
> [    4.660000]  [<401850f3>] ? cpumask_next+0x15/0x18
> [    4.660000]  [<4018a41f>] update_max_tr_single+0x9a/0xc4
> [    4.660000]  [<4014e5fe>] ? exit_notify+0x16/0xf2
> [    4.660000]  [<4018cd13>] check_critical_timing+0xcc/0x11e
> [    4.660000]  [<4014e5fe>] ? exit_notify+0x16/0xf2
> [    4.660000]  [<4014e5fe>] ? exit_notify+0x16/0xf2
> [    4.660000]  [<4018cdf1>] stop_critical_timing+0x8c/0x9f
> [    4.660000]  [<4014e5c4>] ? forget_original_parent+0xac/0xd0
> [    4.660000]  [<4018ce3a>] trace_hardirqs_on+0x1a/0x1c
> [    4.660000]  [<4014e5c4>] forget_original_parent+0xac/0xd0
> [    4.660000]  [<4014e5fe>] exit_notify+0x16/0xf2
> [    4.660000]  [<4014e8a5>] do_exit+0x1cb/0x225
> [    4.660000]  [<4015c72b>] ? kthread+0x0/0x69
> [    4.660000]  [<4011f61d>] kernel_thread_helper+0xd/0x10
> [    4.660000] ---[ end trace a7919e7f17c0a725 ]---
> [    4.660164] .. no entries found ..FAILED!
> 
> During the selftest of irqsoff tracer, we do that:
> 
> 	/* disable interrupts for a bit */
> 	local_irq_disable();
> 	udelay(100);
> 	local_irq_enable();
> 	/* stop the tracing. */
> 	tracing_stop();
> 	/* check both trace buffers */
> 	ret = trace_test_buffer(tr, NULL);
> 
> If a callsite performs a new max delay with irqs off just after
> tracing_stop, update_max_tr_single() -> ring_buffer_swap_cpu()
> will be called with the buffers disabled by tracing_stop(), hence
> the warning, then ring_buffer_swap_cpu() return -EAGAIN and
> update_max_tr_single() complains.
> 
> Fix it by also stopping the tracer before stopping the tracing globally.
> A similar situation can happen with preemptoff and preemptirqsoff tracers
> where we apply the same fix.
> 
> Reported-by: Ingo Molnar <mingo@elte.hu>
> Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
> ---
>  kernel/trace/trace_selftest.c |   26 ++++++++++++++++++++++++++
>  1 files changed, 26 insertions(+), 0 deletions(-)
> 
> diff --git a/kernel/trace/trace_selftest.c b/kernel/trace/trace_selftest.c
> index a2ca6f0..38856ba 100644
> --- a/kernel/trace/trace_selftest.c
> +++ b/kernel/trace/trace_selftest.c
> @@ -315,6 +315,14 @@ trace_selftest_startup_irqsoff(struct tracer *trace, struct trace_array *tr)
>  	local_irq_disable();
>  	udelay(100);
>  	local_irq_enable();
> +
> +	/*
> +	 * Stop the tracer to avoid a warning subsequent
> +	 * to buffer flipping failure because tracing_stop()
> +	 * disables the tr and max buffers, making flipping impossible
> +	 * in case of parallels max irqs off latencies.
> +	 */
> +	trace->stop(tr);
>  	/* stop the tracing. */
>  	tracing_stop();
>  	/* check both trace buffers */
> @@ -369,6 +377,14 @@ trace_selftest_startup_preemptoff(struct tracer *trace, struct trace_array *tr)
>  	preempt_disable();
>  	udelay(100);
>  	preempt_enable();
> +
> +	/*
> +	 * Stop the tracer to avoid a warning subsequent
> +	 * to buffer flipping failure because tracing_stop()
> +	 * disables the tr and max buffers, making flipping impossible
> +	 * in case of parallels max preempt off latencies.
> +	 */
> +	trace->stop(tr);
>  	/* stop the tracing. */
>  	tracing_stop();

I'm actually thinking that tracing_stop() should call the current tracer
"stop" function.

-- Steve

>  	/* check both trace buffers */
> @@ -428,6 +444,13 @@ trace_selftest_startup_preemptirqsoff(struct tracer *trace, struct trace_array *
>  	/* reverse the order of preempt vs irqs */
>  	local_irq_enable();
>  
> +	/*
> +	 * Stop the tracer to avoid a warning subsequent
> +	 * to buffer flipping failure because tracing_stop()
> +	 * disables the tr and max buffers, making flipping impossible
> +	 * in case of parallels max irqs/preempt off latencies.
> +	 */
> +	trace->stop(tr);
>  	/* stop the tracing. */
>  	tracing_stop();
>  	/* check both trace buffers */
> @@ -448,6 +471,8 @@ trace_selftest_startup_preemptirqsoff(struct tracer *trace, struct trace_array *
>  	/* do the test by disabling interrupts first this time */
>  	tracing_max_latency = 0;
>  	tracing_start();
> +	trace->start(tr);
> +
>  	preempt_disable();
>  	local_irq_disable();
>  	udelay(100);
> @@ -455,6 +480,7 @@ trace_selftest_startup_preemptirqsoff(struct tracer *trace, struct trace_array *
>  	/* reverse the order of preempt vs irqs */
>  	local_irq_enable();
>  
> +	trace->stop(tr);
>  	/* stop the tracing. */
>  	tracing_stop();
>  	/* check both trace buffers */
> -- 
> 1.6.1
> 
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] tracing/ftrace: stop {irqs,preempt}soff tracers when tracing is stopped
  2009-03-17 21:46 ` [PATCH] tracing/ftrace: stop {irqs,preempt}soff tracers when tracing is stopped Steven Rostedt
@ 2009-03-17 21:49   ` Frederic Weisbecker
  2009-03-17 21:59     ` Steven Rostedt
  0 siblings, 1 reply; 10+ messages in thread
From: Frederic Weisbecker @ 2009-03-17 21:49 UTC (permalink / raw)
  To: Steven Rostedt; +Cc: Ingo Molnar, LKML

On Tue, Mar 17, 2009 at 05:46:14PM -0400, Steven Rostedt wrote:
> 
> 
> 
> On Tue, 17 Mar 2009, Frederic Weisbecker wrote:
> 
> > Impact: fix a selftest warning
> > 
> > In some cases, it's possible to see the following warning on irqsoff
> > tracer selftest:
> > 
> > [    4.640003] Testing tracer irqsoff: <4>------------[ cut here ]------------
> > [    4.653562] WARNING: at kernel/trace/trace.c:458 update_max_tr_single+0x9a/0xc4()
> > [    4.660000] Hardware name: System Product Name
> > [    4.660000] Modules linked in:
> > [    4.660000] Pid: 301, comm: kstop/1 Not tainted 2.6.29-rc8-tip #35837
> > [    4.660000] Call Trace:
> > [    4.660000]  [<4014b588>] warn_slowpath+0x79/0x8f
> > [    4.660000]  [<402d6949>] ? put_dec+0x64/0x6b
> > [    4.660000]  [<40162b56>] ? getnstimeofday+0x58/0xdd
> > [    4.660000]  [<40162210>] ? clocksource_read+0x3/0xf
> > [    4.660000]  [<4015eb44>] ? ktime_set+0x8/0x34
> > [    4.660000]  [<4014101a>] ? balance_runtime+0x8/0x56
> > [    4.660000]  [<405f6f11>] ? _spin_lock+0x3/0x10
> > [    4.660000]  [<4011f643>] ? ftrace_call+0x5/0x8
> > [    4.660000]  [<4015d0f1>] ? task_cputime_zero+0x3/0x27
> > [    4.660000]  [<40190ee7>] ? cpupri_set+0x90/0xcb
> > [    4.660000]  [<405f7208>] ? _spin_lock_irqsave+0x22/0x34
> > [    4.660000]  [<40190f12>] ? cpupri_set+0xbb/0xcb
> > [    4.660000]  [<405f7151>] ? _spin_unlock_irqrestore+0x23/0x35
> > [    4.660000]  [<4018493f>] ? ring_buffer_reset_cpu+0x27/0x51
> > [    4.660000]  [<405f7208>] ? _spin_lock_irqsave+0x22/0x34
> > [    4.660000]  [<40184962>] ? ring_buffer_reset_cpu+0x4a/0x51
> > [    4.660000]  [<405f7151>] ? _spin_unlock_irqrestore+0x23/0x35
> > [    4.660000]  [<4018cc29>] ? trace_hardirqs_off+0x1a/0x1c
> > [    4.660000]  [<405f7151>] ? _spin_unlock_irqrestore+0x23/0x35
> > [    4.660000]  [<40184962>] ? ring_buffer_reset_cpu+0x4a/0x51
> > [    4.660000]  [<401850f3>] ? cpumask_next+0x15/0x18
> > [    4.660000]  [<4018a41f>] update_max_tr_single+0x9a/0xc4
> > [    4.660000]  [<4014e5fe>] ? exit_notify+0x16/0xf2
> > [    4.660000]  [<4018cd13>] check_critical_timing+0xcc/0x11e
> > [    4.660000]  [<4014e5fe>] ? exit_notify+0x16/0xf2
> > [    4.660000]  [<4014e5fe>] ? exit_notify+0x16/0xf2
> > [    4.660000]  [<4018cdf1>] stop_critical_timing+0x8c/0x9f
> > [    4.660000]  [<4014e5c4>] ? forget_original_parent+0xac/0xd0
> > [    4.660000]  [<4018ce3a>] trace_hardirqs_on+0x1a/0x1c
> > [    4.660000]  [<4014e5c4>] forget_original_parent+0xac/0xd0
> > [    4.660000]  [<4014e5fe>] exit_notify+0x16/0xf2
> > [    4.660000]  [<4014e8a5>] do_exit+0x1cb/0x225
> > [    4.660000]  [<4015c72b>] ? kthread+0x0/0x69
> > [    4.660000]  [<4011f61d>] kernel_thread_helper+0xd/0x10
> > [    4.660000] ---[ end trace a7919e7f17c0a725 ]---
> > [    4.660164] .. no entries found ..FAILED!
> > 
> > During the selftest of irqsoff tracer, we do that:
> > 
> > 	/* disable interrupts for a bit */
> > 	local_irq_disable();
> > 	udelay(100);
> > 	local_irq_enable();
> > 	/* stop the tracing. */
> > 	tracing_stop();
> > 	/* check both trace buffers */
> > 	ret = trace_test_buffer(tr, NULL);
> > 
> > If a callsite performs a new max delay with irqs off just after
> > tracing_stop, update_max_tr_single() -> ring_buffer_swap_cpu()
> > will be called with the buffers disabled by tracing_stop(), hence
> > the warning, then ring_buffer_swap_cpu() return -EAGAIN and
> > update_max_tr_single() complains.
> > 
> > Fix it by also stopping the tracer before stopping the tracing globally.
> > A similar situation can happen with preemptoff and preemptirqsoff tracers
> > where we apply the same fix.
> > 
> > Reported-by: Ingo Molnar <mingo@elte.hu>
> > Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
> > ---
> >  kernel/trace/trace_selftest.c |   26 ++++++++++++++++++++++++++
> >  1 files changed, 26 insertions(+), 0 deletions(-)
> > 
> > diff --git a/kernel/trace/trace_selftest.c b/kernel/trace/trace_selftest.c
> > index a2ca6f0..38856ba 100644
> > --- a/kernel/trace/trace_selftest.c
> > +++ b/kernel/trace/trace_selftest.c
> > @@ -315,6 +315,14 @@ trace_selftest_startup_irqsoff(struct tracer *trace, struct trace_array *tr)
> >  	local_irq_disable();
> >  	udelay(100);
> >  	local_irq_enable();
> > +
> > +	/*
> > +	 * Stop the tracer to avoid a warning subsequent
> > +	 * to buffer flipping failure because tracing_stop()
> > +	 * disables the tr and max buffers, making flipping impossible
> > +	 * in case of parallels max irqs off latencies.
> > +	 */
> > +	trace->stop(tr);
> >  	/* stop the tracing. */
> >  	tracing_stop();
> >  	/* check both trace buffers */
> > @@ -369,6 +377,14 @@ trace_selftest_startup_preemptoff(struct tracer *trace, struct trace_array *tr)
> >  	preempt_disable();
> >  	udelay(100);
> >  	preempt_enable();
> > +
> > +	/*
> > +	 * Stop the tracer to avoid a warning subsequent
> > +	 * to buffer flipping failure because tracing_stop()
> > +	 * disables the tr and max buffers, making flipping impossible
> > +	 * in case of parallels max preempt off latencies.
> > +	 */
> > +	trace->stop(tr);
> >  	/* stop the tracing. */
> >  	tracing_stop();
> 
> I'm actually thinking that tracing_stop() should call the current tracer
> "stop" function.
> 
> -- Steve


Indeed, it could be better.
But I think of a combination of stop() callback call plus
ring buffer disabled because I'm not sure all tracers implement
the stop callback.

Should I send a v2 based on the above?
 
> >  	/* check both trace buffers */
> > @@ -428,6 +444,13 @@ trace_selftest_startup_preemptirqsoff(struct tracer *trace, struct trace_array *
> >  	/* reverse the order of preempt vs irqs */
> >  	local_irq_enable();
> >  
> > +	/*
> > +	 * Stop the tracer to avoid a warning subsequent
> > +	 * to buffer flipping failure because tracing_stop()
> > +	 * disables the tr and max buffers, making flipping impossible
> > +	 * in case of parallels max irqs/preempt off latencies.
> > +	 */
> > +	trace->stop(tr);
> >  	/* stop the tracing. */
> >  	tracing_stop();
> >  	/* check both trace buffers */
> > @@ -448,6 +471,8 @@ trace_selftest_startup_preemptirqsoff(struct tracer *trace, struct trace_array *
> >  	/* do the test by disabling interrupts first this time */
> >  	tracing_max_latency = 0;
> >  	tracing_start();
> > +	trace->start(tr);
> > +
> >  	preempt_disable();
> >  	local_irq_disable();
> >  	udelay(100);
> > @@ -455,6 +480,7 @@ trace_selftest_startup_preemptirqsoff(struct tracer *trace, struct trace_array *
> >  	/* reverse the order of preempt vs irqs */
> >  	local_irq_enable();
> >  
> > +	trace->stop(tr);
> >  	/* stop the tracing. */
> >  	tracing_stop();
> >  	/* check both trace buffers */
> > -- 
> > 1.6.1
> > 
> > 


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] tracing/ftrace: stop {irqs,preempt}soff tracers when tracing is stopped
  2009-03-17 21:49   ` Frederic Weisbecker
@ 2009-03-17 21:59     ` Steven Rostedt
  2009-03-17 22:54       ` Frederic Weisbecker
  0 siblings, 1 reply; 10+ messages in thread
From: Steven Rostedt @ 2009-03-17 21:59 UTC (permalink / raw)
  To: Frederic Weisbecker; +Cc: Ingo Molnar, LKML


On Tue, 17 Mar 2009, Frederic Weisbecker wrote:
> > > +	/*
> > > +	 * Stop the tracer to avoid a warning subsequent
> > > +	 * to buffer flipping failure because tracing_stop()
> > > +	 * disables the tr and max buffers, making flipping impossible
> > > +	 * in case of parallels max preempt off latencies.
> > > +	 */
> > > +	trace->stop(tr);
> > >  	/* stop the tracing. */
> > >  	tracing_stop();
> > 
> > I'm actually thinking that tracing_stop() should call the current tracer
> > "stop" function.
> > 
> > -- Steve
> 
> 
> Indeed, it could be better.
> But I think of a combination of stop() callback call plus
> ring buffer disabled because I'm not sure all tracers implement
> the stop callback.

Yes, that's what I meant. The tracing_stop should do a few things, and one
of them is to call the stop function if it exists.

> 
> Should I send a v2 based on the above?

Sure.

-- Steve

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] tracing/ftrace: stop {irqs,preempt}soff tracers when tracing is stopped
  2009-03-17 21:59     ` Steven Rostedt
@ 2009-03-17 22:54       ` Frederic Weisbecker
  2009-03-18  8:59         ` Ingo Molnar
  0 siblings, 1 reply; 10+ messages in thread
From: Frederic Weisbecker @ 2009-03-17 22:54 UTC (permalink / raw)
  To: Steven Rostedt, Ingo Molnar; +Cc: LKML

On Tue, Mar 17, 2009 at 05:59:22PM -0400, Steven Rostedt wrote:
> 
> On Tue, 17 Mar 2009, Frederic Weisbecker wrote:
> > > > +	/*
> > > > +	 * Stop the tracer to avoid a warning subsequent
> > > > +	 * to buffer flipping failure because tracing_stop()
> > > > +	 * disables the tr and max buffers, making flipping impossible
> > > > +	 * in case of parallels max preempt off latencies.
> > > > +	 */
> > > > +	trace->stop(tr);
> > > >  	/* stop the tracing. */
> > > >  	tracing_stop();
> > > 
> > > I'm actually thinking that tracing_stop() should call the current tracer
> > > "stop" function.
> > > 
> > > -- Steve
> > 
> > 
> > Indeed, it could be better.
> > But I think of a combination of stop() callback call plus
> > ring buffer disabled because I'm not sure all tracers implement
> > the stop callback.
> 
> Yes, that's what I meant. The tracing_stop should do a few things, and one
> of them is to call the stop function if it exists.
> 
> > 
> > Should I send a v2 based on the above?
> 
> Sure.
> 
> -- Steve


Ingo,

I tested the call to the start/stop callbacks from tracing_start() and tracing_stop()
but it's not possible for now: the sched_switch tracer register/unregister his
tracepoints from these callbacks, thus allocate some memory. But tracing_start/stop
can be called from atomic.

I discussed about that with Steven on irc, and for now the v1 should be applied
as a temporary solution. We plan to simplify later the start/stop callbacks from
each tracers that need it.

Thanks.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] tracing/ftrace: stop {irqs,preempt}soff tracers when tracing is stopped
  2009-03-17 22:54       ` Frederic Weisbecker
@ 2009-03-18  8:59         ` Ingo Molnar
  2009-03-18  9:18           ` Ingo Molnar
  2009-03-18 14:00           ` Steven Rostedt
  0 siblings, 2 replies; 10+ messages in thread
From: Ingo Molnar @ 2009-03-18  8:59 UTC (permalink / raw)
  To: Frederic Weisbecker; +Cc: Steven Rostedt, LKML


* Frederic Weisbecker <fweisbec@gmail.com> wrote:

> On Tue, Mar 17, 2009 at 05:59:22PM -0400, Steven Rostedt wrote:
> > 
> > On Tue, 17 Mar 2009, Frederic Weisbecker wrote:
> > > > > +	/*
> > > > > +	 * Stop the tracer to avoid a warning subsequent
> > > > > +	 * to buffer flipping failure because tracing_stop()
> > > > > +	 * disables the tr and max buffers, making flipping impossible
> > > > > +	 * in case of parallels max preempt off latencies.
> > > > > +	 */
> > > > > +	trace->stop(tr);
> > > > >  	/* stop the tracing. */
> > > > >  	tracing_stop();
> > > > 
> > > > I'm actually thinking that tracing_stop() should call the current tracer
> > > > "stop" function.
> > > > 
> > > > -- Steve
> > > 
> > > 
> > > Indeed, it could be better.
> > > But I think of a combination of stop() callback call plus
> > > ring buffer disabled because I'm not sure all tracers implement
> > > the stop callback.
> > 
> > Yes, that's what I meant. The tracing_stop should do a few things, and one
> > of them is to call the stop function if it exists.
> > 
> > > 
> > > Should I send a v2 based on the above?
> > 
> > Sure.
> > 
> > -- Steve
> 
> 
> Ingo,
> 
> I tested the call to the start/stop callbacks from tracing_start() 
> and tracing_stop() but it's not possible for now: the sched_switch 
> tracer register/unregister his tracepoints from these callbacks, 
> thus allocate some memory. But tracing_start/stop can be called 
> from atomic.
> 
> I discussed about that with Steven on irc, and for now the v1 
> should be applied as a temporary solution. We plan to simplify 
> later the start/stop callbacks from each tracers that need it.

ok. Steve, could you please pick v1 up?

	Ingo

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] tracing/ftrace: stop {irqs,preempt}soff tracers when tracing is stopped
  2009-03-18  8:59         ` Ingo Molnar
@ 2009-03-18  9:18           ` Ingo Molnar
  2009-03-18  9:29             ` Ingo Molnar
  2009-03-18 14:31             ` Steven Rostedt
  2009-03-18 14:00           ` Steven Rostedt
  1 sibling, 2 replies; 10+ messages in thread
From: Ingo Molnar @ 2009-03-18  9:18 UTC (permalink / raw)
  To: Frederic Weisbecker; +Cc: Steven Rostedt, LKML


* Ingo Molnar <mingo@elte.hu> wrote:

> > I discussed about that with Steven on irc, and for now the v1 
> > should be applied as a temporary solution. We plan to simplify 
> > later the start/stop callbacks from each tracers that need it.
> 
> ok. Steve, could you please pick v1 up?

Committed it after all - there's more self-test failures (reported 
them earlier today) and i've picked up all fixlets that might fix 
them.

	Ingo

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [tip:tracing/ftrace] tracing/ftrace: stop {irqs, preempt}soff tracers when tracing is stopped
       [not found] <1237325938-5240-1-git-send-email-fweisbec@gmail.com>
  2009-03-17 21:46 ` [PATCH] tracing/ftrace: stop {irqs,preempt}soff tracers when tracing is stopped Steven Rostedt
@ 2009-03-18  9:19 ` Frederic Weisbecker
  1 sibling, 0 replies; 10+ messages in thread
From: Frederic Weisbecker @ 2009-03-18  9:19 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, hpa, mingo, fweisbec, rostedt, tglx, mingo

Commit-ID:  490362003457f8d387f6f6e73e3a7efbf56c3314
Gitweb:     http://git.kernel.org/tip/490362003457f8d387f6f6e73e3a7efbf56c3314
Author:     Frederic Weisbecker <fweisbec@gmail.com>
AuthorDate: Tue, 17 Mar 2009 22:38:58 +0100
Commit:     Ingo Molnar <mingo@elte.hu>
CommitDate: Wed, 18 Mar 2009 10:12:38 +0100

tracing/ftrace: stop {irqs, preempt}soff tracers when tracing is stopped

Impact: fix a selftest warning

In some cases, it's possible to see the following warning on irqsoff
tracer selftest:

[    4.640003] Testing tracer irqsoff: <4>------------[ cut here ]------------
[    4.653562] WARNING: at kernel/trace/trace.c:458 update_max_tr_single+0x9a/0xc4()
[    4.660000] Hardware name: System Product Name
[    4.660000] Modules linked in:
[    4.660000] Pid: 301, comm: kstop/1 Not tainted 2.6.29-rc8-tip #35837
[    4.660000] Call Trace:
[    4.660000]  [<4014b588>] warn_slowpath+0x79/0x8f
[    4.660000]  [<402d6949>] ? put_dec+0x64/0x6b
[    4.660000]  [<40162b56>] ? getnstimeofday+0x58/0xdd
[    4.660000]  [<40162210>] ? clocksource_read+0x3/0xf
[    4.660000]  [<4015eb44>] ? ktime_set+0x8/0x34
[    4.660000]  [<4014101a>] ? balance_runtime+0x8/0x56
[    4.660000]  [<405f6f11>] ? _spin_lock+0x3/0x10
[    4.660000]  [<4011f643>] ? ftrace_call+0x5/0x8
[    4.660000]  [<4015d0f1>] ? task_cputime_zero+0x3/0x27
[    4.660000]  [<40190ee7>] ? cpupri_set+0x90/0xcb
[    4.660000]  [<405f7208>] ? _spin_lock_irqsave+0x22/0x34
[    4.660000]  [<40190f12>] ? cpupri_set+0xbb/0xcb
[    4.660000]  [<405f7151>] ? _spin_unlock_irqrestore+0x23/0x35
[    4.660000]  [<4018493f>] ? ring_buffer_reset_cpu+0x27/0x51
[    4.660000]  [<405f7208>] ? _spin_lock_irqsave+0x22/0x34
[    4.660000]  [<40184962>] ? ring_buffer_reset_cpu+0x4a/0x51
[    4.660000]  [<405f7151>] ? _spin_unlock_irqrestore+0x23/0x35
[    4.660000]  [<4018cc29>] ? trace_hardirqs_off+0x1a/0x1c
[    4.660000]  [<405f7151>] ? _spin_unlock_irqrestore+0x23/0x35
[    4.660000]  [<40184962>] ? ring_buffer_reset_cpu+0x4a/0x51
[    4.660000]  [<401850f3>] ? cpumask_next+0x15/0x18
[    4.660000]  [<4018a41f>] update_max_tr_single+0x9a/0xc4
[    4.660000]  [<4014e5fe>] ? exit_notify+0x16/0xf2
[    4.660000]  [<4018cd13>] check_critical_timing+0xcc/0x11e
[    4.660000]  [<4014e5fe>] ? exit_notify+0x16/0xf2
[    4.660000]  [<4014e5fe>] ? exit_notify+0x16/0xf2
[    4.660000]  [<4018cdf1>] stop_critical_timing+0x8c/0x9f
[    4.660000]  [<4014e5c4>] ? forget_original_parent+0xac/0xd0
[    4.660000]  [<4018ce3a>] trace_hardirqs_on+0x1a/0x1c
[    4.660000]  [<4014e5c4>] forget_original_parent+0xac/0xd0
[    4.660000]  [<4014e5fe>] exit_notify+0x16/0xf2
[    4.660000]  [<4014e8a5>] do_exit+0x1cb/0x225
[    4.660000]  [<4015c72b>] ? kthread+0x0/0x69
[    4.660000]  [<4011f61d>] kernel_thread_helper+0xd/0x10
[    4.660000] ---[ end trace a7919e7f17c0a725 ]---
[    4.660164] .. no entries found ..FAILED!

During the selftest of irqsoff tracer, we do that:

	/* disable interrupts for a bit */
	local_irq_disable();
	udelay(100);
	local_irq_enable();
	/* stop the tracing. */
	tracing_stop();
	/* check both trace buffers */
	ret = trace_test_buffer(tr, NULL);

If a callsite performs a new max delay with irqs off just after
tracing_stop, update_max_tr_single() -> ring_buffer_swap_cpu()
will be called with the buffers disabled by tracing_stop(), hence
the warning, then ring_buffer_swap_cpu() return -EAGAIN and
update_max_tr_single() complains.

Fix it by also stopping the tracer before stopping the tracing globally.
A similar situation can happen with preemptoff and preemptirqsoff tracers
where we apply the same fix.

Reported-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Acked-by: Steven Rostedt <rostedt@goodmis.org>
LKML-Reference: <1237325938-5240-1-git-send-email-fweisbec@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>


---
 kernel/trace/trace_selftest.c |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/kernel/trace/trace_selftest.c b/kernel/trace/trace_selftest.c
index a2ca6f0..38856ba 100644
--- a/kernel/trace/trace_selftest.c
+++ b/kernel/trace/trace_selftest.c
@@ -315,6 +315,14 @@ trace_selftest_startup_irqsoff(struct tracer *trace, struct trace_array *tr)
 	local_irq_disable();
 	udelay(100);
 	local_irq_enable();
+
+	/*
+	 * Stop the tracer to avoid a warning subsequent
+	 * to buffer flipping failure because tracing_stop()
+	 * disables the tr and max buffers, making flipping impossible
+	 * in case of parallels max irqs off latencies.
+	 */
+	trace->stop(tr);
 	/* stop the tracing. */
 	tracing_stop();
 	/* check both trace buffers */
@@ -369,6 +377,14 @@ trace_selftest_startup_preemptoff(struct tracer *trace, struct trace_array *tr)
 	preempt_disable();
 	udelay(100);
 	preempt_enable();
+
+	/*
+	 * Stop the tracer to avoid a warning subsequent
+	 * to buffer flipping failure because tracing_stop()
+	 * disables the tr and max buffers, making flipping impossible
+	 * in case of parallels max preempt off latencies.
+	 */
+	trace->stop(tr);
 	/* stop the tracing. */
 	tracing_stop();
 	/* check both trace buffers */
@@ -428,6 +444,13 @@ trace_selftest_startup_preemptirqsoff(struct tracer *trace, struct trace_array *
 	/* reverse the order of preempt vs irqs */
 	local_irq_enable();
 
+	/*
+	 * Stop the tracer to avoid a warning subsequent
+	 * to buffer flipping failure because tracing_stop()
+	 * disables the tr and max buffers, making flipping impossible
+	 * in case of parallels max irqs/preempt off latencies.
+	 */
+	trace->stop(tr);
 	/* stop the tracing. */
 	tracing_stop();
 	/* check both trace buffers */
@@ -448,6 +471,8 @@ trace_selftest_startup_preemptirqsoff(struct tracer *trace, struct trace_array *
 	/* do the test by disabling interrupts first this time */
 	tracing_max_latency = 0;
 	tracing_start();
+	trace->start(tr);
+
 	preempt_disable();
 	local_irq_disable();
 	udelay(100);
@@ -455,6 +480,7 @@ trace_selftest_startup_preemptirqsoff(struct tracer *trace, struct trace_array *
 	/* reverse the order of preempt vs irqs */
 	local_irq_enable();
 
+	trace->stop(tr);
 	/* stop the tracing. */
 	tracing_stop();
 	/* check both trace buffers */

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH] tracing/ftrace: stop {irqs,preempt}soff tracers when tracing is stopped
  2009-03-18  9:18           ` Ingo Molnar
@ 2009-03-18  9:29             ` Ingo Molnar
  2009-03-18 14:31             ` Steven Rostedt
  1 sibling, 0 replies; 10+ messages in thread
From: Ingo Molnar @ 2009-03-18  9:29 UTC (permalink / raw)
  To: Frederic Weisbecker; +Cc: Steven Rostedt, LKML

[-- Attachment #1: Type: text/plain, Size: 3547 bytes --]


* Ingo Molnar <mingo@elte.hu> wrote:

> * Ingo Molnar <mingo@elte.hu> wrote:
> 
> > > I discussed about that with Steven on irc, and for now the v1 
> > > should be applied as a temporary solution. We plan to simplify 
> > > later the start/stop callbacks from each tracers that need it.
> > 
> > ok. Steve, could you please pick v1 up?
> 
> Committed it after all - there's more self-test failures (reported 
> them earlier today) and i've picked up all fixlets that might fix 
> them.

it's still happening even with all fixes applied, on latest -tip:

[    3.132006] calling  init_irqsoff_tracer+0x0/0x11 @ 1
[    3.137005] Testing tracer irqsoff: <4>------------[ cut here ]------------
[    3.141002] WARNING: at kernel/trace/trace.c:466 update_max_tr_single+0xaf/0x140()
[    3.141002] Hardware name: System Product Name
[    3.141002] Modules linked in:
[    3.141002] Pid: 1, comm: swapper Not tainted 2.6.29-rc8-tip-02702-ge0d2c41-dirty #20985
[    3.141002] Call Trace:
[    3.141002]  [<c10488c6>] warn_slowpath+0x76/0xb0
[    3.141002]  [<c147dda1>] ? _spin_lock_irq+0x11/0x30
[    3.141002]  [<c1050304>] ? run_timer_softirq+0x174/0x180
[    3.141002]  [<c104d01b>] ? _local_bh_enable+0x8b/0xa0
[    3.141002]  [<c104d1a2>] ? __do_softirq+0x172/0x180
[    3.141002]  [<c1074444>] ? ring_buffer_reset_cpu+0x24/0xe0
[    3.141002]  [<c10744ed>] ? ring_buffer_reset_cpu+0xcd/0xe0
[    3.141002]  [<c147dcb9>] ? _spin_unlock_irqrestore+0x19/0x30
[    3.141002]  [<c107c721>] ? trace_hardirqs_off+0x21/0x30
[    3.141002]  [<c147dcb9>] ? _spin_unlock_irqrestore+0x19/0x30
[    3.141002]  [<c10744ed>] ? ring_buffer_reset_cpu+0xcd/0xe0
[    3.141002]  [<c107990f>] update_max_tr_single+0xaf/0x140
[    3.141002]  [<c107c8bc>] stop_critical_timing+0x15c/0x210
[    3.141002]  [<c1079f8d>] ? register_tracer+0x10d/0x200
[    3.141002]  [<c107c9b1>] trace_hardirqs_on+0x21/0x30
[    3.141002]  [<c107a263>] trace_selftest_startup_irqsoff+0x53/0xb0
[    3.141002]  [<c16fb8a2>] ? init_irqsoff_tracer+0x0/0x11
[    3.141002]  [<c1079f8d>] register_tracer+0x10d/0x200
[    3.141002]  [<c16fb8a2>] ? init_irqsoff_tracer+0x0/0x11
[    3.141002]  [<c16fb8af>] init_irqsoff_tracer+0xd/0x11
[    3.141002]  [<c100107a>] do_one_initcall+0x6a/0x170
[    3.141002]  [<c1090d63>] ? zone_statistics+0x63/0x70
[    3.141002]  [<c10886a6>] ? __alloc_pages_internal+0xa6/0x390
[    3.141002]  [<c11a58aa>] ? put_dec+0x2a/0x100
[    3.141002]  [<c10a1a14>] ? check_valid_pointer+0x24/0x60
[    3.141002]  [<c10a2041>] ? check_object+0x131/0x170
[    3.141002]  [<c10a28a4>] ? __slab_free+0x274/0x2a0
[    3.141002]  [<c11a1557>] ? ida_get_new_above+0x157/0x180
[    3.141002]  [<c11a1557>] ? ida_get_new_above+0x157/0x180
[    3.141002]  [<c10a428f>] ? kmem_cache_free+0x8f/0xa0
[    3.141002]  [<c11a1557>] ? ida_get_new_above+0x157/0x180
[    3.141002]  [<c11a1557>] ? ida_get_new_above+0x157/0x180
[    3.141002]  [<c11a197f>] ? idr_pre_get+0x4f/0x60
[    3.141002]  [<c10e0d43>] ? proc_register+0x103/0x150
[    3.141002]  [<c10e0ec0>] ? create_proc_entry+0x80/0xa0
[    3.141002]  [<c106e278>] ? init_irq_proc+0x58/0x70
[    3.141002]  [<c16e95db>] kernel_init+0x104/0x155
[    3.141002]  [<c16e94d7>] ? kernel_init+0x0/0x155
[    3.141002]  [<c101f8e3>] kernel_thread_helper+0x7/0x10
[    3.141002] ---[ end trace 5a5d197966b56a2e ]---
[    3.376012] .. no entries found ..FAILED!
[    3.380006] initcall init_irqsoff_tracer+0x0/0x11 returned 0 after 237304 usecs
[    3.388006] calling  init_wakeup_tracer+0x0/0x1d @ 1

Config and log attached.

	Ingo

[-- Attachment #2: config --]
[-- Type: text/plain, Size: 58132 bytes --]

#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.29-rc8
# Wed Mar 18 10:16:48 2009
#
# CONFIG_64BIT is not set
CONFIG_X86_32=y
# CONFIG_X86_64 is not set
CONFIG_X86=y
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/i386_defconfig"
CONFIG_GENERIC_TIME=y
CONFIG_GENERIC_CMOS_UPDATE=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_HAVE_LATENCYTOP_SUPPORT=y
CONFIG_FAST_CMPXCHG_LOCAL=y
CONFIG_MMU=y
CONFIG_ZONE_DMA=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
# CONFIG_RWSEM_GENERIC_SPINLOCK is not set
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
# CONFIG_GENERIC_TIME_VSYSCALL is not set
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_DEFAULT_IDLE=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_HAVE_DYNAMIC_PER_CPU_AREA=y
# CONFIG_HAVE_CPUMASK_OF_CPU_MAP is not set
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
# CONFIG_ZONE_DMA32 is not set
CONFIG_ARCH_POPULATES_NODE_MAP=y
# CONFIG_AUDIT_ARCH is not set
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_USE_GENERIC_SMP_HELPERS=y
CONFIG_X86_32_SMP=y
CONFIG_X86_HT=y
CONFIG_X86_TRAMPOLINE=y
CONFIG_KTIME_SCALAR=y
CONFIG_BOOTPARAM_SUPPORT_NOT_WANTED=y
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"

#
# General setup
#
CONFIG_EXPERIMENTAL=y
CONFIG_BROKEN_BOOT_ALLOWED4=y
CONFIG_BROKEN_BOOT_ALLOWED3=y
# CONFIG_BROKEN_BOOT_ALLOWED2 is not set
CONFIG_BROKEN_BOOT_EUROPE=y
CONFIG_BROKEN_BOOT_TITAN=y
CONFIG_LOCK_KERNEL=y
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_LOCALVERSION=""
CONFIG_LOCALVERSION_AUTO=y
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_BZIP2=y
CONFIG_HAVE_KERNEL_LZMA=y
# CONFIG_KERNEL_GZIP is not set
CONFIG_KERNEL_BZIP2=y
# CONFIG_KERNEL_LZMA is not set
# CONFIG_SWAP is not set
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
# CONFIG_POSIX_MQUEUE is not set
# CONFIG_BSD_PROCESS_ACCT is not set
# CONFIG_TASKSTATS is not set
# CONFIG_AUDIT is not set

#
# RCU Subsystem
#
CONFIG_CLASSIC_RCU=y
# CONFIG_TREE_RCU is not set
# CONFIG_PREEMPT_RCU is not set
# CONFIG_TREE_RCU_TRACE is not set
# CONFIG_PREEMPT_RCU_TRACE is not set
# CONFIG_IKCONFIG is not set
CONFIG_LOG_BUF_SHIFT=20
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
CONFIG_GROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
CONFIG_RT_GROUP_SCHED=y
CONFIG_USER_SCHED=y
# CONFIG_CGROUP_SCHED is not set
# CONFIG_CGROUPS is not set
CONFIG_SYSFS_DEPRECATED=y
CONFIG_SYSFS_DEPRECATED_V2=y
CONFIG_RELAY=y
# CONFIG_NAMESPACES is not set
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
# CONFIG_RD_GZIP is not set
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
CONFIG_INITRAMFS_COMPRESSION_NONE=y
# CONFIG_INITRAMFS_COMPRESSION_GZIP is not set
# CONFIG_INITRAMFS_COMPRESSION_BZIP2 is not set
# CONFIG_INITRAMFS_COMPRESSION_LZMA is not set
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
CONFIG_SYSCTL=y
CONFIG_ANON_INODES=y
CONFIG_EMBEDDED=y
CONFIG_UID16=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_KALLSYMS=y
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_HOTPLUG=y
CONFIG_PRINTK=y
CONFIG_BUG=y
# CONFIG_ELF_CORE is not set
CONFIG_PCSPKR_PLATFORM=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
# CONFIG_TIMERFD is not set
# CONFIG_EVENTFD is not set
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_HAVE_PERF_COUNTERS=y

#
# Performance Counters
#
CONFIG_PERF_COUNTERS=y
# CONFIG_VM_EVENT_COUNTERS is not set
CONFIG_PCI_QUIRKS=y
CONFIG_SLUB_DEBUG=y
# CONFIG_COMPAT_BRK is not set
# CONFIG_SLAB is not set
CONFIG_SLUB=y
# CONFIG_SLOB is not set
CONFIG_PROFILING=y
CONFIG_TRACEPOINTS=y
CONFIG_MARKERS=y
CONFIG_OPROFILE=m
CONFIG_OPROFILE_IBS=y
CONFIG_HAVE_OPROFILE=y
CONFIG_KPROBES=y
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_KRETPROBES=y
CONFIG_HAVE_IOREMAP_PROT=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_GENERIC_DMA_COHERENT=y
CONFIG_SLABINFO=y
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULES=y
CONFIG_MODULE_FORCE_LOAD=y
# CONFIG_MODULE_UNLOAD is not set
# CONFIG_MODVERSIONS is not set
CONFIG_MODULE_SRCVERSION_ALL=y
CONFIG_BLOCK=y
CONFIG_LBD=y
CONFIG_BLK_DEV_BSG=y
# CONFIG_BLK_DEV_INTEGRITY is not set

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
# CONFIG_IOSCHED_CFQ is not set
CONFIG_DEFAULT_AS=y
# CONFIG_DEFAULT_DEADLINE is not set
# CONFIG_DEFAULT_CFQ is not set
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="anticipatory"
CONFIG_PREEMPT_NOTIFIERS=y
# CONFIG_FREEZER is not set

#
# Processor type and features
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ=y
# CONFIG_HIGH_RES_TIMERS is not set
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
CONFIG_SMP_SUPPORT=y
CONFIG_SPARSE_IRQ=y
CONFIG_NUMA_MIGRATE_IRQ_DESC=y
CONFIG_X86_MPPARSE=y
CONFIG_X86_BIGSMP=y
CONFIG_X86_EXTENDED_PLATFORM=y
# CONFIG_X86_ELAN is not set
# CONFIG_X86_RDC321X is not set
CONFIG_X86_32_NON_STANDARD=y
CONFIG_X86_NUMAQ=y
# CONFIG_SCHED_OMIT_FRAME_POINTER is not set
# CONFIG_PARAVIRT_GUEST is not set
CONFIG_MEMTEST=y
CONFIG_X86_SUMMIT_NUMA=y
CONFIG_X86_CYCLONE_TIMER=y
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
# CONFIG_MPENTIUMII is not set
# CONFIG_MPENTIUMIII is not set
# CONFIG_MPENTIUMM is not set
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MK8 is not set
CONFIG_MCRUSOE=y
# CONFIG_MEFFICEON is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MGEODEGX1 is not set
# CONFIG_MGEODE_LX is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
# CONFIG_MVIAC7 is not set
# CONFIG_MPSC is not set
# CONFIG_MCORE2 is not set
# CONFIG_GENERIC_CPU is not set
CONFIG_X86_GENERIC=y
CONFIG_X86_CPU=y
CONFIG_X86_L1_CACHE_BYTES=64
CONFIG_X86_INTERNODE_CACHE_BYTES=64
CONFIG_X86_CMPXCHG=y
CONFIG_X86_L1_CACHE_SHIFT=5
CONFIG_X86_XADD=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=4
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_PROCESSOR_SELECT=y
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_CYRIX_32=y
# CONFIG_CPU_SUP_AMD is not set
# CONFIG_CPU_SUP_CENTAUR is not set
CONFIG_CPU_SUP_TRANSMETA_32=y
CONFIG_CPU_SUP_UMC_32=y
CONFIG_X86_DS=y
CONFIG_X86_PTRACE_BTS=y
CONFIG_HPET_TIMER=y
CONFIG_DMI=y
# CONFIG_IOMMU_HELPER is not set
# CONFIG_IOMMU_API is not set
CONFIG_NR_CPUS=32
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_NONFATAL=y
CONFIG_X86_MCE_P4THERMAL=y
CONFIG_VM86=y
CONFIG_TOSHIBA=m
# CONFIG_I8K is not set
CONFIG_X86_REBOOTFIXUPS=y
CONFIG_MICROCODE=y
CONFIG_MICROCODE_INTEL=y
# CONFIG_MICROCODE_AMD is not set
CONFIG_MICROCODE_OLD_INTERFACE=y
# CONFIG_X86_MSR is not set
# CONFIG_X86_CPUID is not set
# CONFIG_X86_CPU_DEBUG is not set
CONFIG_UP_WANTED_1=y
CONFIG_UP_WANTED_2=y
CONFIG_UP_WANTED=y
CONFIG_SMP=y
# CONFIG_NOHIGHMEM is not set
# CONFIG_HIGHMEM4G is not set
CONFIG_HIGHMEM64G=y
CONFIG_VMSPLIT_3G=y
# CONFIG_VMSPLIT_3G_OPT is not set
# CONFIG_VMSPLIT_2G is not set
# CONFIG_VMSPLIT_2G_OPT is not set
# CONFIG_VMSPLIT_1G is not set
CONFIG_PAGE_OFFSET=0xC0000000
CONFIG_HIGHMEM=y
CONFIG_X86_PAE=y
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
CONFIG_NUMA=y
CONFIG_NODES_SHIFT=4
CONFIG_HAVE_ARCH_BOOTMEM=y
CONFIG_ARCH_HAVE_MEMORY_PRESENT=y
CONFIG_NEED_NODE_MEMMAP_SIZE=y
CONFIG_HAVE_ARCH_ALLOC_REMAP=y
CONFIG_ARCH_DISCONTIGMEM_ENABLE=y
CONFIG_ARCH_DISCONTIGMEM_DEFAULT=y
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ILLEGAL_POINTER_VALUE=0
CONFIG_SELECT_MEMORY_MODEL=y
# CONFIG_FLATMEM_MANUAL is not set
CONFIG_DISCONTIGMEM_MANUAL=y
# CONFIG_SPARSEMEM_MANUAL is not set
CONFIG_DISCONTIGMEM=y
CONFIG_FLAT_NODE_MEM_MAP=y
CONFIG_NEED_MULTIPLE_NODES=y
CONFIG_HAVE_MEMORY_PRESENT=y
CONFIG_SPARSEMEM_STATIC=y
CONFIG_PAGEFLAGS_EXTENDED=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_MIGRATION=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_ZONE_DMA_FLAG=1
CONFIG_BOUNCE=y
CONFIG_VIRT_TO_BUS=y
CONFIG_UNEVICTABLE_LRU=y
CONFIG_MMU_NOTIFIER=y
CONFIG_HIGHPTE=y
# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set
CONFIG_X86_RESERVE_LOW_64K=y
CONFIG_MATH_EMULATION=y
CONFIG_MTRR=y
CONFIG_MTRR_SANITIZER=y
CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0
CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
CONFIG_X86_PAT=y
# CONFIG_SECCOMP is not set
CONFIG_CC_STACKPROTECTOR_ALL=y
CONFIG_CC_STACKPROTECTOR=y
# CONFIG_HZ_100 is not set
# CONFIG_HZ_250 is not set
# CONFIG_HZ_300 is not set
CONFIG_HZ_1000=y
CONFIG_HZ=1000
# CONFIG_SCHED_HRTICK is not set
CONFIG_KEXEC=y
CONFIG_CRASH_DUMP=y
CONFIG_PHYSICAL_START=0x1000000
# CONFIG_RELOCATABLE is not set
CONFIG_PHYSICAL_ALIGN=0x100000
# CONFIG_HOTPLUG_CPU is not set
# CONFIG_COMPAT_VDSO is not set
CONFIG_CMDLINE_BOOL=y
CONFIG_CMDLINE=""
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
# CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID is not set

#
# Power management and ACPI options
#
# CONFIG_PM is not set

#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_TABLE=y
# CONFIG_CPU_FREQ_DEBUG is not set
CONFIG_CPU_FREQ_STAT=y
CONFIG_CPU_FREQ_STAT_DETAILS=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=y
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=m
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m

#
# CPUFreq processor drivers
#
CONFIG_X86_POWERNOW_K6=m
# CONFIG_X86_POWERNOW_K7 is not set
# CONFIG_X86_POWERNOW_K8 is not set
CONFIG_X86_GX_SUSPMOD=y
# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
CONFIG_X86_SPEEDSTEP_ICH=y
CONFIG_X86_SPEEDSTEP_SMI=y
CONFIG_X86_P4_CLOCKMOD=m
CONFIG_X86_CPUFREQ_NFORCE2=m
# CONFIG_X86_LONGRUN is not set
CONFIG_X86_E_POWERSAVER=y

#
# shared options
#
CONFIG_X86_SPEEDSTEP_LIB=y
CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK=y
# CONFIG_CPU_IDLE is not set

#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GOMMCONFIG is not set
# CONFIG_PCI_GODIRECT is not set
# CONFIG_PCI_GOOLPC is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_DOMAINS=y
CONFIG_PCIEPORTBUS=y
CONFIG_PCIEAER=y
# CONFIG_PCIEASPM is not set
CONFIG_ARCH_SUPPORTS_MSI=y
CONFIG_PCI_MSI=y
CONFIG_PCI_LEGACY=y
CONFIG_PCI_STUB=m
CONFIG_HT_IRQ=y
CONFIG_ISA_DMA_API=y
CONFIG_ISA=y
CONFIG_EISA=y
# CONFIG_EISA_VLB_PRIMING is not set
CONFIG_EISA_PCI_EISA=y
CONFIG_EISA_VIRTUAL_ROOT=y
# CONFIG_EISA_NAMES is not set
# CONFIG_MCA is not set
# CONFIG_SCx200 is not set
# CONFIG_OLPC is not set
CONFIG_PCCARD=m
# CONFIG_PCMCIA_DEBUG is not set
# CONFIG_PCMCIA is not set
CONFIG_CARDBUS=y

#
# PC-card bridges
#
CONFIG_YENTA=m
# CONFIG_YENTA_O2 is not set
# CONFIG_YENTA_RICOH is not set
CONFIG_YENTA_TI=y
CONFIG_YENTA_ENE_TUNE=y
CONFIG_YENTA_TOSHIBA=y
CONFIG_PCMCIA_PROBE=y
CONFIG_PCCARD_NONSTATIC=m
# CONFIG_HOTPLUG_PCI is not set

#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
CONFIG_HAVE_AOUT=y
CONFIG_BINFMT_AOUT=y
# CONFIG_BINFMT_MISC is not set
CONFIG_HAVE_ATOMIC_IOMAP=y
CONFIG_NET=y

#
# Networking options
#
CONFIG_COMPAT_NET_DEV_OPS=y
CONFIG_PACKET=y
CONFIG_PACKET_MMAP=y
CONFIG_UNIX=y
CONFIG_XFRM=y
CONFIG_XFRM_USER=m
CONFIG_XFRM_SUB_POLICY=y
CONFIG_XFRM_MIGRATE=y
CONFIG_XFRM_STATISTICS=y
CONFIG_XFRM_IPCOMP=y
CONFIG_NET_KEY=y
CONFIG_NET_KEY_MIGRATE=y
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
CONFIG_IP_ADVANCED_ROUTER=y
# CONFIG_ASK_IP_FIB_HASH is not set
CONFIG_IP_FIB_TRIE=y
# CONFIG_IP_FIB_HASH is not set
# CONFIG_IP_FIB_TRIE_STATS is not set
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_IP_ROUTE_VERBOSE=y
CONFIG_IP_PNP=y
# CONFIG_IP_PNP_DHCP is not set
# CONFIG_IP_PNP_BOOTP is not set
CONFIG_IP_PNP_RARP=y
CONFIG_NET_IPIP=m
# CONFIG_NET_IPGRE is not set
CONFIG_ARPD=y
# CONFIG_SYN_COOKIES is not set
CONFIG_INET_AH=y
CONFIG_INET_ESP=y
CONFIG_INET_IPCOMP=y
CONFIG_INET_XFRM_TUNNEL=y
CONFIG_INET_TUNNEL=y
CONFIG_INET_XFRM_MODE_TRANSPORT=m
CONFIG_INET_XFRM_MODE_TUNNEL=y
CONFIG_INET_XFRM_MODE_BEET=m
CONFIG_INET_LRO=y
CONFIG_INET_DIAG=y
CONFIG_INET_TCP_DIAG=y
CONFIG_TCP_CONG_ADVANCED=y
# CONFIG_TCP_CONG_BIC is not set
# CONFIG_TCP_CONG_CUBIC is not set
CONFIG_TCP_CONG_WESTWOOD=m
CONFIG_TCP_CONG_HTCP=y
# CONFIG_TCP_CONG_HSTCP is not set
CONFIG_TCP_CONG_HYBLA=y
CONFIG_TCP_CONG_VEGAS=y
CONFIG_TCP_CONG_SCALABLE=m
CONFIG_TCP_CONG_LP=m
CONFIG_TCP_CONG_VENO=m
CONFIG_TCP_CONG_YEAH=y
# CONFIG_TCP_CONG_ILLINOIS is not set
# CONFIG_DEFAULT_BIC is not set
# CONFIG_DEFAULT_CUBIC is not set
# CONFIG_DEFAULT_HTCP is not set
# CONFIG_DEFAULT_VEGAS is not set
# CONFIG_DEFAULT_WESTWOOD is not set
CONFIG_DEFAULT_RENO=y
CONFIG_DEFAULT_TCP_CONG="reno"
CONFIG_TCP_MD5SIG=y
CONFIG_IPV6=m
# CONFIG_IPV6_PRIVACY is not set
CONFIG_IPV6_ROUTER_PREF=y
CONFIG_IPV6_ROUTE_INFO=y
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
CONFIG_INET6_AH=m
# CONFIG_INET6_ESP is not set
# CONFIG_INET6_IPCOMP is not set
CONFIG_IPV6_MIP6=m
# CONFIG_INET6_XFRM_TUNNEL is not set
CONFIG_INET6_TUNNEL=m
CONFIG_INET6_XFRM_MODE_TRANSPORT=m
# CONFIG_INET6_XFRM_MODE_TUNNEL is not set
# CONFIG_INET6_XFRM_MODE_BEET is not set
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
CONFIG_IPV6_SIT=m
CONFIG_IPV6_NDISC_NODETYPE=y
CONFIG_IPV6_TUNNEL=m
CONFIG_IPV6_MULTIPLE_TABLES=y
CONFIG_IPV6_SUBTREES=y
CONFIG_IPV6_MROUTE=y
CONFIG_IPV6_PIMSM_V2=y
# CONFIG_NETLABEL is not set
# CONFIG_NETWORK_SECMARK is not set
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set
# CONFIG_NETFILTER_ADVANCED is not set

#
# Core Netfilter Configuration
#
CONFIG_NETFILTER_NETLINK=y
CONFIG_NETFILTER_NETLINK_LOG=y
CONFIG_NF_CONNTRACK=m
# CONFIG_NF_CONNTRACK_FTP is not set
CONFIG_NF_CONNTRACK_IRC=m
CONFIG_NF_CONNTRACK_SIP=m
# CONFIG_NF_CT_NETLINK is not set
CONFIG_NETFILTER_XTABLES=m
# CONFIG_NETFILTER_XT_TARGET_MARK is not set
# CONFIG_NETFILTER_XT_TARGET_NFLOG is not set
CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
# CONFIG_NETFILTER_XT_MATCH_CONNTRACK is not set
# CONFIG_NETFILTER_XT_MATCH_MARK is not set
CONFIG_NETFILTER_XT_MATCH_POLICY=m
CONFIG_NETFILTER_XT_MATCH_STATE=m
CONFIG_IP_VS=m
# CONFIG_IP_VS_IPV6 is not set
CONFIG_IP_VS_DEBUG=y
CONFIG_IP_VS_TAB_BITS=12

#
# IPVS transport protocol load balancing support
#
CONFIG_IP_VS_PROTO_TCP=y
CONFIG_IP_VS_PROTO_UDP=y
CONFIG_IP_VS_PROTO_AH_ESP=y
CONFIG_IP_VS_PROTO_ESP=y
CONFIG_IP_VS_PROTO_AH=y

#
# IPVS scheduler
#
CONFIG_IP_VS_RR=m
CONFIG_IP_VS_WRR=m
# CONFIG_IP_VS_LC is not set
CONFIG_IP_VS_WLC=m
CONFIG_IP_VS_LBLC=m
CONFIG_IP_VS_LBLCR=m
CONFIG_IP_VS_DH=m
# CONFIG_IP_VS_SH is not set
CONFIG_IP_VS_SED=m
CONFIG_IP_VS_NQ=m

#
# IPVS application helper
#
CONFIG_IP_VS_FTP=m

#
# IP: Netfilter Configuration
#
CONFIG_NF_DEFRAG_IPV4=m
CONFIG_NF_CONNTRACK_IPV4=m
CONFIG_NF_CONNTRACK_PROC_COMPAT=y
CONFIG_IP_NF_IPTABLES=m
CONFIG_IP_NF_FILTER=m
CONFIG_IP_NF_TARGET_REJECT=m
CONFIG_IP_NF_TARGET_LOG=m
CONFIG_IP_NF_TARGET_ULOG=m
CONFIG_NF_NAT=m
CONFIG_NF_NAT_NEEDED=y
# CONFIG_IP_NF_TARGET_MASQUERADE is not set
# CONFIG_NF_NAT_FTP is not set
CONFIG_NF_NAT_IRC=m
# CONFIG_NF_NAT_TFTP is not set
# CONFIG_NF_NAT_AMANDA is not set
# CONFIG_NF_NAT_PPTP is not set
# CONFIG_NF_NAT_H323 is not set
CONFIG_NF_NAT_SIP=m
CONFIG_IP_NF_MANGLE=m

#
# IPv6: Netfilter Configuration
#
# CONFIG_NF_CONNTRACK_IPV6 is not set
CONFIG_IP6_NF_IPTABLES=m
CONFIG_IP6_NF_MATCH_IPV6HEADER=m
CONFIG_IP6_NF_TARGET_LOG=m
CONFIG_IP6_NF_FILTER=m
CONFIG_IP6_NF_TARGET_REJECT=m
CONFIG_IP6_NF_MANGLE=m
CONFIG_IP_DCCP=m
CONFIG_INET_DCCP_DIAG=m

#
# DCCP CCIDs Configuration (EXPERIMENTAL)
#
# CONFIG_IP_DCCP_CCID2_DEBUG is not set
# CONFIG_IP_DCCP_CCID3 is not set
CONFIG_IP_SCTP=m
CONFIG_SCTP_DBG_MSG=y
CONFIG_SCTP_DBG_OBJCNT=y
CONFIG_SCTP_HMAC_NONE=y
# CONFIG_SCTP_HMAC_SHA1 is not set
# CONFIG_SCTP_HMAC_MD5 is not set
# CONFIG_TIPC is not set
CONFIG_ATM=m
CONFIG_ATM_CLIP=m
CONFIG_ATM_CLIP_NO_ICMP=y
CONFIG_ATM_LANE=m
CONFIG_ATM_MPOA=m
# CONFIG_ATM_BR2684 is not set
CONFIG_STP=y
CONFIG_BRIDGE=y
CONFIG_NET_DSA=y
CONFIG_NET_DSA_TAG_DSA=y
# CONFIG_NET_DSA_TAG_EDSA is not set
CONFIG_NET_DSA_TAG_TRAILER=y
CONFIG_NET_DSA_MV88E6XXX=y
CONFIG_NET_DSA_MV88E6060=y
CONFIG_NET_DSA_MV88E6XXX_NEED_PPU=y
CONFIG_NET_DSA_MV88E6131=y
# CONFIG_NET_DSA_MV88E6123_61_65 is not set
CONFIG_VLAN_8021Q=m
# CONFIG_VLAN_8021Q_GVRP is not set
CONFIG_DECNET=m
# CONFIG_DECNET_ROUTER is not set
CONFIG_LLC=y
# CONFIG_LLC2 is not set
CONFIG_IPX=y
CONFIG_IPX_INTERN=y
CONFIG_ATALK=y
CONFIG_DEV_APPLETALK=m
CONFIG_LTPC=m
# CONFIG_IPDDP is not set
CONFIG_X25=y
CONFIG_LAPB=m
CONFIG_ECONET=m
# CONFIG_ECONET_AUNUDP is not set
# CONFIG_ECONET_NATIVE is not set
CONFIG_WAN_ROUTER=y
CONFIG_NET_SCHED=y

#
# Queueing/Scheduling
#
# CONFIG_NET_SCH_CBQ is not set
CONFIG_NET_SCH_HTB=m
CONFIG_NET_SCH_HFSC=m
# CONFIG_NET_SCH_ATM is not set
# CONFIG_NET_SCH_PRIO is not set
CONFIG_NET_SCH_MULTIQ=y
# CONFIG_NET_SCH_RED is not set
CONFIG_NET_SCH_SFQ=m
CONFIG_NET_SCH_TEQL=m
# CONFIG_NET_SCH_TBF is not set
CONFIG_NET_SCH_GRED=y
# CONFIG_NET_SCH_DSMARK is not set
# CONFIG_NET_SCH_NETEM is not set
CONFIG_NET_SCH_DRR=m

#
# Classification
#
CONFIG_NET_CLS=y
CONFIG_NET_CLS_BASIC=m
CONFIG_NET_CLS_TCINDEX=y
CONFIG_NET_CLS_ROUTE4=m
CONFIG_NET_CLS_ROUTE=y
CONFIG_NET_CLS_FW=m
# CONFIG_NET_CLS_U32 is not set
CONFIG_NET_CLS_RSVP=y
CONFIG_NET_CLS_RSVP6=m
# CONFIG_NET_CLS_FLOW is not set
# CONFIG_NET_EMATCH is not set
# CONFIG_NET_CLS_ACT is not set
CONFIG_NET_CLS_IND=y
CONFIG_NET_SCH_FIFO=y
# CONFIG_DCB is not set

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
CONFIG_NET_TCPPROBE=m
CONFIG_HAMRADIO=y

#
# Packet Radio protocols
#
CONFIG_AX25=m
CONFIG_AX25_DAMA_SLAVE=y
CONFIG_NETROM=m
# CONFIG_ROSE is not set

#
# AX.25 network device drivers
#
CONFIG_MKISS=m
# CONFIG_6PACK is not set
# CONFIG_BPQETHER is not set
CONFIG_SCC=m
# CONFIG_SCC_DELAY is not set
# CONFIG_SCC_TRXECHO is not set
# CONFIG_BAYCOM_SER_FDX is not set
CONFIG_BAYCOM_SER_HDX=m
CONFIG_YAM=m
# CONFIG_CAN is not set
CONFIG_IRDA=m

#
# IrDA protocols
#
CONFIG_IRLAN=m
CONFIG_IRNET=m
# CONFIG_IRCOMM is not set
CONFIG_IRDA_ULTRA=y

#
# IrDA options
#
CONFIG_IRDA_CACHE_LAST_LSAP=y
CONFIG_IRDA_FAST_RR=y
CONFIG_IRDA_DEBUG=y

#
# Infrared-port device drivers
#

#
# SIR device drivers
#
CONFIG_IRTTY_SIR=m

#
# Dongle support
#
# CONFIG_DONGLE is not set
CONFIG_KINGSUN_DONGLE=m
CONFIG_KSDAZZLE_DONGLE=m
CONFIG_KS959_DONGLE=m

#
# FIR device drivers
#
CONFIG_USB_IRDA=m
CONFIG_SIGMATEL_FIR=m
CONFIG_NSC_FIR=m
CONFIG_WINBOND_FIR=m
CONFIG_TOSHIBA_FIR=m
# CONFIG_SMC_IRCC_FIR is not set
# CONFIG_ALI_FIR is not set
CONFIG_VLSI_FIR=m
# CONFIG_VIA_FIR is not set
CONFIG_MCS_FIR=m
# CONFIG_BT is not set
CONFIG_AF_RXRPC=y
CONFIG_AF_RXRPC_DEBUG=y
CONFIG_RXKAD=m
# CONFIG_PHONET is not set
CONFIG_FIB_RULES=y
# CONFIG_WIRELESS is not set
CONFIG_WIRELESS_EXT=y
CONFIG_WIMAX=y
CONFIG_WIMAX_DEBUG_LEVEL=8
# CONFIG_RFKILL is not set

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
CONFIG_FIRMWARE_IN_KERNEL=y
CONFIG_EXTRA_FIRMWARE=""
# CONFIG_SYS_HYPERVISOR is not set
# CONFIG_CONNECTOR is not set
# CONFIG_PARPORT is not set
CONFIG_PNP=y
# CONFIG_PNP_DEBUG_MESSAGES is not set

#
# Protocols
#
CONFIG_ISAPNP=y
# CONFIG_PNPBIOS is not set
# CONFIG_PNPACPI is not set
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_FD is not set
# CONFIG_BLK_DEV_XD is not set
CONFIG_BLK_CPQ_DA=y
CONFIG_BLK_CPQ_CISS_DA=y
CONFIG_CISS_SCSI_TAPE=y
CONFIG_BLK_DEV_DAC960=m
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
# CONFIG_BLK_DEV_LOOP is not set
CONFIG_BLK_DEV_NBD=m
CONFIG_BLK_DEV_SX8=y
# CONFIG_BLK_DEV_UB is not set
CONFIG_BLK_DEV_RAM=m
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=4096
CONFIG_BLK_DEV_XIP=y
CONFIG_CDROM_PKTCDVD=m
CONFIG_CDROM_PKTCDVD_BUFFERS=8
CONFIG_CDROM_PKTCDVD_WCACHE=y
CONFIG_ATA_OVER_ETH=m
CONFIG_VIRTIO_BLK=y
# CONFIG_BLK_DEV_HD is not set
# CONFIG_MISC_DEVICES is not set
CONFIG_TIFM_CORE=m
CONFIG_HAVE_IDE=y

#
# SCSI device support
#
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
# CONFIG_SCSI_TGT is not set
CONFIG_SCSI_NETLINK=y
CONFIG_SCSI_PROC_FS=y

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
CONFIG_CHR_DEV_OSST=y
# CONFIG_BLK_DEV_SR is not set
# CONFIG_CHR_DEV_SG is not set
CONFIG_CHR_DEV_SCH=y

#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
# CONFIG_SCSI_MULTI_LUN is not set
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y
# CONFIG_SCSI_SCAN_ASYNC is not set
CONFIG_SCSI_WAIT_SCAN=m

#
# SCSI Transports
#
CONFIG_SCSI_SPI_ATTRS=y
CONFIG_SCSI_FC_ATTRS=y
# CONFIG_SCSI_ISCSI_ATTRS is not set
CONFIG_SCSI_SAS_ATTRS=y
# CONFIG_SCSI_SRP_ATTRS is not set
# CONFIG_SCSI_LOWLEVEL is not set
CONFIG_SCSI_AIC7XXX=y
CONFIG_SCSI_DH=y
CONFIG_SCSI_DH_RDAC=m
CONFIG_SCSI_DH_HP_SW=m
CONFIG_SCSI_DH_EMC=y
CONFIG_SCSI_DH_ALUA=m
CONFIG_ATA=y
# CONFIG_ATA_NONSTANDARD is not set
CONFIG_SATA_PMP=y
CONFIG_SATA_AHCI=y
CONFIG_SATA_SIL24=m
CONFIG_ATA_SFF=y
# CONFIG_SATA_SVW is not set
CONFIG_ATA_PIIX=y
CONFIG_SATA_MV=m
CONFIG_SATA_NV=y
CONFIG_PDC_ADMA=m
# CONFIG_SATA_QSTOR is not set
CONFIG_SATA_PROMISE=y
CONFIG_SATA_SX4=m
CONFIG_SATA_SIL=m
# CONFIG_SATA_SIS is not set
CONFIG_SATA_ULI=y
CONFIG_SATA_VIA=y
CONFIG_SATA_VITESSE=y
CONFIG_SATA_INIC162X=y
# CONFIG_PATA_ALI is not set
CONFIG_PATA_AMD=y
# CONFIG_PATA_ARTOP is not set
CONFIG_PATA_ATIIXP=y
CONFIG_PATA_CMD640_PCI=y
CONFIG_PATA_CMD64X=y
CONFIG_PATA_CS5520=y
CONFIG_PATA_CS5530=m
# CONFIG_PATA_CS5535 is not set
CONFIG_PATA_CS5536=m
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
CONFIG_ATA_GENERIC=m
# CONFIG_PATA_HPT366 is not set
CONFIG_PATA_HPT37X=y
CONFIG_PATA_HPT3X2N=y
CONFIG_PATA_HPT3X3=m
CONFIG_PATA_HPT3X3_DMA=y
CONFIG_PATA_ISAPNP=m
CONFIG_PATA_IT821X=y
CONFIG_PATA_IT8213=m
# CONFIG_PATA_JMICRON is not set
CONFIG_PATA_LEGACY=m
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_MARVELL is not set
CONFIG_PATA_MPIIX=m
CONFIG_PATA_OLDPIIX=y
CONFIG_PATA_NETCELL=m
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87410 is not set
CONFIG_PATA_NS87415=y
# CONFIG_PATA_OPTI is not set
CONFIG_PATA_OPTIDMA=m
CONFIG_PATA_PDC_OLD=m
CONFIG_PATA_QDI=y
CONFIG_PATA_RADISYS=m
# CONFIG_PATA_RZ1000 is not set
CONFIG_PATA_SC1200=m
CONFIG_PATA_SERVERWORKS=y
# CONFIG_PATA_PDC2027X is not set
CONFIG_PATA_SIL680=y
CONFIG_PATA_SIS=y
# CONFIG_PATA_VIA is not set
CONFIG_PATA_WINBOND=m
CONFIG_PATA_WINBOND_VLB=m
# CONFIG_PATA_PLATFORM is not set
# CONFIG_PATA_SCH is not set
# CONFIG_MD is not set
CONFIG_FUSION=y
CONFIG_FUSION_SPI=y
# CONFIG_FUSION_FC is not set
CONFIG_FUSION_SAS=y
CONFIG_FUSION_MAX_SGE=128
CONFIG_FUSION_CTL=m
CONFIG_FUSION_LOGGING=y

#
# IEEE 1394 (FireWire) support
#

#
# Enable only one of the two stacks, unless you know what you are doing
#
# CONFIG_FIREWIRE is not set
CONFIG_IEEE1394=m
CONFIG_IEEE1394_OHCI1394=m
CONFIG_IEEE1394_PCILYNX=m
# CONFIG_IEEE1394_SBP2 is not set
CONFIG_IEEE1394_ETH1394_ROM_ENTRY=y
CONFIG_IEEE1394_ETH1394=m
# CONFIG_IEEE1394_RAWIO is not set
CONFIG_IEEE1394_VIDEO1394=m
# CONFIG_IEEE1394_DV1394 is not set
CONFIG_IEEE1394_VERBOSEDEBUG=y
CONFIG_I2O=y
CONFIG_I2O_LCT_NOTIFY_ON_CHANGES=y
CONFIG_I2O_EXT_ADAPTEC=y
CONFIG_I2O_EXT_ADAPTEC_DMA64=y
CONFIG_I2O_CONFIG=y
CONFIG_I2O_CONFIG_OLD_IOCTL=y
CONFIG_I2O_BUS=y
# CONFIG_I2O_BLOCK is not set
CONFIG_I2O_SCSI=m
CONFIG_I2O_PROC=m
# CONFIG_MACINTOSH_DRIVERS is not set
CONFIG_NETDEVICES=y
CONFIG_DUMMY=y
# CONFIG_BONDING is not set
# CONFIG_MACVLAN is not set
CONFIG_EQUALIZER=y
# CONFIG_TUN is not set
CONFIG_VETH=y
# CONFIG_NET_SB1000 is not set
CONFIG_ARCNET=y
CONFIG_ARCNET_1201=y
# CONFIG_ARCNET_1051 is not set
# CONFIG_ARCNET_RAW is not set
CONFIG_ARCNET_CAP=m
CONFIG_ARCNET_COM90xx=y
CONFIG_ARCNET_COM90xxIO=m
CONFIG_ARCNET_RIM_I=y
CONFIG_ARCNET_COM20020=y
CONFIG_ARCNET_COM20020_ISA=m
CONFIG_ARCNET_COM20020_PCI=m
CONFIG_PHYLIB=y

#
# MII PHY device drivers
#
# CONFIG_MARVELL_PHY is not set
CONFIG_DAVICOM_PHY=m
CONFIG_QSEMI_PHY=m
CONFIG_LXT_PHY=y
CONFIG_CICADA_PHY=y
CONFIG_VITESSE_PHY=y
CONFIG_SMSC_PHY=y
CONFIG_BROADCOM_PHY=y
CONFIG_ICPLUS_PHY=m
CONFIG_REALTEK_PHY=m
CONFIG_NATIONAL_PHY=m
# CONFIG_STE10XP is not set
CONFIG_LSI_ET1011C_PHY=m
# CONFIG_FIXED_PHY is not set
CONFIG_MDIO_BITBANG=m
CONFIG_NET_ETHERNET=y
CONFIG_MII=y
CONFIG_HAPPYMEAL=m
CONFIG_SUNGEM=y
# CONFIG_CASSINI is not set
# CONFIG_NET_VENDOR_3COM is not set
CONFIG_VORTEX=y
CONFIG_LANCE=m
CONFIG_NET_VENDOR_SMC=y
CONFIG_ULTRA=m
# CONFIG_ULTRA32 is not set
CONFIG_SMC9194=m
CONFIG_ENC28J60=y
CONFIG_ENC28J60_WRITEVERIFY=y
CONFIG_NET_VENDOR_RACAL=y
# CONFIG_NI52 is not set
CONFIG_NI65=m
CONFIG_DNET=m
# CONFIG_NET_TULIP is not set
CONFIG_AT1700=y
# CONFIG_DEPCA is not set
CONFIG_HP100=m
# CONFIG_NET_ISA is not set
# CONFIG_IBM_NEW_EMAC_ZMII is not set
# CONFIG_IBM_NEW_EMAC_RGMII is not set
# CONFIG_IBM_NEW_EMAC_TAH is not set
# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
# CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
CONFIG_NET_PCI=y
CONFIG_PCNET32=y
# CONFIG_AMD8111_ETH is not set
CONFIG_ADAPTEC_STARFIRE=y
CONFIG_AC3200=m
CONFIG_APRICOT=y
CONFIG_B44=m
CONFIG_B44_PCI_AUTOSELECT=y
CONFIG_B44_PCICORE_AUTOSELECT=y
CONFIG_B44_PCI=y
CONFIG_FORCEDETH=y
# CONFIG_FORCEDETH_NAPI is not set
CONFIG_CS89x0=m
CONFIG_E100=y
CONFIG_LNE390=m
CONFIG_FEALNX=m
# CONFIG_NATSEMI is not set
CONFIG_NE2K_PCI=m
# CONFIG_NE3210 is not set
# CONFIG_ES3210 is not set
CONFIG_8139CP=m
CONFIG_8139TOO=y
CONFIG_8139TOO_PIO=y
# CONFIG_8139TOO_TUNE_TWISTER is not set
# CONFIG_8139TOO_8129 is not set
# CONFIG_8139_OLD_RX_RESET is not set
CONFIG_R6040=y
# CONFIG_SIS900 is not set
CONFIG_EPIC100=y
CONFIG_SMSC9420=y
CONFIG_SUNDANCE=y
CONFIG_SUNDANCE_MMIO=y
CONFIG_TLAN=y
CONFIG_VIA_RHINE=m
# CONFIG_VIA_RHINE_MMIO is not set
CONFIG_SC92031=y
CONFIG_ATL2=m
CONFIG_NETDEV_1000=y
# CONFIG_ACENIC is not set
CONFIG_DL2K=m
CONFIG_E1000=y
CONFIG_E1000E=y
CONFIG_IP1000=m
CONFIG_IGB=y
CONFIG_IGB_LRO=y
# CONFIG_NS83820 is not set
CONFIG_HAMACHI=m
CONFIG_YELLOWFIN=y
# CONFIG_R8169 is not set
CONFIG_SIS190=y
CONFIG_SKGE=m
CONFIG_SKGE_DEBUG=y
CONFIG_SKY2=y
CONFIG_SKY2_DEBUG=y
CONFIG_VIA_VELOCITY=m
CONFIG_TIGON3=y
# CONFIG_BNX2 is not set
CONFIG_QLA3XXX=y
CONFIG_ATL1=y
CONFIG_ATL1E=y
# CONFIG_ATL1C is not set
CONFIG_JME=m
# CONFIG_NETDEV_10000 is not set
CONFIG_TR=y
CONFIG_IBMTR=m
CONFIG_IBMOL=m
CONFIG_IBMLS=y
CONFIG_3C359=m
CONFIG_TMS380TR=y
CONFIG_TMSPCI=m
# CONFIG_SKISA is not set
# CONFIG_PROTEON is not set
CONFIG_ABYSS=y
CONFIG_SMCTR=m

#
# Wireless LAN
#
CONFIG_WLAN_PRE80211=y
CONFIG_STRIP=y
CONFIG_ARLAN=m
CONFIG_WAVELAN=y
# CONFIG_WLAN_80211 is not set
# CONFIG_IWLWIFI_LEDS is not set

#
# WiMAX Wireless Broadband devices
#
CONFIG_WIMAX_I2400M=m
CONFIG_WIMAX_I2400M_SDIO=m
CONFIG_WIMAX_I2400M_DEBUG_LEVEL=8

#
# USB Network Adapters
#
# CONFIG_USB_CATC is not set
CONFIG_USB_KAWETH=m
CONFIG_USB_PEGASUS=y
CONFIG_USB_RTL8150=m
# CONFIG_USB_USBNET is not set
CONFIG_WAN=y
CONFIG_HOSTESS_SV11=m
CONFIG_COSA=m
CONFIG_LANMEDIA=m
# CONFIG_SEALEVEL_4021 is not set
CONFIG_HDLC=y
CONFIG_HDLC_RAW=m
CONFIG_HDLC_RAW_ETH=y
CONFIG_HDLC_CISCO=y
CONFIG_HDLC_FR=m
CONFIG_HDLC_PPP=y

#
# X.25/LAPB support is disabled
#
CONFIG_PCI200SYN=m
CONFIG_WANXL=m
CONFIG_PC300TOO=y
# CONFIG_N2 is not set
# CONFIG_C101 is not set
CONFIG_FARSYNC=y
CONFIG_DSCC4=m
CONFIG_DSCC4_PCISYNC=y
# CONFIG_DSCC4_PCI_RST is not set
# CONFIG_DLCI is not set
CONFIG_WAN_ROUTER_DRIVERS=m
# CONFIG_CYCLADES_SYNC is not set
# CONFIG_LAPBETHER is not set
CONFIG_X25_ASY=m
# CONFIG_SBNI is not set
CONFIG_ATM_DRIVERS=y
CONFIG_ATM_DUMMY=m
# CONFIG_ATM_TCP is not set
# CONFIG_ATM_LANAI is not set
CONFIG_ATM_ENI=m
CONFIG_ATM_ENI_DEBUG=y
# CONFIG_ATM_ENI_TUNE_BURST is not set
CONFIG_ATM_FIRESTREAM=m
# CONFIG_ATM_ZATM is not set
CONFIG_ATM_NICSTAR=m
# CONFIG_ATM_NICSTAR_USE_SUNI is not set
CONFIG_ATM_NICSTAR_USE_IDT77105=y
# CONFIG_ATM_IDT77252 is not set
# CONFIG_ATM_AMBASSADOR is not set
CONFIG_ATM_HORIZON=m
# CONFIG_ATM_HORIZON_DEBUG is not set
# CONFIG_ATM_IA is not set
CONFIG_ATM_FORE200E=m
# CONFIG_ATM_FORE200E_USE_TASKLET is not set
CONFIG_ATM_FORE200E_TX_RETRY=16
CONFIG_ATM_FORE200E_DEBUG=0
# CONFIG_ATM_HE is not set
# CONFIG_ATM_SOLOS is not set
CONFIG_FDDI=y
# CONFIG_DEFXX is not set
# CONFIG_SKFP is not set
# CONFIG_HIPPI is not set
CONFIG_PPP=y
# CONFIG_PPP_MULTILINK is not set
CONFIG_PPP_FILTER=y
# CONFIG_PPP_ASYNC is not set
CONFIG_PPP_SYNC_TTY=y
# CONFIG_PPP_DEFLATE is not set
# CONFIG_PPP_BSDCOMP is not set
# CONFIG_PPP_MPPE is not set
CONFIG_PPPOE=y
CONFIG_PPPOATM=m
CONFIG_PPPOL2TP=y
CONFIG_SLIP=y
CONFIG_SLIP_COMPRESSED=y
CONFIG_SLHC=y
CONFIG_SLIP_SMART=y
CONFIG_SLIP_MODE_SLIP6=y
CONFIG_NET_FC=y
CONFIG_NETCONSOLE=y
# CONFIG_NETCONSOLE_DYNAMIC is not set
CONFIG_NETPOLL=y
CONFIG_NETPOLL_TRAP=y
CONFIG_NET_POLL_CONTROLLER=y
# CONFIG_VIRTIO_NET is not set
CONFIG_ISDN=y
CONFIG_ISDN_I4L=y
CONFIG_ISDN_PPP=y
CONFIG_ISDN_PPP_VJ=y
CONFIG_ISDN_MPP=y
CONFIG_IPPP_FILTER=y
CONFIG_ISDN_PPP_BSDCOMP=m
# CONFIG_ISDN_AUDIO is not set
CONFIG_ISDN_X25=y

#
# ISDN feature submodules
#
CONFIG_ISDN_DIVERSION=y

#
# ISDN4Linux hardware drivers
#

#
# Passive cards
#
CONFIG_ISDN_DRV_HISAX=m

#
# D-channel protocol features
#
CONFIG_HISAX_EURO=y
CONFIG_DE_AOC=y
CONFIG_HISAX_NO_SENDCOMPLETE=y
CONFIG_HISAX_NO_LLC=y
# CONFIG_HISAX_NO_KEYPAD is not set
# CONFIG_HISAX_1TR6 is not set
CONFIG_HISAX_NI1=y
CONFIG_HISAX_MAX_CARDS=8

#
# HiSax supported cards
#
# CONFIG_HISAX_16_0 is not set
# CONFIG_HISAX_16_3 is not set
# CONFIG_HISAX_TELESPCI is not set
CONFIG_HISAX_S0BOX=y
# CONFIG_HISAX_AVM_A1 is not set
CONFIG_HISAX_FRITZPCI=y
CONFIG_HISAX_AVM_A1_PCMCIA=y
CONFIG_HISAX_ELSA=y
CONFIG_HISAX_IX1MICROR2=y
# CONFIG_HISAX_DIEHLDIVA is not set
CONFIG_HISAX_ASUSCOM=y
CONFIG_HISAX_TELEINT=y
CONFIG_HISAX_HFCS=y
# CONFIG_HISAX_SEDLBAUER is not set
CONFIG_HISAX_SPORTSTER=y
# CONFIG_HISAX_MIC is not set
CONFIG_HISAX_NETJET=y
# CONFIG_HISAX_NETJET_U is not set
CONFIG_HISAX_NICCY=y
CONFIG_HISAX_ISURF=y
# CONFIG_HISAX_HSTSAPHIR is not set
CONFIG_HISAX_BKM_A4T=y
CONFIG_HISAX_SCT_QUADRO=y
# CONFIG_HISAX_GAZEL is not set
# CONFIG_HISAX_HFC_PCI is not set
# CONFIG_HISAX_W6692 is not set
# CONFIG_HISAX_HFC_SX is not set
CONFIG_HISAX_ENTERNOW_PCI=y
CONFIG_HISAX_DEBUG=y

#
# HiSax PCMCIA card service modules
#

#
# HiSax sub driver modules
#
CONFIG_HISAX_ST5481=m
# CONFIG_HISAX_HFCUSB is not set
CONFIG_HISAX_HFC4S8S=m
CONFIG_HISAX_FRITZ_PCIPNP=m
CONFIG_HISAX_HDLC=y

#
# Active cards
#
CONFIG_ISDN_DRV_PCBIT=m
CONFIG_ISDN_DRV_SC=y
CONFIG_ISDN_DRV_ACT2000=m
CONFIG_HYSDN=m
CONFIG_ISDN_DRV_GIGASET=m
# CONFIG_GIGASET_BASE is not set
CONFIG_GIGASET_M105=m
CONFIG_GIGASET_M101=m
CONFIG_GIGASET_DEBUG=y
# CONFIG_GIGASET_UNDOCREQ is not set
# CONFIG_ISDN_CAPI is not set
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y
CONFIG_INPUT_FF_MEMLESS=y
CONFIG_INPUT_POLLDEV=y

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_JOYDEV=y
CONFIG_INPUT_EVDEV=y
CONFIG_INPUT_EVBUG=m

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_SUNKBD is not set
CONFIG_KEYBOARD_LKKBD=y
CONFIG_KEYBOARD_XTKBD=y
# CONFIG_KEYBOARD_NEWTON is not set
CONFIG_KEYBOARD_STOWAWAY=m
# CONFIG_INPUT_MOUSE is not set
CONFIG_INPUT_JOYSTICK=y
CONFIG_JOYSTICK_ANALOG=y
CONFIG_JOYSTICK_A3D=y
# CONFIG_JOYSTICK_ADI is not set
CONFIG_JOYSTICK_COBRA=m
CONFIG_JOYSTICK_GF2K=m
# CONFIG_JOYSTICK_GRIP is not set
CONFIG_JOYSTICK_GRIP_MP=y
# CONFIG_JOYSTICK_GUILLEMOT is not set
CONFIG_JOYSTICK_INTERACT=y
CONFIG_JOYSTICK_SIDEWINDER=m
CONFIG_JOYSTICK_TMDC=m
CONFIG_JOYSTICK_IFORCE=y
CONFIG_JOYSTICK_IFORCE_USB=y
CONFIG_JOYSTICK_IFORCE_232=y
CONFIG_JOYSTICK_WARRIOR=y
# CONFIG_JOYSTICK_MAGELLAN is not set
CONFIG_JOYSTICK_SPACEORB=m
# CONFIG_JOYSTICK_SPACEBALL is not set
CONFIG_JOYSTICK_STINGER=m
# CONFIG_JOYSTICK_TWIDJOY is not set
CONFIG_JOYSTICK_ZHENHUA=m
CONFIG_JOYSTICK_JOYDUMP=m
CONFIG_JOYSTICK_XPAD=y
CONFIG_JOYSTICK_XPAD_FF=y
CONFIG_JOYSTICK_XPAD_LEDS=y
# CONFIG_INPUT_TABLET is not set
CONFIG_INPUT_TOUCHSCREEN=y
CONFIG_TOUCHSCREEN_ADS7846=y
# CONFIG_TOUCHSCREEN_FUJITSU is not set
CONFIG_TOUCHSCREEN_GUNZE=y
CONFIG_TOUCHSCREEN_ELO=y
# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
# CONFIG_TOUCHSCREEN_MTOUCH is not set
# CONFIG_TOUCHSCREEN_INEXIO is not set
CONFIG_TOUCHSCREEN_MK712=y
# CONFIG_TOUCHSCREEN_HTCPEN is not set
CONFIG_TOUCHSCREEN_PENMOUNT=y
CONFIG_TOUCHSCREEN_TOUCHRIGHT=y
CONFIG_TOUCHSCREEN_TOUCHWIN=m
CONFIG_TOUCHSCREEN_USB_COMPOSITE=m
# CONFIG_TOUCHSCREEN_USB_EGALAX is not set
# CONFIG_TOUCHSCREEN_USB_PANJIT is not set
CONFIG_TOUCHSCREEN_USB_3M=y
CONFIG_TOUCHSCREEN_USB_ITM=y
# CONFIG_TOUCHSCREEN_USB_ETURBO is not set
# CONFIG_TOUCHSCREEN_USB_GUNZE is not set
CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y
CONFIG_TOUCHSCREEN_USB_IRTOUCH=y
CONFIG_TOUCHSCREEN_USB_IDEALTEK=y
CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y
# CONFIG_TOUCHSCREEN_USB_GOTOP is not set
CONFIG_TOUCHSCREEN_TOUCHIT213=y
# CONFIG_TOUCHSCREEN_TSC2007 is not set
CONFIG_INPUT_MISC=y
CONFIG_INPUT_PCSPKR=y
# CONFIG_INPUT_APANEL is not set
CONFIG_INPUT_WISTRON_BTNS=y
CONFIG_INPUT_ATI_REMOTE=y
CONFIG_INPUT_ATI_REMOTE2=y
# CONFIG_INPUT_KEYSPAN_REMOTE is not set
CONFIG_INPUT_POWERMATE=y
# CONFIG_INPUT_YEALINK is not set
CONFIG_INPUT_CM109=y
CONFIG_INPUT_UINPUT=y

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=m
CONFIG_SERIO_CT82C710=m
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
CONFIG_SERIO_RAW=m
CONFIG_GAMEPORT=y
CONFIG_GAMEPORT_NS558=y
CONFIG_GAMEPORT_L4=m
CONFIG_GAMEPORT_EMU10K1=y
# CONFIG_GAMEPORT_FM801 is not set

#
# Character devices
#
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
# CONFIG_VT_HW_CONSOLE_BINDING is not set
CONFIG_DEVKMEM=y
CONFIG_SERIAL_NONSTANDARD=y
CONFIG_COMPUTONE=y
# CONFIG_ROCKETPORT is not set
CONFIG_CYCLADES=y
CONFIG_CYZ_INTR=y
# CONFIG_DIGIEPCA is not set
CONFIG_MOXA_INTELLIO=m
# CONFIG_MOXA_SMARTIO is not set
CONFIG_ISI=m
CONFIG_SYNCLINK=y
CONFIG_SYNCLINKMP=m
# CONFIG_SYNCLINK_GT is not set
# CONFIG_N_HDLC is not set
CONFIG_RISCOM8=m
CONFIG_SPECIALIX=y
# CONFIG_SX is not set
CONFIG_RIO=y
# CONFIG_RIO_OLDPCI is not set
# CONFIG_STALDRV is not set
# CONFIG_NOZOMI is not set

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_PNP=m
CONFIG_SERIAL_8250_NR_UARTS=4
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_MANY_PORTS=y
CONFIG_SERIAL_8250_FOURPORT=y
CONFIG_SERIAL_8250_ACCENT=m
# CONFIG_SERIAL_8250_BOCA is not set
CONFIG_SERIAL_8250_EXAR_ST16C554=m
CONFIG_SERIAL_8250_HUB6=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
# CONFIG_SERIAL_8250_DETECT_IRQ is not set
CONFIG_SERIAL_8250_RSA=y

#
# Non-8250 serial port support
#
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
CONFIG_SERIAL_JSM=m
CONFIG_UNIX98_PTYS=y
# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=256
CONFIG_HVC_DRIVER=y
CONFIG_VIRTIO_CONSOLE=y
CONFIG_IPMI_HANDLER=y
# CONFIG_IPMI_PANIC_EVENT is not set
CONFIG_IPMI_DEVICE_INTERFACE=y
CONFIG_IPMI_SI=m
# CONFIG_IPMI_WATCHDOG is not set
# CONFIG_IPMI_POWEROFF is not set
CONFIG_HW_RANDOM=y
CONFIG_HW_RANDOM_INTEL=y
CONFIG_HW_RANDOM_AMD=m
CONFIG_HW_RANDOM_GEODE=m
CONFIG_HW_RANDOM_VIA=y
CONFIG_HW_RANDOM_VIRTIO=y
CONFIG_NVRAM=m
CONFIG_DTLK=y
# CONFIG_R3964 is not set
CONFIG_APPLICOM=y
CONFIG_SONYPI=y
CONFIG_MWAVE=m
CONFIG_PC8736x_GPIO=m
CONFIG_NSC_GPIO=m
CONFIG_CS5535_GPIO=m
CONFIG_RAW_DRIVER=m
CONFIG_MAX_RAW_DEVS=256
CONFIG_HANGCHECK_TIMER=y
# CONFIG_TCG_TPM is not set
CONFIG_TELCLOCK=y
CONFIG_DEVPORT=y
CONFIG_I2C=y
CONFIG_I2C_BOARDINFO=y
# CONFIG_I2C_CHARDEV is not set
# CONFIG_I2C_HELPER_AUTO is not set

#
# I2C Algorithms
#
CONFIG_I2C_ALGOBIT=y
CONFIG_I2C_ALGOPCF=y
CONFIG_I2C_ALGOPCA=y

#
# I2C Hardware Bus support
#

#
# PC SMBus host controller drivers
#
CONFIG_I2C_ALI1535=y
CONFIG_I2C_ALI1563=m
CONFIG_I2C_ALI15X3=m
# CONFIG_I2C_AMD756 is not set
# CONFIG_I2C_AMD8111 is not set
# CONFIG_I2C_I801 is not set
CONFIG_I2C_ISCH=y
# CONFIG_I2C_PIIX4 is not set
CONFIG_I2C_NFORCE2=y
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
CONFIG_I2C_SIS96X=m
# CONFIG_I2C_VIA is not set
CONFIG_I2C_VIAPRO=m

#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
CONFIG_I2C_OCORES=y
CONFIG_I2C_SIMTEC=m

#
# External I2C/SMBus adapter drivers
#
CONFIG_I2C_PARPORT_LIGHT=y
# CONFIG_I2C_TAOS_EVM is not set
CONFIG_I2C_TINY_USB=m

#
# Graphics adapter I2C/DDC channel drivers
#
# CONFIG_I2C_VOODOO3 is not set

#
# Other I2C/SMBus bus drivers
#
CONFIG_I2C_PCA_PLATFORM=y
# CONFIG_I2C_STUB is not set
CONFIG_SCx200_ACB=m

#
# Miscellaneous I2C Chip support
#
CONFIG_DS1682=y
CONFIG_SENSORS_PCF8574=m
CONFIG_PCF8575=y
CONFIG_SENSORS_PCA9539=m
# CONFIG_SENSORS_PCF8591 is not set
CONFIG_SENSORS_MAX6875=y
CONFIG_SENSORS_TSL2550=m
CONFIG_I2C_DEBUG_CORE=y
# CONFIG_I2C_DEBUG_ALGO is not set
CONFIG_I2C_DEBUG_BUS=y
CONFIG_I2C_DEBUG_CHIP=y
CONFIG_SPI=y
CONFIG_SPI_MASTER=y

#
# SPI Master Controller Drivers
#
# CONFIG_SPI_BITBANG is not set

#
# SPI Protocol Masters
#
CONFIG_SPI_SPIDEV=y
CONFIG_SPI_TLE62X0=m
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
# CONFIG_GPIOLIB is not set
CONFIG_W1=y

#
# 1-wire Bus Masters
#
# CONFIG_W1_MASTER_MATROX is not set
CONFIG_W1_MASTER_DS2490=y
CONFIG_W1_MASTER_DS2482=y

#
# 1-wire Slaves
#
# CONFIG_W1_SLAVE_THERM is not set
# CONFIG_W1_SLAVE_SMEM is not set
# CONFIG_W1_SLAVE_DS2431 is not set
CONFIG_W1_SLAVE_DS2433=m
CONFIG_W1_SLAVE_DS2433_CRC=y
CONFIG_W1_SLAVE_DS2760=y
CONFIG_W1_SLAVE_BQ27000=y
CONFIG_POWER_SUPPLY=m
CONFIG_POWER_SUPPLY_DEBUG=y
# CONFIG_PDA_POWER is not set
# CONFIG_BATTERY_DS2760 is not set
CONFIG_BATTERY_BQ27x00=m
# CONFIG_HWMON is not set
CONFIG_THERMAL=y
CONFIG_WATCHDOG=y
CONFIG_WATCHDOG_NOWAYOUT=y

#
# Watchdog Device Drivers
#
# CONFIG_SOFT_WATCHDOG is not set
CONFIG_ACQUIRE_WDT=y
CONFIG_ADVANTECH_WDT=y
# CONFIG_ALIM1535_WDT is not set
CONFIG_ALIM7101_WDT=y
CONFIG_SC520_WDT=m
CONFIG_IB700_WDT=m
# CONFIG_IBMASR is not set
CONFIG_WAFER_WDT=y
CONFIG_I6300ESB_WDT=y
CONFIG_ITCO_WDT=y
CONFIG_ITCO_VENDOR_SUPPORT=y
CONFIG_IT8712F_WDT=y
CONFIG_IT87_WDT=m
CONFIG_HP_WATCHDOG=m
CONFIG_SC1200_WDT=y
CONFIG_PC87413_WDT=m
# CONFIG_60XX_WDT is not set
# CONFIG_SBC8360_WDT is not set
CONFIG_SBC7240_WDT=m
# CONFIG_CPU5_WDT is not set
CONFIG_SMSC_SCH311X_WDT=y
CONFIG_SMSC37B787_WDT=m
CONFIG_W83627HF_WDT=m
CONFIG_W83877F_WDT=m
# CONFIG_W83977F_WDT is not set
# CONFIG_MACHZ_WDT is not set
CONFIG_SBC_EPX_C3_WATCHDOG=y

#
# ISA-based Watchdog Cards
#
CONFIG_PCWATCHDOG=y
CONFIG_MIXCOMWD=m

#
# PCI-based Watchdog Cards
#
CONFIG_PCIPCWATCHDOG=m
# CONFIG_WDTPCI is not set

#
# USB-based Watchdog Cards
#
# CONFIG_USBPCWATCHDOG is not set
CONFIG_SSB_POSSIBLE=y

#
# Sonics Silicon Backplane
#
CONFIG_SSB=m
CONFIG_SSB_SPROM=y
CONFIG_SSB_PCIHOST_POSSIBLE=y
CONFIG_SSB_PCIHOST=y
# CONFIG_SSB_B43_PCI_BRIDGE is not set
# CONFIG_SSB_SILENT is not set
# CONFIG_SSB_DEBUG is not set
CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
CONFIG_SSB_DRIVER_PCICORE=y

#
# Multifunction device drivers
#
# CONFIG_MFD_CORE is not set
CONFIG_MFD_SM501=y
CONFIG_HTC_PASIC3=m
CONFIG_TWL4030_CORE=y
# CONFIG_MFD_TMIO is not set
# CONFIG_PMIC_DA903X is not set
# CONFIG_MFD_WM8400 is not set
# CONFIG_MFD_PCF50633 is not set
CONFIG_REGULATOR=y
CONFIG_REGULATOR_DEBUG=y
# CONFIG_REGULATOR_FIXED_VOLTAGE is not set
# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set
CONFIG_REGULATOR_BQ24022=m

#
# Multimedia devices
#

#
# Multimedia core support
#
# CONFIG_VIDEO_DEV is not set
# CONFIG_DVB_CORE is not set
# CONFIG_VIDEO_MEDIA is not set

#
# Multimedia drivers
#
CONFIG_DAB=y
# CONFIG_USB_DABUSB is not set

#
# Graphics support
#
# CONFIG_AGP is not set
CONFIG_DRM=m
# CONFIG_DRM_TDFX is not set
CONFIG_DRM_R128=m
CONFIG_DRM_RADEON=m
CONFIG_DRM_MGA=m
# CONFIG_DRM_VIA is not set
CONFIG_DRM_SAVAGE=m
# CONFIG_VGASTATE is not set
CONFIG_VIDEO_OUTPUT_CONTROL=y
# CONFIG_FB is not set
CONFIG_BACKLIGHT_LCD_SUPPORT=y
# CONFIG_LCD_CLASS_DEVICE is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
CONFIG_BACKLIGHT_GENERIC=m
CONFIG_BACKLIGHT_PROGEAR=m
# CONFIG_BACKLIGHT_MBP_NVIDIA is not set
CONFIG_BACKLIGHT_SAHARA=y

#
# Display device support
#
CONFIG_DISPLAY_SUPPORT=y

#
# Display hardware drivers
#

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_VGACON_SOFT_SCROLLBACK=y
CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
CONFIG_DUMMY_CONSOLE=y
CONFIG_FONT_8x16=y
CONFIG_SOUND=m
# CONFIG_SOUND_OSS_CORE is not set
# CONFIG_SND is not set
# CONFIG_SOUND_PRIME is not set
CONFIG_HID_SUPPORT=y
CONFIG_HID=y
CONFIG_HID_DEBUG=y
CONFIG_HIDRAW=y

#
# USB Input Devices
#
CONFIG_USB_HID=m
# CONFIG_HID_PID is not set
# CONFIG_USB_HIDDEV is not set

#
# USB HID Boot Protocol drivers
#
# CONFIG_USB_KBD is not set
CONFIG_USB_MOUSE=y

#
# Special HID drivers
#
# CONFIG_HID_COMPAT is not set
CONFIG_HID_A4TECH=m
# CONFIG_HID_APPLE is not set
CONFIG_HID_BELKIN=m
CONFIG_HID_CHERRY=m
CONFIG_HID_CHICONY=m
# CONFIG_HID_CYPRESS is not set
CONFIG_HID_EZKEY=m
# CONFIG_HID_GYRATION is not set
CONFIG_HID_LOGITECH=m
# CONFIG_LOGITECH_FF is not set
CONFIG_LOGIRUMBLEPAD2_FF=y
CONFIG_HID_MICROSOFT=m
# CONFIG_HID_MONTEREY is not set
CONFIG_HID_NTRIG=m
CONFIG_HID_PANTHERLORD=m
CONFIG_PANTHERLORD_FF=y
# CONFIG_HID_PETALYNX is not set
CONFIG_HID_SAMSUNG=m
CONFIG_HID_SONY=m
CONFIG_HID_SUNPLUS=m
CONFIG_GREENASIA_FF=m
# CONFIG_HID_TOPSEED is not set
CONFIG_THRUSTMASTER_FF=m
# CONFIG_ZEROPLUS_FF is not set
CONFIG_USB_SUPPORT=y
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB_ARCH_HAS_EHCI=y
CONFIG_USB=y
CONFIG_USB_DEBUG=y
CONFIG_USB_ANNOUNCE_NEW_DEVICES=y

#
# Miscellaneous USB options
#
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_DEVICE_CLASS is not set
CONFIG_USB_DYNAMIC_MINORS=y
# CONFIG_USB_OTG is not set
# CONFIG_USB_OTG_WHITELIST is not set
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
CONFIG_USB_MON=m
CONFIG_USB_WUSB=y
CONFIG_USB_WUSB_CBAF=y
CONFIG_USB_WUSB_CBAF_DEBUG=y

#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
CONFIG_USB_EHCI_HCD=y
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
# CONFIG_USB_EHCI_TT_NEWSCHED is not set
CONFIG_USB_OXU210HP_HCD=m
CONFIG_USB_ISP116X_HCD=y
CONFIG_USB_ISP1760_HCD=y
CONFIG_USB_OHCI_HCD=y
# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set
# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_UHCI_HCD=y
CONFIG_USB_U132_HCD=m
CONFIG_USB_SL811_HCD=m
CONFIG_USB_R8A66597_HCD=y
# CONFIG_USB_HWA_HCD is not set

#
# USB Device Class drivers
#
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=m
CONFIG_USB_WDM=y
CONFIG_USB_TMC=m

#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed;
#

#
# see USB_STORAGE Help for more information
#
CONFIG_USB_STORAGE=y
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
CONFIG_USB_STORAGE_FREECOM=y
CONFIG_USB_STORAGE_ISD200=y
# CONFIG_USB_STORAGE_USBAT is not set
CONFIG_USB_STORAGE_SDDR09=y
CONFIG_USB_STORAGE_SDDR55=y
# CONFIG_USB_STORAGE_JUMPSHOT is not set
CONFIG_USB_STORAGE_ALAUDA=y
CONFIG_USB_STORAGE_ONETOUCH=y
# CONFIG_USB_STORAGE_KARMA is not set
# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
CONFIG_USB_LIBUSUAL=y

#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set

#
# USB port drivers
#
# CONFIG_USB_SERIAL is not set

#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
CONFIG_USB_EMI26=y
CONFIG_USB_ADUTUX=y
CONFIG_USB_SEVSEG=y
CONFIG_USB_RIO500=y
# CONFIG_USB_LEGOTOWER is not set
CONFIG_USB_LCD=y
CONFIG_USB_BERRY_CHARGE=m
CONFIG_USB_LED=y
CONFIG_USB_CYPRESS_CY7C63=y
CONFIG_USB_CYTHERM=m
CONFIG_USB_PHIDGET=m
CONFIG_USB_PHIDGETKIT=m
CONFIG_USB_PHIDGETMOTORCONTROL=m
CONFIG_USB_PHIDGETSERVO=m
CONFIG_USB_IDMOUSE=y
CONFIG_USB_FTDI_ELAN=m
CONFIG_USB_APPLEDISPLAY=y
CONFIG_USB_SISUSBVGA=m
CONFIG_USB_SISUSBVGA_CON=y
CONFIG_USB_LD=y
# CONFIG_USB_TRANCEVIBRATOR is not set
# CONFIG_USB_IOWARRIOR is not set
CONFIG_USB_TEST=y
# CONFIG_USB_ISIGHTFW is not set
CONFIG_USB_VST=m
# CONFIG_USB_ATM is not set

#
# OTG and related infrastructure
#
CONFIG_USB_OTG_UTILS=y
CONFIG_TWL4030_USB=m
CONFIG_UWB=y
CONFIG_UWB_HWA=y
CONFIG_UWB_WHCI=m
CONFIG_UWB_WLP=y
# CONFIG_UWB_I1480U is not set
CONFIG_MMC=m
# CONFIG_MMC_DEBUG is not set
CONFIG_MMC_UNSAFE_RESUME=y

#
# MMC/SD/SDIO Card Drivers
#
CONFIG_MMC_BLOCK=m
CONFIG_MMC_BLOCK_BOUNCE=y
CONFIG_SDIO_UART=m
# CONFIG_MMC_TEST is not set

#
# MMC/SD/SDIO Host Controller Drivers
#
CONFIG_MMC_SDHCI=m
CONFIG_MMC_SDHCI_PCI=m
CONFIG_MMC_RICOH_MMC=m
CONFIG_MMC_WBSD=m
CONFIG_MMC_TIFM_SD=m
CONFIG_MEMSTICK=m
CONFIG_MEMSTICK_DEBUG=y

#
# MemoryStick drivers
#
CONFIG_MEMSTICK_UNSAFE_RESUME=y
CONFIG_MSPRO_BLOCK=m

#
# MemoryStick Host Controller Drivers
#
CONFIG_MEMSTICK_TIFM_MS=m
CONFIG_MEMSTICK_JMICRON_38X=m
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y

#
# LED drivers
#
CONFIG_LEDS_ALIX2=m
CONFIG_LEDS_PCA9532=m
CONFIG_LEDS_CLEVO_MAIL=y
CONFIG_LEDS_PCA955X=y

#
# LED Triggers
#
CONFIG_LEDS_TRIGGERS=y
CONFIG_LEDS_TRIGGER_TIMER=y
# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
CONFIG_LEDS_TRIGGER_BACKLIGHT=m
# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set
CONFIG_ACCESSIBILITY=y
CONFIG_A11Y_BRAILLE_CONSOLE=y
CONFIG_EDAC=y

#
# Reporting subsystems
#
# CONFIG_EDAC_DEBUG is not set
CONFIG_EDAC_MM_EDAC=y
CONFIG_EDAC_AMD76X=m
CONFIG_EDAC_E7XXX=m
CONFIG_EDAC_E752X=m
CONFIG_EDAC_I82875P=m
CONFIG_EDAC_I82975X=y
# CONFIG_EDAC_I3000 is not set
CONFIG_EDAC_X38=m
# CONFIG_EDAC_I5400 is not set
CONFIG_EDAC_I82860=y
CONFIG_EDAC_R82600=y
CONFIG_EDAC_I5000=m
CONFIG_EDAC_I5100=m
CONFIG_RTC_LIB=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_HCTOSYS=y
CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
# CONFIG_RTC_DEBUG is not set

#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
# CONFIG_RTC_INTF_PROC is not set
# CONFIG_RTC_INTF_DEV is not set
CONFIG_RTC_DRV_TEST=m

#
# I2C RTC drivers
#
CONFIG_RTC_DRV_DS1307=y
CONFIG_RTC_DRV_DS1374=m
CONFIG_RTC_DRV_DS1672=y
CONFIG_RTC_DRV_MAX6900=y
CONFIG_RTC_DRV_RS5C372=y
# CONFIG_RTC_DRV_ISL1208 is not set
CONFIG_RTC_DRV_X1205=m
CONFIG_RTC_DRV_PCF8563=m
CONFIG_RTC_DRV_PCF8583=y
# CONFIG_RTC_DRV_M41T80 is not set
CONFIG_RTC_DRV_TWL4030=y
# CONFIG_RTC_DRV_S35390A is not set
CONFIG_RTC_DRV_FM3130=m
# CONFIG_RTC_DRV_RX8581 is not set

#
# SPI RTC drivers
#
CONFIG_RTC_DRV_M41T94=y
# CONFIG_RTC_DRV_DS1305 is not set
CONFIG_RTC_DRV_DS1390=y
CONFIG_RTC_DRV_MAX6902=y
CONFIG_RTC_DRV_R9701=m
CONFIG_RTC_DRV_RS5C348=m
CONFIG_RTC_DRV_DS3234=y

#
# Platform RTC drivers
#
# CONFIG_RTC_DRV_CMOS is not set
CONFIG_RTC_DRV_DS1286=y
CONFIG_RTC_DRV_DS1511=y
CONFIG_RTC_DRV_DS1553=y
# CONFIG_RTC_DRV_DS1742 is not set
CONFIG_RTC_DRV_STK17TA8=m
CONFIG_RTC_DRV_M48T86=y
# CONFIG_RTC_DRV_M48T35 is not set
# CONFIG_RTC_DRV_M48T59 is not set
CONFIG_RTC_DRV_BQ4802=y
# CONFIG_RTC_DRV_V3020 is not set

#
# on-CPU RTC drivers
#
CONFIG_UIO=y
# CONFIG_UIO_CIF is not set
CONFIG_UIO_PDRV=m
CONFIG_UIO_PDRV_GENIRQ=m
# CONFIG_UIO_SMX is not set
CONFIG_UIO_SERCOS3=y
CONFIG_X86_PLATFORM_DEVICES=y

#
# Firmware Drivers
#
CONFIG_EDD=y
CONFIG_EDD_OFF=y
CONFIG_FIRMWARE_MEMMAP=y
CONFIG_DELL_RBU=y
# CONFIG_DCDBAS is not set
# CONFIG_DMIID is not set
CONFIG_ISCSI_IBFT_FIND=y
# CONFIG_ISCSI_IBFT is not set

#
# File systems
#
CONFIG_EXT2_FS=m
# CONFIG_EXT2_FS_XATTR is not set
# CONFIG_EXT2_FS_XIP is not set
CONFIG_EXT3_FS=y
CONFIG_EXT3_FS_XATTR=y
CONFIG_EXT3_FS_POSIX_ACL=y
CONFIG_EXT3_FS_SECURITY=y
CONFIG_EXT4_FS=m
# CONFIG_EXT4DEV_COMPAT is not set
CONFIG_EXT4_FS_XATTR=y
CONFIG_EXT4_FS_POSIX_ACL=y
# CONFIG_EXT4_FS_SECURITY is not set
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
CONFIG_JBD2=m
CONFIG_JBD2_DEBUG=y
CONFIG_FS_MBCACHE=y
CONFIG_REISERFS_FS=y
# CONFIG_REISERFS_CHECK is not set
CONFIG_REISERFS_PROC_INFO=y
CONFIG_REISERFS_FS_XATTR=y
CONFIG_REISERFS_FS_POSIX_ACL=y
CONFIG_REISERFS_FS_SECURITY=y
CONFIG_JFS_FS=m
# CONFIG_JFS_POSIX_ACL is not set
CONFIG_JFS_SECURITY=y
CONFIG_JFS_DEBUG=y
CONFIG_JFS_STATISTICS=y
CONFIG_FS_POSIX_ACL=y
CONFIG_FILE_LOCKING=y
# CONFIG_XFS_FS is not set
CONFIG_GFS2_FS=m
CONFIG_GFS2_FS_LOCKING_DLM=m
CONFIG_OCFS2_FS=m
CONFIG_OCFS2_FS_O2CB=m
CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m
CONFIG_OCFS2_FS_STATS=y
# CONFIG_OCFS2_DEBUG_MASKLOG is not set
CONFIG_OCFS2_DEBUG_FS=y
CONFIG_OCFS2_FS_POSIX_ACL=y
# CONFIG_BTRFS_FS is not set
CONFIG_DNOTIFY=y
CONFIG_INOTIFY=y
CONFIG_INOTIFY_USER=y
CONFIG_QUOTA=y
# CONFIG_QUOTA_NETLINK_INTERFACE is not set
# CONFIG_PRINT_QUOTA_WARNING is not set
CONFIG_QUOTA_TREE=y
CONFIG_QFMT_V1=y
CONFIG_QFMT_V2=y
CONFIG_QUOTACTL=y
CONFIG_AUTOFS_FS=m
CONFIG_AUTOFS4_FS=m
# CONFIG_FUSE_FS is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_UDF_FS=m
CONFIG_UDF_NLS=y

#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
CONFIG_NTFS_FS=y
# CONFIG_NTFS_DEBUG is not set
# CONFIG_NTFS_RW is not set

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
# CONFIG_PROC_KCORE is not set
# CONFIG_PROC_VMCORE is not set
# CONFIG_PROC_SYSCTL is not set
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
# CONFIG_TMPFS_POSIX_ACL is not set
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
CONFIG_CONFIGFS_FS=m
CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
CONFIG_ECRYPT_FS=m
CONFIG_HFS_FS=y
CONFIG_HFSPLUS_FS=y
CONFIG_BEFS_FS=y
CONFIG_BEFS_DEBUG=y
CONFIG_BFS_FS=y
CONFIG_EFS_FS=y
CONFIG_CRAMFS=m
CONFIG_SQUASHFS=y
CONFIG_SQUASHFS_EMBEDDED=y
CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
CONFIG_VXFS_FS=y
CONFIG_MINIX_FS=m
CONFIG_OMFS_FS=m
# CONFIG_HPFS_FS is not set
CONFIG_QNX4FS_FS=m
CONFIG_ROMFS_FS=y
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=m
CONFIG_NFS_V3=y
CONFIG_NFS_V3_ACL=y
CONFIG_NFS_V4=y
# CONFIG_NFSD is not set
CONFIG_LOCKD=m
CONFIG_LOCKD_V4=y
CONFIG_NFS_ACL_SUPPORT=m
CONFIG_NFS_COMMON=y
CONFIG_SUNRPC=m
CONFIG_SUNRPC_GSS=m
CONFIG_SUNRPC_REGISTER_V4=y
CONFIG_RPCSEC_GSS_KRB5=m
# CONFIG_RPCSEC_GSS_SPKM3 is not set
CONFIG_SMB_FS=m
CONFIG_SMB_NLS_DEFAULT=y
CONFIG_SMB_NLS_REMOTE="cp437"
# CONFIG_CIFS is not set
CONFIG_NCP_FS=y
CONFIG_NCPFS_PACKET_SIGNING=y
CONFIG_NCPFS_IOCTL_LOCKING=y
CONFIG_NCPFS_STRONG=y
# CONFIG_NCPFS_NFS_NS is not set
# CONFIG_NCPFS_OS2_NS is not set
CONFIG_NCPFS_SMALLDOS=y
# CONFIG_NCPFS_NLS is not set
# CONFIG_NCPFS_EXTRAS is not set
# CONFIG_CODA_FS is not set
CONFIG_AFS_FS=y
CONFIG_AFS_DEBUG=y

#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
CONFIG_ACORN_PARTITION=y
CONFIG_ACORN_PARTITION_CUMANA=y
CONFIG_ACORN_PARTITION_EESOX=y
CONFIG_ACORN_PARTITION_ICS=y
CONFIG_ACORN_PARTITION_ADFS=y
# CONFIG_ACORN_PARTITION_POWERTEC is not set
# CONFIG_ACORN_PARTITION_RISCIX is not set
CONFIG_OSF_PARTITION=y
CONFIG_AMIGA_PARTITION=y
CONFIG_ATARI_PARTITION=y
CONFIG_MAC_PARTITION=y
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
CONFIG_MINIX_SUBPARTITION=y
CONFIG_SOLARIS_X86_PARTITION=y
# CONFIG_UNIXWARE_DISKLABEL is not set
CONFIG_LDM_PARTITION=y
# CONFIG_LDM_DEBUG is not set
CONFIG_SGI_PARTITION=y
CONFIG_ULTRIX_PARTITION=y
CONFIG_SUN_PARTITION=y
# CONFIG_KARMA_PARTITION is not set
CONFIG_EFI_PARTITION=y
# CONFIG_SYSV68_PARTITION is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
# CONFIG_NLS_CODEPAGE_437 is not set
CONFIG_NLS_CODEPAGE_737=m
CONFIG_NLS_CODEPAGE_775=m
# CONFIG_NLS_CODEPAGE_850 is not set
CONFIG_NLS_CODEPAGE_852=y
CONFIG_NLS_CODEPAGE_855=m
CONFIG_NLS_CODEPAGE_857=m
CONFIG_NLS_CODEPAGE_860=y
CONFIG_NLS_CODEPAGE_861=m
CONFIG_NLS_CODEPAGE_862=y
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
CONFIG_NLS_CODEPAGE_866=y
CONFIG_NLS_CODEPAGE_869=m
CONFIG_NLS_CODEPAGE_936=m
CONFIG_NLS_CODEPAGE_950=m
CONFIG_NLS_CODEPAGE_932=y
CONFIG_NLS_CODEPAGE_949=m
CONFIG_NLS_CODEPAGE_874=y
# CONFIG_NLS_ISO8859_8 is not set
CONFIG_NLS_CODEPAGE_1250=y
# CONFIG_NLS_CODEPAGE_1251 is not set
CONFIG_NLS_ASCII=y
CONFIG_NLS_ISO8859_1=m
CONFIG_NLS_ISO8859_2=m
# CONFIG_NLS_ISO8859_3 is not set
CONFIG_NLS_ISO8859_4=m
CONFIG_NLS_ISO8859_5=m
CONFIG_NLS_ISO8859_6=m
CONFIG_NLS_ISO8859_7=y
CONFIG_NLS_ISO8859_9=m
# CONFIG_NLS_ISO8859_13 is not set
CONFIG_NLS_ISO8859_14=m
CONFIG_NLS_ISO8859_15=y
# CONFIG_NLS_KOI8_R is not set
CONFIG_NLS_KOI8_U=y
CONFIG_NLS_UTF8=y
CONFIG_DLM=m
CONFIG_DLM_DEBUG=y

#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_PRINTK_TIME=y
CONFIG_ALLOW_WARNINGS=y
# CONFIG_ENABLE_WARN_DEPRECATED is not set
# CONFIG_ENABLE_MUST_CHECK is not set
CONFIG_FRAME_WARN=1024
CONFIG_MAGIC_SYSRQ=y
CONFIG_UNUSED_SYMBOLS=y
CONFIG_DEBUG_FS=y
# CONFIG_HEADERS_CHECK is not set
# CONFIG_DEBUG_SECTION_MISMATCH is not set
# CONFIG_DEBUG_KERNEL is not set
CONFIG_SLUB_DEBUG_ON=y
CONFIG_SLUB_STATS=y
CONFIG_TRACE_IRQFLAGS=y
CONFIG_STACKTRACE=y
# CONFIG_DEBUG_BUGVERBOSE is not set
# CONFIG_DEBUG_MEMORY_INIT is not set
CONFIG_ARCH_WANT_FRAME_POINTERS=y
CONFIG_FRAME_POINTER=y
CONFIG_RCU_CPU_STALL_DETECTOR=y
# CONFIG_LATENCYTOP is not set
CONFIG_SYSCTL_SYSCALL_CHECK=y
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=y
CONFIG_HAVE_FTRACE_NMI_ENTER=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_HW_BRANCH_TRACER=y
CONFIG_HAVE_FTRACE_SYSCALLS=y
CONFIG_TRACER_MAX_TRACE=y
CONFIG_RING_BUFFER=y
CONFIG_FTRACE_NMI_ENTER=y
CONFIG_TRACING=y
CONFIG_TRACING_SUPPORT=y

#
# Tracers
#
CONFIG_FUNCTION_TRACER=y
# CONFIG_FUNCTION_GRAPH_TRACER is not set
CONFIG_IRQSOFF_TRACER=y
# CONFIG_SYSPROF_TRACER is not set
CONFIG_SCHED_TRACER=y
CONFIG_CONTEXT_SWITCH_TRACER=y
# CONFIG_EVENT_TRACER is not set
CONFIG_FTRACE_SYSCALLS=y
CONFIG_BOOT_TRACER=y
CONFIG_POWER_TRACER=y
CONFIG_STACK_TRACER=y
CONFIG_HW_BRANCH_TRACER=y
CONFIG_KMEMTRACE=y
CONFIG_WORKQUEUE_TRACER=y
# CONFIG_BLK_DEV_IO_TRACE is not set
CONFIG_DYNAMIC_FTRACE=y
CONFIG_FTRACE_MCOUNT_RECORD=y
CONFIG_FTRACE_SELFTEST=y
CONFIG_FTRACE_STARTUP_TEST=y
CONFIG_MMIOTRACE=y
CONFIG_MMIOTRACE_TEST=m
CONFIG_PROVIDE_OHCI1394_DMA_INIT=y
CONFIG_DYNAMIC_PRINTK_DEBUG=y
CONFIG_SAMPLES=y
CONFIG_SAMPLE_MARKERS=m
# CONFIG_SAMPLE_TRACEPOINTS is not set
# CONFIG_SAMPLE_KOBJECT is not set
# CONFIG_SAMPLE_KPROBES is not set
CONFIG_HAVE_ARCH_KGDB=y
CONFIG_HAVE_ARCH_KMEMCHECK=y
# CONFIG_STRICT_DEVMEM is not set
# CONFIG_X86_VERBOSE_BOOTUP is not set
CONFIG_EARLY_PRINTK=y
# CONFIG_EARLY_PRINTK_DBGP is not set
# CONFIG_4KSTACKS is not set
# CONFIG_DOUBLEFAULT is not set
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
CONFIG_IO_DELAY_TYPE_0X80=0
CONFIG_IO_DELAY_TYPE_0XED=1
CONFIG_IO_DELAY_TYPE_UDELAY=2
CONFIG_IO_DELAY_TYPE_NONE=3
# CONFIG_IO_DELAY_0X80 is not set
# CONFIG_IO_DELAY_0XED is not set
CONFIG_IO_DELAY_UDELAY=y
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEFAULT_IO_DELAY_TYPE=2
CONFIG_OPTIMIZE_INLINING=y

#
# Security options
#
CONFIG_KEYS=y
# CONFIG_KEYS_DEBUG_PROC_KEYS is not set
CONFIG_SECURITY=y
CONFIG_SECURITYFS=y
# CONFIG_SECURITY_NETWORK is not set
CONFIG_SECURITY_PATH=y
CONFIG_SECURITY_FILE_CAPABILITIES=y
CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0
CONFIG_CRYPTO=y

#
# Crypto core or helper
#
CONFIG_CRYPTO_FIPS=y
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_BLKCIPHER=y
CONFIG_CRYPTO_BLKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
CONFIG_CRYPTO_GF128MUL=y
CONFIG_CRYPTO_NULL=y
CONFIG_CRYPTO_CRYPTD=m
CONFIG_CRYPTO_AUTHENC=y
# CONFIG_CRYPTO_TEST is not set

#
# Authenticated Encryption with Associated Data
#
CONFIG_CRYPTO_CCM=y
CONFIG_CRYPTO_GCM=m
CONFIG_CRYPTO_SEQIV=y

#
# Block modes
#
CONFIG_CRYPTO_CBC=y
CONFIG_CRYPTO_CTR=y
CONFIG_CRYPTO_CTS=m
CONFIG_CRYPTO_ECB=y
CONFIG_CRYPTO_LRW=y
CONFIG_CRYPTO_PCBC=y
CONFIG_CRYPTO_XTS=y

#
# Hash modes
#
CONFIG_CRYPTO_HMAC=y
CONFIG_CRYPTO_XCBC=y

#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
CONFIG_CRYPTO_CRC32C_INTEL=m
CONFIG_CRYPTO_MD4=m
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_MICHAEL_MIC=m
CONFIG_CRYPTO_RMD128=m
CONFIG_CRYPTO_RMD160=m
# CONFIG_CRYPTO_RMD256 is not set
CONFIG_CRYPTO_RMD320=m
CONFIG_CRYPTO_SHA1=y
CONFIG_CRYPTO_SHA256=m
CONFIG_CRYPTO_SHA512=m
CONFIG_CRYPTO_TGR192=m
# CONFIG_CRYPTO_WP512 is not set

#
# Ciphers
#
CONFIG_CRYPTO_AES=y
# CONFIG_CRYPTO_AES_586 is not set
CONFIG_CRYPTO_ANUBIS=m
CONFIG_CRYPTO_ARC4=y
CONFIG_CRYPTO_BLOWFISH=y
CONFIG_CRYPTO_CAMELLIA=m
CONFIG_CRYPTO_CAST5=m
# CONFIG_CRYPTO_CAST6 is not set
CONFIG_CRYPTO_DES=y
CONFIG_CRYPTO_FCRYPT=m
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_SALSA20 is not set
CONFIG_CRYPTO_SALSA20_586=y
CONFIG_CRYPTO_SEED=m
# CONFIG_CRYPTO_SERPENT is not set
# CONFIG_CRYPTO_TEA is not set
CONFIG_CRYPTO_TWOFISH=y
CONFIG_CRYPTO_TWOFISH_COMMON=y
# CONFIG_CRYPTO_TWOFISH_586 is not set

#
# Compression
#
CONFIG_CRYPTO_DEFLATE=y
CONFIG_CRYPTO_LZO=y

#
# Random Number Generation
#
# CONFIG_CRYPTO_ANSI_CPRNG is not set
CONFIG_CRYPTO_HW=y
CONFIG_CRYPTO_DEV_PADLOCK=y
CONFIG_CRYPTO_DEV_PADLOCK_AES=m
CONFIG_CRYPTO_DEV_PADLOCK_SHA=m
CONFIG_CRYPTO_DEV_GEODE=m
CONFIG_CRYPTO_DEV_HIFN_795X=y
CONFIG_CRYPTO_DEV_HIFN_795X_RNG=y
CONFIG_HAVE_KVM=y
CONFIG_VIRTUALIZATION=y
CONFIG_KVM=y
CONFIG_KVM_INTEL=y
CONFIG_KVM_AMD=y
CONFIG_KVM_TRACE=y
CONFIG_VIRTIO=y
CONFIG_VIRTIO_RING=y
CONFIG_VIRTIO_PCI=y
CONFIG_VIRTIO_BALLOON=m
CONFIG_BINARY_PRINTF=y

#
# Library routines
#
CONFIG_BITREVERSE=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_GENERIC_FIND_NEXT_BIT=y
CONFIG_GENERIC_FIND_LAST_BIT=y
CONFIG_CRC_CCITT=m
CONFIG_CRC16=y
CONFIG_CRC_T10DIF=y
CONFIG_CRC_ITU_T=m
CONFIG_CRC32=y
CONFIG_CRC7=y
CONFIG_LIBCRC32C=y
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_DMA=y
CONFIG_CHECK_SIGNATURE=y
CONFIG_FORCE_SUCCESSFUL_BUILD=y
CONFIG_FORCE_MINIMAL_CONFIG=y
CONFIG_FORCE_MINIMAL_CONFIG_PHYS=y
CONFIG_X86_32_ALWAYS_ON=y

[-- Attachment #3: log --]
[-- Type: text/plain, Size: 124665 bytes --]

[    0.000000] Linux version 2.6.29-rc8-tip-02702-ge0d2c41-dirty (mingo@sirius) (gcc version 4.3.2 20081105 (Red Hat 4.3.2-7) (GCC) ) #20985 SMP Wed Mar 18 10:17:17 CET 2009
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   NSC Geode by NSC
[    0.000000]   Cyrix CyrixInstead
[    0.000000]   Transmeta GenuineTMx86
[    0.000000]   Transmeta TransmetaCPU
[    0.000000]   UMC UMC UMC UMC
[    0.000000] CPU: vendor_id 'AuthenticAMD' unknown, using generic init.
[    0.000000] CPU: Your system may be unstable.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000003fff0000 (usable)
[    0.000000]  BIOS-e820: 000000003fff0000 - 000000003fff3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000003fff3000 - 0000000040000000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] console [earlyser0] enabled
[    0.000000] debug: ignoring loglevel setting.
[    0.000000] DMI 2.3 present.
[    0.000000] Phoenix BIOS detected: BIOS may corrupt low RAM, working around it.
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0x3fff0 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-C7FFF write-protect
[    0.000000]   C8000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0000000000 mask FFC0000000 write-back
[    0.000000]   1 disabled
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000]   get_mtrr: cpu0 reg00 base=0000000000 size=0000040000 write-back
[    0.000000] init_memory_mapping: 0000000000000000-00000000379fe000
[    0.000000] NX (Execute Disable) protection: active
[    0.000000]  0000000000 - 0000200000 page 4k
[    0.000000]  0000200000 - 0037800000 page 2M
[    0.000000]  0037800000 - 00379fe000 page 4k
[    0.000000] kernel direct mapping tables up to 379fe000 @ 10000-16000
[    0.000000] Scan SMP from c0000000 for 1024 bytes.
[    0.000000] Scan SMP from c009fc00 for 1024 bytes.
[    0.000000] Scan SMP from c00f0000 for 65536 bytes.
[    0.000000] found SMP MP-table at [c00f5680] f5680
[    0.000000] Intel MultiProcessor Specification v1.4
[    0.000000]     Virtual Wire compatibility mode.
[    0.000000]   mpc: f1400-f152c
[    0.000000] MPTABLE: OEM ID: OEM00000
[    0.000000] MPTABLE: Product ID: PROD00000000
[    0.000000] MPTABLE: APIC at: 0xFEE00000
[    0.000000] Warning! Not a NUMA-Q system!
[    0.000000] NUMA - single node, flat memory mode
[    0.000000] Node: 0, start_pfn: 0, end_pfn: 3fff0
[    0.000000]   Setting physnode_map array to node 0 for pfns:
[    0.000000]   0 4000 8000 c000 10000 14000 18000 1c000 20000 24000 28000 2c000 30000 34000 38000 3c000 
[    0.000000] node 0 pfn: [0 - 3fff0]
[    0.000000] Reserving 2560 pages of KVA for lmem_map of node 0 at 3f400
[    0.000000] remove_active_range (0, 259072, 261632)
[    0.000000] Reserving total of a00 pages for numa KVA remap
[    0.000000] kva_start_pfn ~ 36e00 max_low_pfn ~ 379fe
[    0.000000] max_pfn = 3fff0
[    0.000000] 133MB HIGHMEM available.
[    0.000000] 889MB LOWMEM available.
[    0.000000] max_low_pfn = 379fe, highstart_pfn = 379fe
[    0.000000] Low memory ends at vaddr f79fe000
[    0.000000] node 0 will remap to vaddr f6e00000 - f7800000
[    0.000000] allocate_pgdat: node 0 NODE_DATA f6e00000
[    0.000000] remap_numa_kva: node 0
[    0.000000] remap_numa_kva: f6e00000 to pfn 0003f400
[    0.000000] remap_numa_kva: f7000000 to pfn 0003f600
[    0.000000] remap_numa_kva: f7200000 to pfn 0003f800
[    0.000000] remap_numa_kva: f7400000 to pfn 0003fa00
[    0.000000] remap_numa_kva: f7600000 to pfn 0003fc00
[    0.000000] High memory starts at vaddr f79fe000
[    0.000000]   mapped low ram: 0 - 379fe000
[    0.000000]   low ram: 0 - 379fe000
[    0.000000]   node 0 low ram: 00000000 - 379fe000
[    0.000000]   node 0 bootmap 00011000 - 00017f40
[    0.000000] (10 early reservations) ==> bootmem [0000000000 - 00379fe000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0000001000 - 0000002000]    EX TRAMPOLINE ==> [0000001000 - 0000002000]
[    0.000000]   #2 [0000006000 - 0000007000]       TRAMPOLINE ==> [0000006000 - 0000007000]
[    0.000000]   #3 [0001000000 - 00018b3fb0]    TEXT DATA BSS ==> [0001000000 - 00018b3fb0]
[    0.000000]   #4 [00018b4000 - 00018c5000]    INIT_PG_TABLE ==> [00018b4000 - 00018c5000]
[    0.000000]   #5 [000009f800 - 0000100000]    BIOS reserved ==> [000009f800 - 0000100000]
[    0.000000]   #6 [0000010000 - 0000011000]          PGTABLE ==> [0000010000 - 0000011000]
[    0.000000]   #7 [003f400000 - 003fe00000]          KVA RAM
[    0.000000]   #8 [0036e00000 - 0037800000]           KVA PG ==> [0036e00000 - 0037800000]
[    0.000000]   #9 [0000011000 - 0000018000]          BOOTMAP ==> [0000011000 - 0000018000]
[    0.000000] Scan SMP from c0000000 for 1024 bytes.
[    0.000000] Scan SMP from c009fc00 for 1024 bytes.
[    0.000000] Scan SMP from c00f0000 for 65536 bytes.
[    0.000000] found SMP MP-table at [c00f5680] f5680
[    0.000000]   mpc: f1400-f152c
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000379fe
[    0.000000]   HighMem  0x000379fe -> 0x0003fff0
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x0003f400
[    0.000000]     0: 0x0003fe00 -> 0x0003fff0
[    0.000000] On node 0 totalpages: 259455
[    0.000000] free_area_init_node: node 0, pgdat f6e00000, node_mem_map f6e02200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3951 pages, LIFO batch:0
[    0.000000]   Normal zone: 1748 pages used for memmap
[    0.000000]   Normal zone: 221994 pages, LIFO batch:31
[    0.000000]   HighMem zone: 268 pages used for memmap
[    0.000000]   HighMem zone: 31462 pages, LIFO batch:7
[    0.000000] Using APIC driver default
[    0.000000] Intel MultiProcessor Specification v1.4
[    0.000000]     Virtual Wire compatibility mode.
[    0.000000]   mpc: f1400-f152c
[    0.000000] MPTABLE: OEM ID: OEM00000
[    0.000000] MPTABLE: Product ID: PROD00000000
[    0.000000] MPTABLE: APIC at: 0xFEE00000
[    0.000000] Warning! Not a NUMA-Q system!
[    0.000000] Processor #0 (Bootup-CPU)
[    0.000000] Processor #1
[    0.000000] Bus #0 is PCI   
[    0.000000] Bus #1 is PCI   
[    0.000000] Bus #2 is PCI   
[    0.000000] Bus #3 is PCI   
[    0.000000] Bus #4 is PCI   
[    0.000000] Bus #5 is PCI   
[    0.000000] Bus #6 is ISA   
[    0.000000] I/O APIC #2 Version 17 at 0xFEC00000.
[    0.000000] Int: type 0, pol 3, trig 3, bus 00, IRQ 28, APIC ID 2, APIC INT 0b
[    0.000000] Int: type 0, pol 3, trig 3, bus 00, IRQ 10, APIC ID 2, APIC INT 03
[    0.000000] Int: type 0, pol 3, trig 3, bus 01, IRQ 00, APIC ID 2, APIC INT 05
[    0.000000] Int: type 0, pol 3, trig 3, bus 05, IRQ 1c, APIC ID 2, APIC INT 0b
[    0.000000] Int: type 3, pol 0, trig 0, bus 06, IRQ 00, APIC ID 2, APIC INT 00
[    0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 01, APIC ID 2, APIC INT 01
[    0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 00, APIC ID 2, APIC INT 02
[    0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 04, APIC ID 2, APIC INT 04
[    0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 06, APIC ID 2, APIC INT 06
[    0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 07, APIC ID 2, APIC INT 07
[    0.000000] Int: type 0, pol 1, trig 1, bus 06, IRQ 08, APIC ID 2, APIC INT 08
[    0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 09, APIC ID 2, APIC INT 09
[    0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 0a, APIC ID 2, APIC INT 0a
[    0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 0c, APIC ID 2, APIC INT 0c
[    0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 0d, APIC ID 2, APIC INT 0d
[    0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 0e, APIC ID 2, APIC INT 0e
[    0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 0f, APIC ID 2, APIC INT 0f
[    0.000000] Lint: type 3, pol 0, trig 0, bus 00, IRQ 00, APIC ID ff, APIC LINT 00
[    0.000000] Lint: type 1, pol 0, trig 0, bus 00, IRQ 00, APIC ID ff, APIC LINT 01
[    0.000000] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.000000] Processors: 2
[    0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] mapped APIC to ffffb000 (fee00000)
[    0.000000] mapped IOAPIC to ffffa000 (fec00000)
[    0.000000] nr_irqs_gsi: 24
[    0.000000] Allocating PCI resources starting at 50000000 (gap: 40000000:a0000000)
[    0.000000] NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:2 nr_node_ids:16
[    0.000000] PERCPU: Embedded 15 pages at c18ca000, static data 39612 bytes
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 257407
[    0.000000] Policy zone: HighMem
[    0.000000] Kernel command line: root=/dev/sda1 earlyprintk=serial,ttyS0,115200,keep console=tty debug initcall_debug enforcing=0 apic=verbose ignore_loglevel sysrq_always_enabled selinux=0 nmi_watchdog=0 3 panic=1
[    0.000000] debug: sysrq always enabled.
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] RCU-based detection of stalled CPUs is enabled.
[    0.000000] NR_IRQS:2304 nr_irqs:424
[    0.000000] PID hash table entries: 4096 (order: 12, 16384 bytes)
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2010.502 MHz processor.
[    0.000999] spurious 8259A interrupt: IRQ7.
[    0.000999] Console: colour VGA+ 80x25
[    0.000999] console [tty0] enabled
[    0.000999] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000999] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000999] Initializing HighMem for node 0 (000379fe:0003fff0)
[    0.000999] Memory: 1017592k/1048512k available (4615k kernel code, 20228k reserved, 2424k data, 424k init, 126920k highmem)
[    0.000999] virtual kernel memory layout:
[    0.000999]     fixmap  : 0xffe17000 - 0xfffff000   (1952 kB)
[    0.000999]     pkmap   : 0xffa00000 - 0xffc00000   (2048 kB)
[    0.000999]     vmalloc : 0xf81fe000 - 0xff9fe000   ( 120 MB)
[    0.000999]     lowmem  : 0xc0000000 - 0xf79fe000   ( 889 MB)
[    0.000999]       .init : 0xc16e9000 - 0xc1753000   ( 424 kB)
[    0.000999]       .data : 0xc1481e66 - 0xc16e0144   (2424 kB)
[    0.000999]       .text : 0xc1000000 - 0xc1481e66   (4615 kB)
[    0.000999] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000999] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=16
[    0.001008] Calibrating delay loop (skipped), value calculated using timer frequency.. 4021.00 BogoMIPS (lpj=2010502)
[    0.003070] Security Framework initialized
[    0.004029] Mount-cache hash table entries: 512
[    0.005377] Checking 'hlt' instruction... OK.
[    0.010702] Freeing SMP alternatives: 18k freed
[    0.011015] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.012004] ftrace: allocating 20460 entries in 41 pages
[    0.014133] enabled ExtINT on CPU#0
[    0.015046] ExtINT not setup in hardware but reported by MP table
[    0.016083] Mapping cpu 0 to node 0
[    0.016999] ENABLING IO-APIC IRQs
[    0.017999] init IO_APIC IRQs
[    0.018999]  2-0 (apicid-pin) not connected
[    0.021004] IOAPIC[0]: Set routing entry (2-1 -> 0x31 -> IRQ 1 Mode:0 Active:0)
[    0.022003] IOAPIC[0]: Set routing entry (2-2 -> 0x30 -> IRQ 0 Mode:0 Active:0)
[    0.023002] IOAPIC[0]: Set routing entry (2-3 -> 0x33 -> IRQ 3 Mode:1 Active:1)
[    0.023996] IOAPIC[0]: Set routing entry (2-4 -> 0x34 -> IRQ 4 Mode:0 Active:0)
[    0.023996] IOAPIC[0]: Set routing entry (2-5 -> 0x35 -> IRQ 5 Mode:1 Active:1)
[    0.023996] IOAPIC[0]: Set routing entry (2-6 -> 0x36 -> IRQ 6 Mode:0 Active:0)
[    0.023996] IOAPIC[0]: Set routing entry (2-7 -> 0x37 -> IRQ 7 Mode:0 Active:0)
[    0.023996] IOAPIC[0]: Set routing entry (2-8 -> 0x38 -> IRQ 8 Mode:0 Active:0)
[    0.023996] IOAPIC[0]: Set routing entry (2-9 -> 0x39 -> IRQ 9 Mode:0 Active:0)
[    0.023996] IOAPIC[0]: Set routing entry (2-10 -> 0x3a -> IRQ 10 Mode:0 Active:0)
[    0.023996] IOAPIC[0]: Set routing entry (2-11 -> 0x3b -> IRQ 11 Mode:1 Active:1)
[    0.023996] IOAPIC[0]: Set routing entry (2-12 -> 0x3c -> IRQ 12 Mode:0 Active:0)
[    0.023996] IOAPIC[0]: Set routing entry (2-13 -> 0x3d -> IRQ 13 Mode:0 Active:0)
[    0.023996] IOAPIC[0]: Set routing entry (2-14 -> 0x3e -> IRQ 14 Mode:0 Active:0)
[    0.023996] IOAPIC[0]: Set routing entry (2-15 -> 0x3f -> IRQ 15 Mode:0 Active:0)
[    0.023996]  2-16 2-17 2-18 2-19 2-20 2-21 2-22 2-23 (apicid-pin) not connected
[    0.023996] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[    0.023996] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
[    0.023996] ...trying to set up timer (IRQ0) through the 8259A ...
[    0.023996] ..... (found apic 0 pin 0) ...
[    0.034522] ....... works.
[    0.034995] CPU0: AuthenticAMD AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ stepping 02
[    0.038995] Using local APIC timer interrupts.
[    0.038996] calibrating APIC timer ...
[    0.040993] ... lapic delta = 1256243
[    0.040993] ..... delta 1256243
[    0.040993] ..... mult: 53963428
[    0.040993] ..... calibration result: 200998
[    0.040993] ..... CPU clock speed is 2009.0989 MHz.
[    0.040993] ..... host bus clock speed is 200.0998 MHz.
[    0.040993] ... verify APIC timer
[    0.143454] ... jiffies delta = 100
[    0.143979] ... jiffies result ok
[    0.144997] calling  migration_init+0x0/0x4b @ 1
[    0.146013] initcall migration_init+0x0/0x4b returned 1 after 0 usecs
[    0.146981] initcall migration_init+0x0/0x4b returned with error code 1 
[    0.147980] calling  spawn_ksoftirqd+0x0/0x47 @ 1
[    0.149004] initcall spawn_ksoftirqd+0x0/0x47 returned 0 after 0 usecs
[    0.149981] calling  init_call_single_data+0x0/0x53 @ 1
[    0.150980] initcall init_call_single_data+0x0/0x53 returned 0 after 0 usecs
[    0.151979] calling  relay_init+0x0/0x7 @ 1
[    0.152979] initcall relay_init+0x0/0x7 returned 0 after 0 usecs
[    0.153979] calling  tracer_alloc_buffers+0x0/0x198 @ 1
[    0.155079] Testing tracer nop: PASSED
[    0.156981] initcall tracer_alloc_buffers+0x0/0x198 returned 0 after 1952 usecs
[    0.157978] calling  init_trace_printk+0x0/0xf @ 1
[    0.158979] initcall init_trace_printk+0x0/0xf returned 0 after 0 usecs
[    0.159978] calling  trace_workqueue_early_init+0x0/0xe1 @ 1
[    0.161009] initcall trace_workqueue_early_init+0x0/0xe1 returned 0 after 0 usecs
[    0.161978] calling  perf_counter_init+0x0/0x27 @ 1
[    0.162979] initcall perf_counter_init+0x0/0x27 returned 0 after 0 usecs
[    0.164070] Booting processor 1 APIC 0x1 ip 0x6000
[    0.000999] Initializing CPU#1
[    0.000999] masked ExtINT on CPU#1
[    0.000999] Mapping cpu 1 to node 0
[    0.000999] Calibrating delay using timer specific routine.. 4019.90 BogoMIPS (lpj=2009954)
[    0.000999] x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106
[    0.236393] CPU1: AuthenticAMD AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ stepping 02
[    0.239981] Brought up 2 CPUs
[    0.240965] Total of 2 processors activated (8040.91 BogoMIPS).
[    0.243254] calling  init_cpufreq_transition_notifier_list+0x0/0x18 @ 1
[    0.243968] initcall init_cpufreq_transition_notifier_list+0x0/0x18 returned 0 after 0 usecs
[    0.244966] calling  net_ns_init+0x0/0xf8 @ 1
[    0.245964] net_namespace: 1012 bytes
[    0.246967] initcall net_ns_init+0x0/0xf8 returned 0 after 976 usecs
[    0.247965] calling  cpufreq_tsc+0x0/0x25 @ 1
[    0.248965] initcall cpufreq_tsc+0x0/0x25 returned 0 after 0 usecs
[    0.249965] calling  reboot_init+0x0/0x11 @ 1
[    0.250970] initcall reboot_init+0x0/0x11 returned 0 after 0 usecs
[    0.251964] calling  init_smp_flush+0x0/0x23 @ 1
[    0.252964] initcall init_smp_flush+0x0/0x23 returned 0 after 0 usecs
[    0.253964] calling  sysctl_init+0x0/0x29 @ 1
[    0.256057] initcall sysctl_init+0x0/0x29 returned 0 after 976 usecs
[    0.256963] calling  ksysfs_init+0x0/0x96 @ 1
[    0.258021] initcall ksysfs_init+0x0/0x96 returned 0 after 0 usecs
[    0.258963] calling  async_init+0x0/0x3c @ 1
[    0.259988] initcall async_init+0x0/0x3c returned 0 after 0 usecs
[    0.260963] calling  init_jiffies_clocksource+0x0/0xf @ 1
[    0.261965] initcall init_jiffies_clocksource+0x0/0xf returned 0 after 0 usecs
[    0.262963] calling  filelock_init+0x0/0x27 @ 1
[    0.263966] initcall filelock_init+0x0/0x27 returned 0 after 0 usecs
[    0.264962] calling  init_aout_binfmt+0x0/0xf @ 1
[    0.265962] initcall init_aout_binfmt+0x0/0xf returned 0 after 0 usecs
[    0.266961] calling  init_script_binfmt+0x0/0xf @ 1
[    0.267962] initcall init_script_binfmt+0x0/0xf returned 0 after 0 usecs
[    0.268961] calling  init_elf_binfmt+0x0/0xf @ 1
[    0.269961] initcall init_elf_binfmt+0x0/0xf returned 0 after 0 usecs
[    0.270961] calling  debugfs_init+0x0/0x41 @ 1
[    0.271967] initcall debugfs_init+0x0/0x41 returned 0 after 0 usecs
[    0.272961] calling  securityfs_init+0x0/0x41 @ 1
[    0.273971] initcall securityfs_init+0x0/0x41 returned 0 after 0 usecs
[    0.274961] calling  random32_init+0x0/0xa8 @ 1
[    0.275961] initcall random32_init+0x0/0xa8 returned 0 after 0 usecs
[    0.276960] calling  regulator_init+0x0/0x23 @ 1
[    0.277959] regulator: core version 0.5
[    0.280021] initcall regulator_init+0x0/0x23 returned 0 after 1952 usecs
[    0.280977] calling  cpufreq_core_init+0x0/0x5a @ 1
[    0.281960] initcall cpufreq_core_init+0x0/0x5a returned 0 after 0 usecs
[    0.282960] calling  virtio_init+0x0/0x30 @ 1
[    0.284020] initcall virtio_init+0x0/0x30 returned 0 after 0 usecs
[    0.284959] calling  sock_init+0x0/0x51 @ 1
[    0.286008] initcall sock_init+0x0/0x51 returned 0 after 0 usecs
[    0.286959] calling  netpoll_init+0x0/0x2f @ 1
[    0.287959] initcall netpoll_init+0x0/0x2f returned 0 after 0 usecs
[    0.288958] calling  netlink_proto_init+0x0/0x101 @ 1
[    0.289990] NET: Registered protocol family 16
[    0.290973] initcall netlink_proto_init+0x0/0x101 returned 0 after 976 usecs
[    0.291958] calling  bdi_class_init+0x0/0x35 @ 1
[    0.293014] initcall bdi_class_init+0x0/0x35 returned 0 after 0 usecs
[    0.293958] calling  kobject_uevent_init+0x0/0x3f @ 1
[    0.294983] initcall kobject_uevent_init+0x0/0x3f returned 0 after 0 usecs
[    0.295957] calling  pcibus_class_init+0x0/0x14 @ 1
[    0.297015] initcall pcibus_class_init+0x0/0x14 returned 0 after 0 usecs
[    0.297957] calling  pci_driver_init+0x0/0xf @ 1
[    0.299011] initcall pci_driver_init+0x0/0xf returned 0 after 0 usecs
[    0.299957] calling  backlight_class_init+0x0/0x4d @ 1
[    0.300996] initcall backlight_class_init+0x0/0x4d returned 0 after 0 usecs
[    0.301956] calling  video_output_class_init+0x0/0x14 @ 1
[    0.304010] initcall video_output_class_init+0x0/0x14 returned 0 after 976 usecs
[    0.304956] calling  tty_class_init+0x0/0x28 @ 1
[    0.306010] initcall tty_class_init+0x0/0x28 returned 0 after 0 usecs
[    0.306957] calling  vtconsole_class_init+0x0/0xa1 @ 1
[    0.308012] initcall vtconsole_class_init+0x0/0xa1 returned 0 after 0 usecs
[    0.308956] calling  register_node_type+0x0/0x39 @ 1
[    0.310009] initcall register_node_type+0x0/0x39 returned 0 after 0 usecs
[    0.310956] calling  spi_init+0x0/0x95 @ 1
[    0.312011] initcall spi_init+0x0/0x95 returned 0 after 0 usecs
[    0.312954] calling  i2c_init+0x0/0x54 @ 1
[    0.314011] i2c-core: driver [dummy] registered
[    0.314955] initcall i2c_init+0x0/0x54 returned 0 after 976 usecs
[    0.315954] calling  eisa_init+0x0/0x26 @ 1
[    0.317028] EISA bus registered
[    0.317994] initcall eisa_init+0x0/0x26 returned 0 after 996 usecs
[    0.318999] calling  amd_postcore_init+0x0/0x66 @ 1
[    0.320002] initcall amd_postcore_init+0x0/0x66 returned 0 after 0 usecs
[    0.321003] calling  arch_kdebugfs_init+0x0/0x1e @ 1
[    0.322007] initcall arch_kdebugfs_init+0x0/0x1e returned 0 after 0 usecs
[    0.323003] calling  init_pit_clocksource+0x0/0x95 @ 1
[    0.324003] initcall init_pit_clocksource+0x0/0x95 returned 0 after 0 usecs
[    0.325003] calling  mtrr_if_init+0x0/0x58 @ 1
[    0.326007] initcall mtrr_if_init+0x0/0x58 returned 0 after 0 usecs
[    0.327002] calling  kdump_buf_page_init+0x0/0x59 @ 1
[    0.328015] initcall kdump_buf_page_init+0x0/0x59 returned 0 after 0 usecs
[    0.329002] calling  init_cyclone_clocksource+0x0/0x17d @ 1
[    0.330003] initcall init_cyclone_clocksource+0x0/0x17d returned -19 after 0 usecs
[    0.331002] calling  pci_arch_init+0x0/0x45 @ 1
[    0.336847] PCI: PCI BIOS revision 3.00 entry at 0xf21d0, last bus=5
[    0.337001] PCI: Using configuration type 1 for base access
[    0.338012] initcall pci_arch_init+0x0/0x45 returned 0 after 5859 usecs
[    0.339002] calling  topology_init+0x0/0x80 @ 1
[    0.341016] initcall topology_init+0x0/0x80 returned 0 after 976 usecs
[    0.342003] calling  mtrr_init_finialize+0x0/0x35 @ 1
[    0.343003] initcall mtrr_init_finialize+0x0/0x35 returned 0 after 0 usecs
[    0.344003] calling  param_sysfs_init+0x0/0x1c0 @ 1
[    0.362278] initcall param_sysfs_init+0x0/0x1c0 returned 0 after 16601 usecs
[    0.369004] calling  readahead_init+0x0/0x2f @ 1
[    0.374153] initcall readahead_init+0x0/0x2f returned 0 after 0 usecs
[    0.380003] calling  init_bio+0x0/0xa9 @ 1
[    0.384046] bio: create slab <bio-0> at 0
[    0.388048] initcall init_bio+0x0/0xa9 returned 0 after 3906 usecs
[    0.394004] calling  cryptomgr_init+0x0/0x29 @ 1
[    0.399013] initcall cryptomgr_init+0x0/0x29 returned 0 after 0 usecs
[    0.405003] calling  blk_settings_init+0x0/0x1d @ 1
[    0.410003] initcall blk_settings_init+0x0/0x1d returned 0 after 0 usecs
[    0.417003] calling  blk_ioc_init+0x0/0x24 @ 1
[    0.421006] initcall blk_ioc_init+0x0/0x24 returned 0 after 0 usecs
[    0.428003] calling  blk_softirq_init+0x0/0x4c @ 1
[    0.432003] initcall blk_softirq_init+0x0/0x4c returned 0 after 0 usecs
[    0.439003] calling  genhd_device_init+0x0/0x50 @ 1
[    0.444035] initcall genhd_device_init+0x0/0x50 returned 0 after 0 usecs
[    0.450004] calling  pci_slot_init+0x0/0x40 @ 1
[    0.455028] initcall pci_slot_init+0x0/0x40 returned 0 after 0 usecs
[    0.461003] calling  pnp_init+0x0/0xf @ 1
[    0.465062] initcall pnp_init+0x0/0xf returned 0 after 0 usecs
[    0.471003] calling  misc_init+0x0/0x84 @ 1
[    0.475068] initcall misc_init+0x0/0x84 returned 0 after 0 usecs
[    0.481004] calling  twl4030_init+0x0/0x11 @ 1
[    0.486057] i2c-core: driver [twl4030] registered
[    0.490004] initcall twl4030_init+0x0/0x11 returned 0 after 3906 usecs
[    0.497003] calling  phy_init+0x0/0x29 @ 1
[    0.501059] initcall phy_init+0x0/0x29 returned 0 after 0 usecs
[    0.507003] calling  init_scsi+0x0/0x89 @ 1
[    0.512061] SCSI subsystem initialized
[    0.516004] initcall init_scsi+0x0/0x89 returned 0 after 4882 usecs
[    0.522003] calling  ata_init+0x0/0x2b5 @ 1
[    0.526024] libata version 3.00 loaded.
[    0.530003] initcall ata_init+0x0/0x2b5 returned 0 after 3906 usecs
[    0.536003] calling  usb_init+0x0/0xf6 @ 1
[    0.540122] usbcore: registered new interface driver usbfs
[    0.546059] usbcore: registered new interface driver hub
[    0.551057] usbcore: registered new device driver usb
[    0.556004] initcall usb_init+0x0/0xf6 returned 0 after 15625 usecs
[    0.563034] calling  serio_init+0x0/0x73 @ 1
[    0.567064] initcall serio_init+0x0/0x73 returned 0 after 0 usecs
[    0.573004] calling  gameport_init+0x0/0x73 @ 1
[    0.578047] initcall gameport_init+0x0/0x73 returned 0 after 976 usecs
[    0.584004] calling  input_init+0x0/0xe2 @ 1
[    0.588058] initcall input_init+0x0/0xe2 returned 0 after 0 usecs
[    0.594003] calling  rtc_init+0x0/0x59 @ 1
[    0.599058] initcall rtc_init+0x0/0x59 returned 0 after 976 usecs
[    0.605003] calling  thermal_init+0x0/0x32 @ 1
[    0.609057] initcall thermal_init+0x0/0x32 returned 0 after 0 usecs
[    0.615003] calling  leds_init+0x0/0x36 @ 1
[    0.620014] initcall leds_init+0x0/0x36 returned 0 after 976 usecs
[    0.626003] calling  pci_subsys_init+0x0/0xf3 @ 1
[    0.630002] PCI: Probing PCI hardware
[    0.634002] PCI: Probing PCI hardware (bus 00)
[    0.638093] HPET not enabled in BIOS. You might try hpet=force boot option
[    0.645018] pci 0000:00:01.1: reg 10 io port: [0xdc00-0xdc1f]
[    0.651008] pci 0000:00:01.1: reg 20 io port: [0x4c00-0x4c3f]
[    0.657004] pci 0000:00:01.1: reg 24 io port: [0x4c40-0x4c7f]
[    0.662010] pci 0000:00:01.1: PME# supported from D3hot D3cold
[    0.668002] pci 0000:00:01.1: PME# disabled
[    0.672021] pci 0000:00:02.0: reg 10 32bit mmio: [0xda102000-0xda102fff]
[    0.679017] pci 0000:00:02.0: supports D1 D2
[    0.683002] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.690002] pci 0000:00:02.0: PME# disabled
[    0.694020] pci 0000:00:02.1: reg 10 32bit mmio: [0xfeb00000-0xfeb000ff]
[    0.701021] pci 0000:00:02.1: supports D1 D2
[    0.705002] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.712003] pci 0000:00:02.1: PME# disabled
[    0.716022] pci 0000:00:04.0: reg 10 io port: [0xd400-0xd4ff]
[    0.722004] pci 0000:00:04.0: reg 14 io port: [0xd800-0xd8ff]
[    0.727004] pci 0000:00:04.0: reg 18 32bit mmio: [0xda101000-0xda101fff]
[    0.734014] pci 0000:00:04.0: supports D1 D2
[    0.738022] pci 0000:00:06.0: reg 20 io port: [0xf000-0xf00f]
[    0.744040] pci 0000:00:0a.0: reg 10 32bit mmio: [0xda100000-0xda100fff]
[    0.751004] pci 0000:00:0a.0: reg 14 io port: [0xd000-0xd007]
[    0.756016] pci 0000:00:0a.0: supports D1 D2
[    0.761002] pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.767003] pci 0000:00:0a.0: PME# disabled
[    0.771029] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.778002] pci 0000:00:0b.0: PME# disabled
[    0.782031] pci 0000:00:0c.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.789002] pci 0000:00:0c.0: PME# disabled
[    0.793030] pci 0000:00:0d.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.799002] pci 0000:00:0d.0: PME# disabled
[    0.804030] pci 0000:00:0e.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.810002] pci 0000:00:0e.0: PME# disabled
[    0.814121] pci 0000:05:07.0: reg 10 io port: [0xc000-0xc0ff]
[    0.820005] pci 0000:05:07.0: reg 14 32bit mmio: [0xda000000-0xda0000ff]
[    0.827026] pci 0000:05:07.0: supports D1 D2
[    0.831002] pci 0000:05:07.0: PME# supported from D1 D2 D3hot
[    0.837003] pci 0000:05:07.0: PME# disabled
[    0.841022] pci 0000:00:09.0: transparent bridge
[    0.845003] pci 0000:00:09.0: bridge io port: [0xc000-0xcfff]
[    0.851003] pci 0000:00:09.0: bridge 32bit mmio: [0xda000000-0xda0fffff]
[    0.858118] pci 0000:01:00.0: reg 10 32bit mmio: [0xd0000000-0xd7ffffff]
[    0.865005] pci 0000:01:00.0: reg 14 io port: [0xb000-0xb0ff]
[    0.870005] pci 0000:01:00.0: reg 18 32bit mmio: [0xd9000000-0xd900ffff]
[    0.877013] pci 0000:01:00.0: reg 30 32bit mmio: [0x000000-0x01ffff]
[    0.883015] pci 0000:01:00.0: supports D1 D2
[    0.887023] pci 0000:01:00.1: reg 10 32bit mmio: [0xd9010000-0xd901ffff]
[    0.894029] pci 0000:01:00.1: supports D1 D2
[    0.898034] pci 0000:00:0e.0: bridge io port: [0xb000-0xbfff]
[    0.904003] pci 0000:00:0e.0: bridge 32bit mmio: [0xd8000000-0xd9ffffff]
[    0.911004] pci 0000:00:0e.0: bridge 64bit mmio pref: [0xd0000000-0xd7ffffff]
[    0.921227] pci 0000:00:00.0: default IRQ router [10de:005e]
[    0.927072] pci 0000:00:04.0: PCI->APIC IRQ transform: INT A -> IRQ 3
[    0.933010] pci 0000:00:0a.0: PCI->APIC IRQ transform: INT A -> IRQ 11
[    0.940026] pci 0000:05:07.0: PCI->APIC IRQ transform: INT A -> IRQ 11
[    0.946005] pci 0000:01:00.0: PCI->APIC IRQ transform: INT A -> IRQ 5
[    0.953129] initcall pci_subsys_init+0x0/0xf3 returned 0 after 315429 usecs
[    0.960003] calling  proto_init+0x0/0xf @ 1
[    0.964008] initcall proto_init+0x0/0xf returned 0 after 0 usecs
[    0.971003] calling  net_dev_init+0x0/0x12c @ 1
[    0.975063] initcall net_dev_init+0x0/0x12c returned 0 after 0 usecs
[    0.982003] calling  neigh_init+0x0/0x66 @ 1
[    0.986004] initcall neigh_init+0x0/0x66 returned 0 after 0 usecs
[    0.992003] calling  fib_rules_init+0x0/0x99 @ 1
[    0.997004] initcall fib_rules_init+0x0/0x99 returned 0 after 0 usecs
[    1.003003] calling  pktsched_init+0x0/0xa9 @ 1
[    1.007008] initcall pktsched_init+0x0/0xa9 returned 0 after 0 usecs
[    1.014003] calling  tc_filter_init+0x0/0x43 @ 1
[    1.018004] initcall tc_filter_init+0x0/0x43 returned 0 after 0 usecs
[    1.025003] calling  genl_init+0x0/0xb0 @ 1
[    1.032033] initcall genl_init+0x0/0xb0 returned 0 after 2929 usecs
[    1.038003] calling  wanrouter_init+0x0/0x42 @ 1
[    1.043053] Sangoma WANPIPE Router v1.1 (c) 1995-2000 Sangoma Technologies Inc.
[    1.050019] initcall wanrouter_init+0x0/0x42 returned 0 after 6835 usecs
[    1.057003] calling  wireless_nlevent_init+0x0/0x2f @ 1
[    1.062003] initcall wireless_nlevent_init+0x0/0x2f returned 0 after 0 usecs
[    1.069003] calling  sysctl_init+0x0/0x3b @ 1
[    1.074004] initcall sysctl_init+0x0/0x3b returned 0 after 0 usecs
[    1.080005] calling  pci_iommu_init+0x0/0xc @ 1
[    1.084004] initcall pci_iommu_init+0x0/0xc returned 0 after 0 usecs
[    1.091004] calling  print_all_ICs+0x0/0x47d @ 1
[    1.095002] 
[    1.095003] printing PIC contents
[    1.100004] ... PIC  IMR: fffa
[    1.101000] ... PIC  IRR: 0001
[    1.106002] ... PIC  ISR: 0001
[    1.109003] ... PIC ELCR: 0828
[    1.112003] 
[    1.112004] printing local APIC contents on CPU#0/0:
[    1.113000] ... APIC ID:      00000000 (0)
[    1.113000] ... APIC VERSION: 00040010
[    1.113000] ... APIC TASKPRI: 00000000 (00)
[    1.113000] ... APIC ARBPRI: 000000e0 (e0)
[    1.113000] ... APIC PROCPRI: 00000000
[    1.113000] ... APIC LDR: 01000000
[    1.113000] ... APIC DFR: ffffffff
[    1.113000] ... APIC SPIV: 000001ff
[    1.113000] ... APIC ISR field:
[    1.113000] 0123456789abcdef0123456789abcdef
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] ... APIC TMR field:
[    1.113000] 0123456789abcdef0123456789abcdef
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] ... APIC IRR field:
[    1.113000] 0123456789abcdef0123456789abcdef
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000010000000000000000
[    1.113000] ... APIC ESR: 00000000
[    1.113000] ... APIC ICR: 000008fd
[    1.113000] ... APIC ICR2: 02000000
[    1.113000] ... APIC LVTT: 000200ef
[    1.113000] ... APIC LVTPC: 00010000
[    1.113000] ... APIC LVT0: 00010700
[    1.113000] ... APIC LVT1: 00000400
[    1.113000] ... APIC LVTERR: 000000fe
[    1.113000] ... APIC TMICT: 00003112
[    1.113000] ... APIC TMCCT: 00002032
[    1.113000] ... APIC TDCR: 00000003
[    1.113000] 
[    1.112109] 
[    1.112110] printing local APIC contents on CPU#1/1:
[    1.113000] ... APIC ID:      01000000 (1)
[    1.113000] ... APIC VERSION: 00040010
[    1.113000] ... APIC TASKPRI: 00000000 (00)
[    1.113000] ... APIC ARBPRI: 000000e0 (e0)
[    1.113000] ... APIC PROCPRI: 00000000
[    1.113000] ... APIC LDR: 02000000
[    1.113000] ... APIC DFR: ffffffff
[    1.113000] ... APIC SPIV: 000001ff
[    1.113000] ... APIC ISR field:
[    1.113000] 0123456789abcdef0123456789abcdef
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] ... APIC TMR field:
[    1.113000] 0123456789abcdef0123456789abcdef
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] ... APIC IRR field:
[    1.113000] 0123456789abcdef0123456789abcdef
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000000000000000000000
[    1.113000] 00000000000000010000000000000000
[    1.113000] ... APIC ESR: 00000000
[    1.113000] ... APIC ICR: 000008fb
[    1.113000] ... APIC ICR2: 01000000
[    1.113000] ... APIC LVTT: 000200ef
[    1.113000] ... APIC LVTPC: 00010000
[    1.113000] ... APIC LVT0: 00010700
[    1.113000] ... APIC LVT1: 00010400
[    1.113000] ... APIC LVTERR: 000000fe
[    1.113000] ... APIC TMICT: 00003112
[    1.113000] ... APIC TMCCT: 00000316
[    1.113000] ... APIC TDCR: 00000003
[    1.113000] 
[    1.314005] Clocksource tsc unstable (delta = 198850212 ns)
[    1.319008] number of MP IRQ sources: 17.
[    1.323002] number of IO-APIC #2 registers: 24.
[    1.328002] testing the IO APIC.......................
[    1.333005] 
[    1.334002] IO APIC #2......
[    1.337002] .... register #00: 00000000
[    1.341002] .......    : physical APIC id: 00
[    1.345002] .......    : Delivery Type: 0
[    1.349002] .......    : LTS          : 0
[    1.353002] .... register #01: 00170011
[    1.357002] .......     : max redirection entries: 0017
[    1.362002] .......     : PRQ implemented: 0
[    1.367002] .......     : IO APIC version: 0011
[    1.371002] .... register #02: 00000000
[    1.375002] .......     : arbitration: 00
[    1.379002] .... IRQ redirection table:
[    1.383003]  NR Dst Mask Trig IRR Pol Stat Dmod Deli Vect:   
[    1.388004]  00 003 0    0    0   0   0    1    1    30
[    1.394004]  01 003 0    0    0   0   0    1    1    31
[    1.399004]  02 000 1    0    0   0   0    0    0    00
[    1.404004]  03 003 1    1    0   1   0    1    1    33
[    1.409004]  04 003 0    0    0   0   0    1    1    34
[    1.414004]  05 003 1    1    0   1   0    1    1    35
[    1.420004]  06 003 0    0    0   0   0    1    1    36
[    1.425004]  07 003 1    0    0   0   0    1    1    37
[    1.430004]  08 003 0    0    0   0   0    1    1    38
[    1.435004]  09 003 0    0    0   0   0    1    1    39
[    1.440004]  0a 003 0    0    0   0   0    1    1    3A
[    1.446004]  0b 003 1    1    0   1   0    1    1    3B
[    1.451004]  0c 003 0    0    0   0   0    1    1    3C
[    1.456004]  0d 003 0    0    0   0   0    1    1    3D
[    1.461004]  0e 003 0    0    0   0   0    1    1    3E
[    1.466004]  0f 003 0    0    0   0   0    1    1    3F
[    1.472004]  10 000 1    0    0   0   0    0    0    00
[    1.477004]  11 000 1    0    0   0   0    0    0    00
[    1.482004]  12 000 1    0    0   0   0    0    0    00
[    1.487004]  13 000 1    0    0   0   0    0    0    00
[    1.492004]  14 000 1    0    0   0   0    0    0    00
[    1.498004]  15 000 1    0    0   0   0    0    0    00
[    1.503004]  16 000 1    0    0   0   0    0    0    00
[    1.508004]  17 000 1    0    0   0   0    0    0    00
[    1.513003] IRQ to pin mappings:
[    1.516002] IRQ0 -> 0:0
[    1.519174] IRQ1 -> 0:1
[    1.521002] IRQ3 -> 0:3
[    1.524174] IRQ4 -> 0:4
[    1.527002] IRQ5 -> 0:5
[    1.528693] IRQ6 -> 0:6
[    1.531174] IRQ7 -> 0:7
[    1.533693] IRQ8 -> 0:8
[    1.536002] IRQ9 -> 0:9
[    1.539174] IRQ10 -> 0:10
[    1.541002] IRQ11 -> 0:11
[    1.544173] IRQ12 -> 0:12
[    1.546174] IRQ13 -> 0:13
[    1.548780] IRQ14 -> 0:14
[    1.552174] IRQ15 -> 0:15
[    1.554176] .................................... done.
[    1.560004] initcall print_all_ICs+0x0/0x47d returned 0 after 454101 usecs
[    1.566004] calling  hpet_late_init+0x0/0xd7 @ 1
[    1.571004] initcall hpet_late_init+0x0/0xd7 returned -19 after 0 usecs
[    1.578004] calling  init_kmmio+0x0/0x23 @ 1
[    1.582004] initcall init_kmmio+0x0/0x23 returned 0 after 0 usecs
[    1.588004] calling  clocksource_done_booting+0x0/0x11 @ 1
[    1.593004] initcall clocksource_done_booting+0x0/0x11 returned 0 after 0 usecs
[    1.601004] calling  ftrace_init_debugfs+0x0/0xe7 @ 1
[    1.606026] initcall ftrace_init_debugfs+0x0/0xe7 returned 0 after 0 usecs
[    1.612004] calling  rb_init_debugfs+0x0/0x38 @ 1
[    1.617007] initcall rb_init_debugfs+0x0/0x38 returned 0 after 0 usecs
[    1.624004] calling  tracer_init_debugfs+0x0/0x370 @ 1
[    1.629140] initcall tracer_init_debugfs+0x0/0x370 returned 0 after 0 usecs
[    1.636004] calling  init_trace_printk_function_export+0x0/0x39 @ 1
[    1.642008] initcall init_trace_printk_function_export+0x0/0x39 returned 0 after 0 usecs
[    1.650004] calling  stat_workqueue_init+0x0/0x27 @ 1
[    1.655011] initcall stat_workqueue_init+0x0/0x27 returned 0 after 0 usecs
[    1.662004] calling  init_pipe_fs+0x0/0x3d @ 1
[    1.666023] initcall init_pipe_fs+0x0/0x3d returned 0 after 0 usecs
[    1.673004] calling  init_mnt_writers+0x0/0x45 @ 1
[    1.677004] initcall init_mnt_writers+0x0/0x45 returned 0 after 0 usecs
[    1.684003] calling  eventpoll_init+0x0/0x87 @ 1
[    1.689015] initcall eventpoll_init+0x0/0x87 returned 0 after 0 usecs
[    1.695004] calling  anon_inode_init+0x0/0xe3 @ 1
[    1.700017] initcall anon_inode_init+0x0/0xe3 returned 0 after 0 usecs
[    1.706006] calling  pnp_system_init+0x0/0xf @ 1
[    1.711062] initcall pnp_system_init+0x0/0xf returned 0 after 0 usecs
[    1.717004] calling  chr_dev_init+0x0/0x89 @ 1
[    1.723103] initcall chr_dev_init+0x0/0x89 returned 0 after 976 usecs
[    1.729015] calling  firmware_class_init+0x0/0x61 @ 1
[    1.734060] initcall firmware_class_init+0x0/0x61 returned 0 after 0 usecs
[    1.741004] calling  cpufreq_gov_performance_init+0x0/0xf @ 1
[    1.747005] initcall cpufreq_gov_performance_init+0x0/0xf returned 0 after 0 usecs
[    1.754004] calling  cpufreq_gov_powersave_init+0x0/0xf @ 1
[    1.760005] initcall cpufreq_gov_powersave_init+0x0/0xf returned 0 after 0 usecs
[    1.767004] calling  pcibios_assign_resources+0x0/0x91 @ 1
[    1.773054] pci 0000:00:09.0: PCI bridge, secondary bus 0000:05
[    1.779004] pci 0000:00:09.0:   IO window: 0xc000-0xcfff
[    1.784005] pci 0000:00:09.0:   MEM window: 0xda000000-0xda0fffff
[    1.790003] pci 0000:00:09.0:   PREFETCH window: disabled
[    1.795005] pci 0000:00:0b.0: PCI bridge, secondary bus 0000:04
[    1.801003] pci 0000:00:0b.0:   IO window: disabled
[    1.806004] pci 0000:00:0b.0:   MEM window: disabled
[    1.811003] pci 0000:00:0b.0:   PREFETCH window: disabled
[    1.816004] pci 0000:00:0c.0: PCI bridge, secondary bus 0000:03
[    1.822003] pci 0000:00:0c.0:   IO window: disabled
[    1.827004] pci 0000:00:0c.0:   MEM window: disabled
[    1.832003] pci 0000:00:0c.0:   PREFETCH window: disabled
[    1.838005] pci 0000:00:0d.0: PCI bridge, secondary bus 0000:02
[    1.843003] pci 0000:00:0d.0:   IO window: disabled
[    1.848004] pci 0000:00:0d.0:   MEM window: disabled
[    1.853003] pci 0000:00:0d.0:   PREFETCH window: disabled
[    1.859009] pci 0000:00:0e.0: PCI bridge, secondary bus 0000:01
[    1.864003] pci 0000:00:0e.0:   IO window: 0xb000-0xbfff
[    1.870004] pci 0000:00:0e.0:   MEM window: 0xd8000000-0xd9ffffff
[    1.876004] pci 0000:00:0e.0:   PREFETCH window: 0x000000d0000000-0x000000d7ffffff
[    1.883008] pci 0000:00:09.0: setting latency timer to 64
[    1.889006] pci 0000:00:0b.0: setting latency timer to 64
[    1.894006] pci 0000:00:0c.0: setting latency timer to 64
[    1.900006] pci 0000:00:0d.0: setting latency timer to 64
[    1.905006] pci 0000:00:0e.0: setting latency timer to 64
[    1.910004] pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
[    1.916004] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff]
[    1.923004] pci_bus 0000:05: resource 0 io:  [0xc000-0xcfff]
[    1.928004] pci_bus 0000:05: resource 1 mem: [0xda000000-0xda0fffff]
[    1.935003] pci_bus 0000:05: resource 2 mem: [0x0-0x0]
[    1.940003] pci_bus 0000:05: resource 3 io:  [0x00-0xffff]
[    1.945004] pci_bus 0000:05: resource 4 mem: [0x000000-0xffffffffffffffff]
[    1.952004] pci_bus 0000:04: resource 0 mem: [0x0-0x0]
[    1.957003] pci_bus 0000:04: resource 1 mem: [0x0-0x0]
[    1.962005] pci_bus 0000:04: resource 2 mem: [0x0-0x0]
[    1.967003] pci_bus 0000:04: resource 3 mem: [0x0-0x0]
[    1.972003] pci_bus 0000:03: resource 0 mem: [0x0-0x0]
[    1.978003] pci_bus 0000:03: resource 1 mem: [0x0-0x0]
[    1.983003] pci_bus 0000:03: resource 2 mem: [0x0-0x0]
[    1.988003] pci_bus 0000:03: resource 3 mem: [0x0-0x0]
[    1.993003] pci_bus 0000:02: resource 0 mem: [0x0-0x0]
[    1.998003] pci_bus 0000:02: resource 1 mem: [0x0-0x0]
[    2.003003] pci_bus 0000:02: resource 2 mem: [0x0-0x0]
[    2.008003] pci_bus 0000:02: resource 3 mem: [0x0-0x0]
[    2.013004] pci_bus 0000:01: resource 0 io:  [0xb000-0xbfff]
[    2.019004] pci_bus 0000:01: resource 1 mem: [0xd8000000-0xd9ffffff]
[    2.025004] pci_bus 0000:01: resource 2 mem: [0xd0000000-0xd7ffffff]
[    2.032003] pci_bus 0000:01: resource 3 mem: [0x0-0x0]
[    2.037005] initcall pcibios_assign_resources+0x0/0x91 returned 0 after 257812 usecs
[    2.044004] calling  sysctl_core_init+0x0/0x2d @ 1
[    2.049013] initcall sysctl_core_init+0x0/0x2d returned 0 after 0 usecs
[    2.056004] calling  inet_init+0x0/0x199 @ 1
[    2.060025] NET: Registered protocol family 2
[    2.076081] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    2.083417] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    2.091526] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    2.098356] TCP: Hash tables configured (established 131072 bind 65536)
[    2.105004] TCP reno registered
[    2.111109] initcall inet_init+0x0/0x199 returned 0 after 49804 usecs
[    2.118006] calling  af_unix_init+0x0/0x47 @ 1
[    2.122012] NET: Registered protocol family 1
[    2.126016] initcall af_unix_init+0x0/0x47 returned 0 after 3906 usecs
[    2.133005] calling  populate_rootfs+0x0/0x11b @ 1
[    2.138367] initcall populate_rootfs+0x0/0x11b returned 0 after 0 usecs
[    2.145005] calling  vmx_init+0x0/0x222 @ 1
[    2.149127] kvm: no hardware support
[    2.152006] initcall vmx_init+0x0/0x222 returned -95 after 2929 usecs
[    2.159004] initcall vmx_init+0x0/0x222 returned with error code -95 
[    2.165004] calling  svm_init+0x0/0x16 @ 1
[    2.169116] has_svn: not amd
[    2.172003] kvm: no hardware support
[    2.176004] initcall svm_init+0x0/0x16 returned -95 after 6835 usecs
[    2.182004] initcall svm_init+0x0/0x16 returned with error code -95 
[    2.188005] calling  i8259A_init_sysfs+0x0/0x1d @ 1
[    2.193064] initcall i8259A_init_sysfs+0x0/0x1d returned 0 after 0 usecs
[    2.200004] calling  sbf_init+0x0/0xda @ 1
[    2.204007] initcall sbf_init+0x0/0xda returned 0 after 0 usecs
[    2.210005] calling  i8237A_init_sysfs+0x0/0x1d @ 1
[    2.215061] initcall i8237A_init_sysfs+0x0/0x1d returned 0 after 0 usecs
[    2.222008] calling  add_rtc_cmos+0x0/0x92 @ 1
[    2.226058] platform rtc_cmos: registered platform RTC device (no PNP device found)
[    2.234006] initcall add_rtc_cmos+0x0/0x92 returned 0 after 7812 usecs
[    2.240004] calling  cache_sysfs_init+0x0/0x290 @ 1
[    2.245004] initcall cache_sysfs_init+0x0/0x290 returned 0 after 0 usecs
[    2.252005] calling  thermal_throttle_init_device+0x0/0x67 @ 1
[    2.258005] initcall thermal_throttle_init_device+0x0/0x67 returned 0 after 0 usecs
[    2.265005] calling  init_nonfatal_mce_checker+0x0/0x50 @ 1
[    2.271004] Machine check exception polling timer started.
[    2.276005] initcall init_nonfatal_mce_checker+0x0/0x50 returned 0 after 4882 usecs
[    2.284005] calling  eps_init+0x0/0x3e @ 1
[    2.288007] initcall eps_init+0x0/0x3e returned -19 after 0 usecs
[    2.294005] calling  cpufreq_gx_init+0x0/0x145 @ 1
[    2.299005] initcall cpufreq_gx_init+0x0/0x145 returned -19 after 0 usecs
[    2.306005] calling  speedstep_init+0x0/0x17b @ 1
[    2.310005] initcall speedstep_init+0x0/0x17b returned -19 after 0 usecs
[    2.317005] calling  speedstep_init+0x0/0xaf @ 1
[    2.321005] initcall speedstep_init+0x0/0xaf returned -19 after 0 usecs
[    2.328005] calling  ioapic_init_sysfs+0x0/0x84 @ 1
[    2.333060] initcall ioapic_init_sysfs+0x0/0x84 returned 0 after 0 usecs
[    2.340004] calling  add_pcspkr+0x0/0x24 @ 1
[    2.344056] initcall add_pcspkr+0x0/0x24 returned 0 after 0 usecs
[    2.350005] calling  microcode_init+0x0/0xdd @ 1
[    2.355003] microcode: no support for this CPU vendor
[    2.360004] initcall microcode_init+0x0/0xdd returned -19 after 4882 usecs
[    2.367004] calling  init+0x0/0xf @ 1
[    2.370023] initcall init+0x0/0xf returned 0 after 0 usecs
[    2.376005] calling  proc_execdomains_init+0x0/0x1c @ 1
[    2.381010] initcall proc_execdomains_init+0x0/0x1c returned 0 after 0 usecs
[    2.388004] calling  ioresources_init+0x0/0x31 @ 1
[    2.393012] initcall ioresources_init+0x0/0x31 returned 0 after 0 usecs
[    2.399004] calling  uid_cache_init+0x0/0x7a @ 1
[    2.404011] initcall uid_cache_init+0x0/0x7a returned 0 after 0 usecs
[    2.410005] calling  init_posix_timers+0x0/0xa9 @ 1
[    2.415010] initcall init_posix_timers+0x0/0xa9 returned 0 after 0 usecs
[    2.422005] calling  init_posix_cpu_timers+0x0/0x8d @ 1
[    2.427005] initcall init_posix_cpu_timers+0x0/0x8d returned 0 after 0 usecs
[    2.434005] calling  nsproxy_cache_init+0x0/0x27 @ 1
[    2.439009] initcall nsproxy_cache_init+0x0/0x27 returned 0 after 0 usecs
[    2.446005] calling  create_proc_profile+0x0/0x210 @ 1
[    2.451004] initcall create_proc_profile+0x0/0x210 returned 0 after 0 usecs
[    2.458005] calling  timekeeping_init_device+0x0/0x1d @ 1
[    2.463060] initcall timekeeping_init_device+0x0/0x1d returned 0 after 0 usecs
[    2.471005] calling  init_clocksource_sysfs+0x0/0x43 @ 1
[    2.477058] initcall init_clocksource_sysfs+0x0/0x43 returned 0 after 976 usecs
[    2.484007] calling  init_timer_list_procfs+0x0/0x27 @ 1
[    2.489009] initcall init_timer_list_procfs+0x0/0x27 returned 0 after 0 usecs
[    2.496005] calling  futex_init+0x0/0x81 @ 1
[    2.500010] initcall futex_init+0x0/0x81 returned 0 after 0 usecs
[    2.507005] calling  proc_dma_init+0x0/0x1c @ 1
[    2.511014] initcall proc_dma_init+0x0/0x1c returned 0 after 0 usecs
[    2.517005] calling  proc_modules_init+0x0/0x1c @ 1
[    2.522008] initcall proc_modules_init+0x0/0x1c returned 0 after 0 usecs
[    2.529005] calling  kallsyms_init+0x0/0x1f @ 1
[    2.533009] initcall kallsyms_init+0x0/0x1f returned 0 after 0 usecs
[    2.540005] calling  crash_save_vmcoreinfo_init+0x0/0x318 @ 1
[    2.545028] initcall crash_save_vmcoreinfo_init+0x0/0x318 returned 0 after 0 usecs
[    2.553005] calling  crash_notes_memory_init+0x0/0x31 @ 1
[    2.558006] initcall crash_notes_memory_init+0x0/0x31 returned 0 after 0 usecs
[    2.566005] calling  init_kprobes+0x0/0x112 @ 1
[    2.573822] initcall init_kprobes+0x0/0x112 returned 0 after 3906 usecs
[    2.581005] calling  utsname_sysctl_init+0x0/0x11 @ 1
[    2.586020] initcall utsname_sysctl_init+0x0/0x11 returned 0 after 0 usecs
[    2.592005] calling  init_markers+0x0/0x20 @ 1
[    2.597005] initcall init_markers+0x0/0x20 returned 0 after 0 usecs
[    2.603005] calling  init_tracepoints+0x0/0x20 @ 1
[    2.608005] initcall init_tracepoints+0x0/0x20 returned 0 after 0 usecs
[    2.614005] calling  ftrace_mod_cmd_init+0x0/0xf @ 1
[    2.619005] initcall ftrace_mod_cmd_init+0x0/0xf returned 0 after 0 usecs
[    2.626005] calling  init_events+0x0/0x5f @ 1
[    2.630007] initcall init_events+0x0/0x5f returned 0 after 0 usecs
[    2.637005] calling  init_sched_switch_trace+0x0/0xf @ 1
[    2.642005] Testing tracer sched_switch: .. no entries found ..FAILED!
[    2.750005] initcall init_sched_switch_trace+0x0/0xf returned -1 after 105468 usecs
[    2.757006] initcall init_sched_switch_trace+0x0/0xf returned with error code -1 
[    2.765005] calling  init_function_trace+0x0/0x35 @ 1
[    2.770004] Testing tracer function: PASSED
[    2.882716] Testing dynamic ftrace: .. filter failed count=0 ..FAILED!
[    3.117011] initcall init_function_trace+0x0/0x35 returned -1 after 338867 usecs
[    3.125006] initcall init_function_trace+0x0/0x35 returned with error code -1 
[    3.132006] calling  init_irqsoff_tracer+0x0/0x11 @ 1
[    3.137005] Testing tracer irqsoff: <4>------------[ cut here ]------------
[    3.141002] WARNING: at kernel/trace/trace.c:466 update_max_tr_single+0xaf/0x140()
[    3.141002] Hardware name: System Product Name
[    3.141002] Modules linked in:
[    3.141002] Pid: 1, comm: swapper Not tainted 2.6.29-rc8-tip-02702-ge0d2c41-dirty #20985
[    3.141002] Call Trace:
[    3.141002]  [<c10488c6>] warn_slowpath+0x76/0xb0
[    3.141002]  [<c147dda1>] ? _spin_lock_irq+0x11/0x30
[    3.141002]  [<c1050304>] ? run_timer_softirq+0x174/0x180
[    3.141002]  [<c104d01b>] ? _local_bh_enable+0x8b/0xa0
[    3.141002]  [<c104d1a2>] ? __do_softirq+0x172/0x180
[    3.141002]  [<c1074444>] ? ring_buffer_reset_cpu+0x24/0xe0
[    3.141002]  [<c10744ed>] ? ring_buffer_reset_cpu+0xcd/0xe0
[    3.141002]  [<c147dcb9>] ? _spin_unlock_irqrestore+0x19/0x30
[    3.141002]  [<c107c721>] ? trace_hardirqs_off+0x21/0x30
[    3.141002]  [<c147dcb9>] ? _spin_unlock_irqrestore+0x19/0x30
[    3.141002]  [<c10744ed>] ? ring_buffer_reset_cpu+0xcd/0xe0
[    3.141002]  [<c107990f>] update_max_tr_single+0xaf/0x140
[    3.141002]  [<c107c8bc>] stop_critical_timing+0x15c/0x210
[    3.141002]  [<c1079f8d>] ? register_tracer+0x10d/0x200
[    3.141002]  [<c107c9b1>] trace_hardirqs_on+0x21/0x30
[    3.141002]  [<c107a263>] trace_selftest_startup_irqsoff+0x53/0xb0
[    3.141002]  [<c16fb8a2>] ? init_irqsoff_tracer+0x0/0x11
[    3.141002]  [<c1079f8d>] register_tracer+0x10d/0x200
[    3.141002]  [<c16fb8a2>] ? init_irqsoff_tracer+0x0/0x11
[    3.141002]  [<c16fb8af>] init_irqsoff_tracer+0xd/0x11
[    3.141002]  [<c100107a>] do_one_initcall+0x6a/0x170
[    3.141002]  [<c1090d63>] ? zone_statistics+0x63/0x70
[    3.141002]  [<c10886a6>] ? __alloc_pages_internal+0xa6/0x390
[    3.141002]  [<c11a58aa>] ? put_dec+0x2a/0x100
[    3.141002]  [<c10a1a14>] ? check_valid_pointer+0x24/0x60
[    3.141002]  [<c10a2041>] ? check_object+0x131/0x170
[    3.141002]  [<c10a28a4>] ? __slab_free+0x274/0x2a0
[    3.141002]  [<c11a1557>] ? ida_get_new_above+0x157/0x180
[    3.141002]  [<c11a1557>] ? ida_get_new_above+0x157/0x180
[    3.141002]  [<c10a428f>] ? kmem_cache_free+0x8f/0xa0
[    3.141002]  [<c11a1557>] ? ida_get_new_above+0x157/0x180
[    3.141002]  [<c11a1557>] ? ida_get_new_above+0x157/0x180
[    3.141002]  [<c11a197f>] ? idr_pre_get+0x4f/0x60
[    3.141002]  [<c10e0d43>] ? proc_register+0x103/0x150
[    3.141002]  [<c10e0ec0>] ? create_proc_entry+0x80/0xa0
[    3.141002]  [<c106e278>] ? init_irq_proc+0x58/0x70
[    3.141002]  [<c16e95db>] kernel_init+0x104/0x155
[    3.141002]  [<c16e94d7>] ? kernel_init+0x0/0x155
[    3.141002]  [<c101f8e3>] kernel_thread_helper+0x7/0x10
[    3.141002] ---[ end trace 5a5d197966b56a2e ]---
[    3.376012] .. no entries found ..FAILED!
[    3.380006] initcall init_irqsoff_tracer+0x0/0x11 returned 0 after 237304 usecs
[    3.388006] calling  init_wakeup_tracer+0x0/0x1d @ 1
[    3.393004] Testing tracer wakeup: PASSED
[    3.699616] Testing tracer wakeup_rt: PASSED
[    4.006613] initcall init_wakeup_tracer+0x0/0x1d returned 0 after 598633 usecs
[    4.013006] calling  stack_trace_init+0x0/0x7a @ 1
[    4.018022] initcall stack_trace_init+0x0/0x7a returned 0 after 0 usecs
[    4.025006] calling  init_mmio_trace+0x0/0xf @ 1
[    4.029007] initcall init_mmio_trace+0x0/0xf returned 0 after 0 usecs
[    4.036006] calling  init_bts_trace+0x0/0xf @ 1
[    4.040007] initcall init_bts_trace+0x0/0xf returned 0 after 0 usecs
[    4.047006] calling  init_power_trace+0x0/0x10 @ 1
[    4.051006] initcall init_power_trace+0x0/0x10 returned 0 after 0 usecs
[    4.058006] calling  init_kmem_tracer+0x0/0xf @ 1
[    4.063007] initcall init_kmem_tracer+0x0/0xf returned 0 after 0 usecs
[    4.069006] calling  register_ftrace_syscalls+0x0/0x9d @ 1
[    4.075008] initcall register_ftrace_syscalls+0x0/0x9d returned 0 after 0 usecs
[    4.082006] calling  perf_counter_sysfs_init+0x0/0x14 @ 1
[    4.087051] initcall perf_counter_sysfs_init+0x0/0x14 returned 0 after 0 usecs
[    4.094006] calling  init_per_zone_pages_min+0x0/0x77 @ 1
[    4.100041] initcall init_per_zone_pages_min+0x0/0x77 returned 0 after 0 usecs
[    4.107005] calling  pdflush_init+0x0/0x11 @ 1
[    4.111025] initcall pdflush_init+0x0/0x11 returned 0 after 0 usecs
[    4.118006] calling  kswapd_init+0x0/0x48 @ 1
[    4.122024] initcall kswapd_init+0x0/0x48 returned 0 after 0 usecs
[    4.128006] calling  init_tmpfs+0x0/0xb9 @ 1
[    4.132058] initcall init_tmpfs+0x0/0xb9 returned 0 after 0 usecs
[    4.138006] calling  setup_vmstat+0x0/0xa8 @ 1
[    4.143029] initcall setup_vmstat+0x0/0xa8 returned 0 after 0 usecs
[    4.149005] calling  mm_sysfs_init+0x0/0x22 @ 1
[    4.154013] initcall mm_sysfs_init+0x0/0x22 returned 0 after 0 usecs
[    4.160006] calling  proc_vmalloc_init+0x0/0x1f @ 1
[    4.165010] initcall proc_vmalloc_init+0x0/0x1f returned 0 after 0 usecs
[    4.171006] calling  init_emergency_pool+0x0/0x58 @ 1
[    4.176034] highmem bounce pool size: 64 pages
[    4.181006] initcall init_emergency_pool+0x0/0x58 returned 0 after 4882 usecs
[    4.188006] calling  slab_proc_init+0x0/0x1f @ 1
[    4.193010] initcall slab_proc_init+0x0/0x1f returned 0 after 0 usecs
[    4.199006] calling  slab_sysfs_init+0x0/0xb6 @ 1
[    4.218117] initcall slab_sysfs_init+0x0/0xb6 returned 0 after 13671 usecs
[    4.225006] calling  fasync_init+0x0/0x24 @ 1
[    4.229205] initcall fasync_init+0x0/0x24 returned 0 after 976 usecs
[    4.236006] calling  proc_filesystems_init+0x0/0x1c @ 1
[    4.241025] initcall proc_filesystems_init+0x0/0x1c returned 0 after 0 usecs
[    4.248006] calling  dnotify_init+0x0/0x24 @ 1
[    4.253065] initcall dnotify_init+0x0/0x24 returned 0 after 976 usecs
[    4.259006] calling  inotify_setup+0x0/0x11 @ 1
[    4.263033] initcall inotify_setup+0x0/0x11 returned 0 after 0 usecs
[    4.270005] calling  inotify_user_setup+0x0/0x98 @ 1
[    4.275126] initcall inotify_user_setup+0x0/0x98 returned 0 after 0 usecs
[    4.282006] calling  aio_setup+0x0/0x9b @ 1
[    4.286144] initcall aio_setup+0x0/0x9b returned 0 after 0 usecs
[    4.292014] calling  proc_locks_init+0x0/0x1c @ 1
[    4.297011] initcall proc_locks_init+0x0/0x1c returned 0 after 0 usecs
[    4.303006] calling  init_mbcache+0x0/0x11 @ 1
[    4.308006] initcall init_mbcache+0x0/0x11 returned 0 after 0 usecs
[    4.314006] calling  dquot_init+0x0/0xc8 @ 1
[    4.318004] VFS: Disk quotas dquot_6.5.2
[    4.322132] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    4.329007] initcall dquot_init+0x0/0xc8 returned 0 after 10742 usecs
[    4.335006] calling  init_v1_quota_format+0x0/0xf @ 1
[    4.340006] initcall init_v1_quota_format+0x0/0xf returned 0 after 0 usecs
[    4.347006] calling  init_v2_quota_format+0x0/0xf @ 1
[    4.352006] initcall init_v2_quota_format+0x0/0xf returned 0 after 0 usecs
[    4.359006] calling  proc_cmdline_init+0x0/0x1c @ 1
[    4.364011] initcall proc_cmdline_init+0x0/0x1c returned 0 after 0 usecs
[    4.371006] calling  proc_cpuinfo_init+0x0/0x1c @ 1
[    4.375010] initcall proc_cpuinfo_init+0x0/0x1c returned 0 after 0 usecs
[    4.382006] calling  proc_devices_init+0x0/0x1c @ 1
[    4.387010] initcall proc_devices_init+0x0/0x1c returned 0 after 0 usecs
[    4.394006] calling  proc_interrupts_init+0x0/0x1c @ 1
[    4.399010] initcall proc_interrupts_init+0x0/0x1c returned 0 after 0 usecs
[    4.406006] calling  proc_loadavg_init+0x0/0x1c @ 1
[    4.411010] initcall proc_loadavg_init+0x0/0x1c returned 0 after 0 usecs
[    4.417006] calling  proc_meminfo_init+0x0/0x1c @ 1
[    4.422010] initcall proc_meminfo_init+0x0/0x1c returned 0 after 0 usecs
[    4.429006] calling  proc_stat_init+0x0/0x1c @ 1
[    4.433010] initcall proc_stat_init+0x0/0x1c returned 0 after 0 usecs
[    4.440006] calling  proc_uptime_init+0x0/0x27 @ 1
[    4.444010] initcall proc_uptime_init+0x0/0x27 returned 0 after 976 usecs
[    4.452006] calling  proc_version_init+0x0/0x1c @ 1
[    4.457010] initcall proc_version_init+0x0/0x1c returned 0 after 0 usecs
[    4.463006] calling  proc_kmsg_init+0x0/0x1f @ 1
[    4.468010] initcall proc_kmsg_init+0x0/0x1f returned 0 after 0 usecs
[    4.474006] calling  proc_page_init+0x0/0x37 @ 1
[    4.479019] initcall proc_page_init+0x0/0x37 returned 0 after 0 usecs
[    4.485006] calling  init_devpts_fs+0x0/0x32 @ 1
[    4.490025] initcall init_devpts_fs+0x0/0x32 returned 0 after 0 usecs
[    4.496006] calling  init_reiserfs_fs+0x0/0x87 @ 1
[    4.501062] initcall init_reiserfs_fs+0x0/0x87 returned 0 after 0 usecs
[    4.508006] calling  init_ext3_fs+0x0/0x64 @ 1
[    4.513061] initcall init_ext3_fs+0x0/0x64 returned 0 after 976 usecs
[    4.519008] calling  journal_init+0x0/0x85 @ 1
[    4.524169] initcall journal_init+0x0/0x85 returned 0 after 976 usecs
[    4.530007] calling  init_squashfs_fs+0x0/0x5d @ 1
[    4.535088] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    4.541007] initcall init_squashfs_fs+0x0/0x5d returned 0 after 5859 usecs
[    4.548051] calling  init_ramfs_fs+0x0/0xf @ 1
[    4.552007] initcall init_ramfs_fs+0x0/0xf returned 0 after 0 usecs
[    4.559006] calling  init_fat_fs+0x0/0x46 @ 1
[    4.563105] initcall init_fat_fs+0x0/0x46 returned 0 after 0 usecs
[    4.569006] calling  init_vfat_fs+0x0/0xf @ 1
[    4.574007] initcall init_vfat_fs+0x0/0xf returned 0 after 0 usecs
[    4.580006] calling  init_msdos_fs+0x0/0xf @ 1
[    4.584007] initcall init_msdos_fs+0x0/0xf returned 0 after 0 usecs
[    4.591006] calling  init_bfs_fs+0x0/0x54 @ 1
[    4.595106] initcall init_bfs_fs+0x0/0x54 returned 0 after 0 usecs
[    4.601006] calling  init_iso9660_fs+0x0/0x64 @ 1
[    4.606128] initcall init_iso9660_fs+0x0/0x64 returned 0 after 0 usecs
[    4.612006] calling  init_hfsplus_fs+0x0/0x50 @ 1
[    4.617109] initcall init_hfsplus_fs+0x0/0x50 returned 0 after 0 usecs
[    4.624011] calling  init_hfs_fs+0x0/0x50 @ 1
[    4.628111] initcall init_hfs_fs+0x0/0x50 returned 0 after 0 usecs
[    4.634006] calling  vxfs_init+0x0/0x4d @ 1
[    4.639061] initcall vxfs_init+0x0/0x4d returned 0 after 976 usecs
[    4.645006] calling  init_nls_cp852+0x0/0xf @ 1
[    4.649022] initcall init_nls_cp852+0x0/0xf returned 0 after 0 usecs
[    4.656006] calling  init_nls_cp860+0x0/0xf @ 1
[    4.660006] initcall init_nls_cp860+0x0/0xf returned 0 after 0 usecs
[    4.666006] calling  init_nls_cp862+0x0/0xf @ 1
[    4.671006] initcall init_nls_cp862+0x0/0xf returned 0 after 0 usecs
[    4.677006] calling  init_nls_cp866+0x0/0xf @ 1
[    4.682006] initcall init_nls_cp866+0x0/0xf returned 0 after 0 usecs
[    4.688006] calling  init_nls_cp874+0x0/0xf @ 1
[    4.693006] initcall init_nls_cp874+0x0/0xf returned 0 after 0 usecs
[    4.699006] calling  init_nls_cp932+0x0/0xf @ 1
[    4.703006] initcall init_nls_cp932+0x0/0xf returned 0 after 0 usecs
[    4.710006] calling  init_nls_euc_jp+0x0/0x39 @ 1
[    4.714007] initcall init_nls_euc_jp+0x0/0x39 returned 0 after 0 usecs
[    4.721006] calling  init_nls_cp1250+0x0/0xf @ 1
[    4.726006] initcall init_nls_cp1250+0x0/0xf returned 0 after 0 usecs
[    4.732006] calling  init_nls_ascii+0x0/0xf @ 1
[    4.736006] initcall init_nls_ascii+0x0/0xf returned 0 after 0 usecs
[    4.743006] calling  init_nls_iso8859_7+0x0/0xf @ 1
[    4.748006] initcall init_nls_iso8859_7+0x0/0xf returned 0 after 0 usecs
[    4.754006] calling  init_nls_iso8859_15+0x0/0xf @ 1
[    4.759007] initcall init_nls_iso8859_15+0x0/0xf returned 0 after 0 usecs
[    4.766006] calling  init_nls_koi8_u+0x0/0xf @ 1
[    4.771006] initcall init_nls_koi8_u+0x0/0xf returned 0 after 0 usecs
[    4.777008] calling  init_nls_koi8_ru+0x0/0x39 @ 1
[    4.782007] initcall init_nls_koi8_ru+0x0/0x39 returned 0 after 0 usecs
[    4.788006] calling  init_nls_utf8+0x0/0x1f @ 1
[    4.793007] initcall init_nls_utf8+0x0/0x1f returned 0 after 0 usecs
[    4.799006] calling  init_ncp_fs+0x0/0x54 @ 1
[    4.804117] initcall init_ncp_fs+0x0/0x54 returned 0 after 0 usecs
[    4.810007] calling  init_ntfs_fs+0x0/0x199 @ 1
[    4.814005] NTFS driver 2.1.29 [Flags: R/O].
[    4.819125] initcall init_ntfs_fs+0x0/0x199 returned 0 after 4882 usecs
[    4.826012] calling  init_efs_fs+0x0/0x5f @ 1
[    4.830005] EFS: 1.0a - http://aeschi.ch.eu.org/efs/
[    4.835113] initcall init_efs_fs+0x0/0x5f returned 0 after 4882 usecs
[    4.842007] calling  init_romfs_fs+0x0/0x54 @ 1
[    4.846109] initcall init_romfs_fs+0x0/0x54 returned 0 after 0 usecs
[    4.853007] calling  init_befs_fs+0x0/0x6d @ 1
[    4.857006] BeFS version: 0.9.3
[    4.860108] initcall init_befs_fs+0x0/0x6d returned 0 after 2929 usecs
[    4.867007] calling  ipc_init+0x0/0x20 @ 1
[    4.871013] msgmni has been set to 1739
[    4.875017] initcall ipc_init+0x0/0x20 returned 0 after 3906 usecs
[    4.881007] calling  ipc_sysctl_init+0x0/0x11 @ 1
[    4.886031] initcall ipc_sysctl_init+0x0/0x11 returned 0 after 0 usecs
[    4.892006] calling  key_proc_init+0x0/0x2c @ 1
[    4.897011] initcall key_proc_init+0x0/0x2c returned 0 after 0 usecs
[    4.903007] calling  crypto_algapi_init+0x0/0xc @ 1
[    4.908016] initcall crypto_algapi_init+0x0/0xc returned 0 after 0 usecs
[    4.914007] calling  chainiv_module_init+0x0/0xf @ 1
[    4.919008] initcall chainiv_module_init+0x0/0xf returned 0 after 0 usecs
[    4.926007] calling  eseqiv_module_init+0x0/0xf @ 1
[    4.931007] initcall eseqiv_module_init+0x0/0xf returned 0 after 0 usecs
[    4.938007] calling  seqiv_module_init+0x0/0xf @ 1
[    4.942007] initcall seqiv_module_init+0x0/0xf returned 0 after 0 usecs
[    4.949007] calling  hmac_module_init+0x0/0xf @ 1
[    4.954007] initcall hmac_module_init+0x0/0xf returned 0 after 0 usecs
[    4.960007] calling  crypto_xcbc_module_init+0x0/0xf @ 1
[    4.965007] initcall crypto_xcbc_module_init+0x0/0xf returned 0 after 0 usecs
[    4.973007] calling  crypto_null_mod_init+0x0/0x69 @ 1
[    4.978025] alg: No test for cipher_null (cipher_null-generic)
[    4.979049] alg: No test for digest_null (digest_null-generic)
[    4.984026] alg: No test for compress_null (compress_null-generic)
[    4.985022] initcall crypto_null_mod_init+0x0/0x69 returned 0 after 6835 usecs
[    4.992013] calling  md5_mod_init+0x0/0xf @ 1
[    4.996026] initcall md5_mod_init+0x0/0xf returned 0 after 0 usecs
[    5.002007] calling  sha1_generic_mod_init+0x0/0xf @ 1
[    5.007025] initcall sha1_generic_mod_init+0x0/0xf returned 0 after 0 usecs
[    5.014009] calling  crypto_ecb_module_init+0x0/0xf @ 1
[    5.019010] initcall crypto_ecb_module_init+0x0/0xf returned 0 after 0 usecs
[    5.026007] calling  crypto_cbc_module_init+0x0/0xf @ 1
[    5.032007] initcall crypto_cbc_module_init+0x0/0xf returned 0 after 0 usecs
[    5.039008] calling  crypto_pcbc_module_init+0x0/0xf @ 1
[    5.044007] initcall crypto_pcbc_module_init+0x0/0xf returned 0 after 0 usecs
[    5.051007] calling  crypto_module_init+0x0/0xf @ 1
[    5.056007] initcall crypto_module_init+0x0/0xf returned 0 after 0 usecs
[    5.063007] calling  crypto_module_init+0x0/0xf @ 1
[    5.067007] initcall crypto_module_init+0x0/0xf returned 0 after 0 usecs
[    5.074007] calling  crypto_ctr_module_init+0x0/0x35 @ 1
[    5.079007] initcall crypto_ctr_module_init+0x0/0x35 returned 0 after 0 usecs
[    5.087007] calling  crypto_ccm_module_init+0x0/0x4f @ 1
[    5.092008] initcall crypto_ccm_module_init+0x0/0x4f returned 0 after 0 usecs
[    5.099007] calling  des_generic_mod_init+0x0/0x33 @ 1
[    5.104037] initcall des_generic_mod_init+0x0/0x33 returned 0 after 0 usecs
[    5.111007] calling  blowfish_mod_init+0x0/0xf @ 1
[    5.116645] initcall blowfish_mod_init+0x0/0xf returned 0 after 976 usecs
[    5.123009] calling  twofish_mod_init+0x0/0xf @ 1
[    5.128108] initcall twofish_mod_init+0x0/0xf returned 0 after 0 usecs
[    5.134007] calling  aes_init+0x0/0xf @ 1
[    5.138042] initcall aes_init+0x0/0xf returned 0 after 0 usecs
[    5.144010] calling  arc4_init+0x0/0xf @ 1
[    5.148049] initcall arc4_init+0x0/0xf returned 0 after 0 usecs
[    5.154007] calling  deflate_mod_init+0x0/0xf @ 1
[    5.159365] initcall deflate_mod_init+0x0/0xf returned 0 after 0 usecs
[    5.166007] calling  crc32c_mod_init+0x0/0xf @ 1
[    5.170045] initcall crc32c_mod_init+0x0/0xf returned 0 after 0 usecs
[    5.177007] calling  crypto_authenc_module_init+0x0/0xf @ 1
[    5.182007] initcall crypto_authenc_module_init+0x0/0xf returned 0 after 0 usecs
[    5.190007] calling  lzo_mod_init+0x0/0xf @ 1
[    5.194031] initcall lzo_mod_init+0x0/0xf returned 0 after 0 usecs
[    5.200007] calling  krng_mod_init+0x0/0xf @ 1
[    5.205025] alg: No test for stdrng (krng)
[    5.206015] initcall krng_mod_init+0x0/0xf returned 0 after 976 usecs
[    5.212007] calling  proc_genhd_init+0x0/0x31 @ 1
[    5.217016] initcall proc_genhd_init+0x0/0x31 returned 0 after 0 usecs
[    5.223007] calling  bsg_init+0x0/0x106 @ 1
[    5.228069] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[    5.235008] initcall bsg_init+0x0/0x106 returned 0 after 7812 usecs
[    5.241007] calling  noop_init+0x0/0x11 @ 1
[    5.245006] io scheduler noop registered
[    5.249007] initcall noop_init+0x0/0x11 returned 0 after 3906 usecs
[    5.256006] calling  as_init+0x0/0x11 @ 1
[    5.260005] io scheduler anticipatory registered (default)
[    5.265007] initcall as_init+0x0/0x11 returned 0 after 4882 usecs
[    5.271007] calling  deadline_init+0x0/0x11 @ 1
[    5.276005] io scheduler deadline registered
[    5.280007] initcall deadline_init+0x0/0x11 returned 0 after 3906 usecs
[    5.286007] calling  libcrc32c_mod_init+0x0/0x25 @ 1
[    5.291009] initcall libcrc32c_mod_init+0x0/0x25 returned 0 after 0 usecs
[    5.298009] calling  percpu_counter_startup+0x0/0x26 @ 1
[    5.303007] initcall percpu_counter_startup+0x0/0x26 returned 0 after 0 usecs
[    5.310007] calling  dynamic_printk_init+0x0/0xe2 @ 1
[    5.316845] initcall dynamic_printk_init+0x0/0xe2 returned 0 after 976 usecs
[    5.324007] calling  pci_init+0x0/0x31 @ 1
[    5.339090] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    5.345010] pci 0000:00:0b.0: Found disabled HT MSI Mapping
[    5.350011] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    5.356047] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    5.361009] pci 0000:00:0c.0: Found disabled HT MSI Mapping
[    5.367011] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    5.372051] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    5.378009] pci 0000:00:0d.0: Found disabled HT MSI Mapping
[    5.383011] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    5.389056] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    5.394009] pci 0000:00:0e.0: Found disabled HT MSI Mapping
[    5.400011] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    5.405026] pci 0000:01:00.0: Boot video device
[    5.410013] initcall pci_init+0x0/0x31 returned 0 after 80078 usecs
[    5.416007] calling  pci_proc_init+0x0/0x5b @ 1
[    5.420159] initcall pci_proc_init+0x0/0x5b returned 0 after 976 usecs
[    5.427007] calling  pcie_portdrv_init+0x0/0x41 @ 1
[    5.433017] pcieport-driver 0000:00:0b.0: setting latency timer to 64
[    5.434038]   alloc irq_desc for 24 on cpu 0 node 0
[    5.435003]   alloc kstat_irqs on cpu 0 node 0
[    5.435009] pcieport-driver 0000:00:0b.0: irq 24 for MSI/MSI-X
[    5.436093] pcieport-driver 0000:00:0c.0: setting latency timer to 64
[    5.437036]   alloc irq_desc for 25 on cpu 0 node 0
[    5.438004]   alloc kstat_irqs on cpu 0 node 0
[    5.438021] pcieport-driver 0000:00:0c.0: irq 25 for MSI/MSI-X
[    5.439089] pcieport-driver 0000:00:0d.0: setting latency timer to 64
[    5.440036]   alloc irq_desc for 26 on cpu 0 node 0
[    5.441004]   alloc kstat_irqs on cpu 0 node 0
[    5.441007] pcieport-driver 0000:00:0d.0: irq 26 for MSI/MSI-X
[    5.442075] pcieport-driver 0000:00:0e.0: setting latency timer to 64
[    5.443035]   alloc irq_desc for 27 on cpu 0 node 0
[    5.444004]   alloc kstat_irqs on cpu 0 node 0
[    5.444015] pcieport-driver 0000:00:0e.0: irq 27 for MSI/MSI-X
[    5.445076] initcall pcie_portdrv_init+0x0/0x41 returned 0 after 12695 usecs
[    5.452029] calling  aer_service_init+0x0/0x1d @ 1
[    5.457070] initcall aer_service_init+0x0/0x1d returned 0 after 0 usecs
[    5.463007] calling  kb3886_init+0x0/0x35 @ 1
[    5.468041] initcall kb3886_init+0x0/0x35 returned -19 after 0 usecs
[    5.474007] calling  display_class_init+0x0/0x69 @ 1
[    5.479066] initcall display_class_init+0x0/0x69 returned 0 after 0 usecs
[    5.486007] calling  isapnp_init+0x0/0xc9b @ 1
[    5.490022] isapnp: Scanning for PnP cards...
[    5.849533] isapnp: No Plug & Play device found
[    5.854007] initcall isapnp_init+0x0/0xc9b returned 0 after 355469 usecs
[    5.861009] calling  rand_initialize+0x0/0x30 @ 1
[    5.866041] initcall rand_initialize+0x0/0x30 returned 0 after 0 usecs
[    5.872007] calling  tty_init+0x0/0xd5 @ 1
[    5.885141] initcall tty_init+0x0/0xd5 returned 0 after 8789 usecs
[    5.891170] calling  pty_init+0x0/0x4ab @ 1
[    5.973163] initcall pty_init+0x0/0x4ab returned 0 after 76171 usecs
[    5.979008] calling  sysrq_init+0x0/0x1f @ 1
[    5.984122] initcall sysrq_init+0x0/0x1f returned 0 after 0 usecs
[    5.990007] calling  cy_init+0x0/0x3c7 @ 1
[    5.994007] Cyclades driver 2.5 (built Mar 18 2009 10:17:06)
[    6.012171] initcall cy_init+0x0/0x3c7 returned 0 after 17578 usecs
[    6.019008] calling  specialix_init_module+0x0/0x340 @ 1
[    6.024134] sx: Specialix IO8+ driver v1.11, (c) R.E.Wolff 1997/1998.
[    6.030006] sx: derived from work (c) D.Gorodchanin 1994-1996.
[    6.036006] sx: DTR/RTS pin is always RTS.
[    6.050233] sx0: specialix IO8+ Board at 0x100 not found.
[    6.056017] sx1: specialix IO8+ Board at 0x180 not found.
[    6.061127] sx2: specialix IO8+ Board at 0x250 not found.
[    6.067018] sx3: specialix IO8+ Board at 0x260 not found.
[    6.086065] sx: No specialix IO8+ boards detected.
[    6.090011] initcall specialix_init_module+0x0/0x340 returned -5 after 64453 usecs
[    6.098033] initcall specialix_init_module+0x0/0x340 returned with error code -5 
[    6.105007] calling  ip2_loadmain+0x0/0x1114 @ 1
[    6.110007] Computone IntelliPort Plus multiport driver version 1.2.14
[    6.117066] initcall ip2_loadmain+0x0/0x1114 returned 0 after 6835 usecs
[    6.123008] calling  synclink_init+0x0/0x217 @ 1
[    6.128118] SyncLink serial driver $Revision: 4.38 $
[    6.155106] SyncLink serial driver $Revision: 4.38 $, tty major#253
[    6.161010] initcall synclink_init+0x0/0x217 returned 0 after 32226 usecs
[    6.168125] calling  rio_init+0x0/0xb3a @ 1
[    6.174069] initcall rio_init+0x0/0xb3a returned -5 after 1953 usecs
[    6.180008] initcall rio_init+0x0/0xb3a returned with error code -5 
[    6.186042] calling  init+0x0/0xf @ 1
[    6.190065] initcall init+0x0/0xf returned 0 after 0 usecs
[    6.196068] calling  dtlk_init+0x0/0x1af @ 1
[    6.200045] DoubleTalk PC - not found
[    6.204014] initcall dtlk_init+0x0/0x1af returned -19 after 3906 usecs
[    6.210007] calling  applicom_init+0x0/0x41f @ 1
[    6.215006] Applicom driver: $Id: ac.c,v 1.30 2000/03/22 16:03:57 dwmw2 Exp $
[    6.222010] ac.o: No PCI boards found.
[    6.225006] ac.o: For an ISA board you must supply memory and irq parameters.
[    6.233007] initcall applicom_init+0x0/0x41f returned -6 after 17578 usecs
[    6.239007] initcall applicom_init+0x0/0x41f returned with error code -6 
[    6.246007] calling  sonypi_init+0x0/0x79 @ 1
[    6.250006] sonypi: Sony Programmable I/O Controller Driver v1.26.
[    6.257009] initcall sonypi_init+0x0/0x79 returned -19 after 6835 usecs
[    6.263007] calling  mod_init+0x0/0x1cb @ 1
[    6.267131] initcall mod_init+0x0/0x1cb returned -19 after 976 usecs
[    6.274007] calling  mod_init+0x0/0x41 @ 1
[    6.278007] initcall mod_init+0x0/0x41 returned -19 after 0 usecs
[    6.284007] calling  init+0x0/0x68 @ 1
[    6.288064] initcall init+0x0/0x68 returned 0 after 0 usecs
[    6.293008] calling  tlclk_init+0x0/0x1a5 @ 1
[    6.298026] telclk_interrup = 0xf non-mcpbl0010 hw.
[    6.302017] initcall tlclk_init+0x0/0x1a5 returned -6 after 3906 usecs
[    6.309008] initcall tlclk_init+0x0/0x1a5 returned with error code -6 
[    6.315007] calling  ipmi_init_msghandler_mod+0x0/0xc @ 1
[    6.321064] ipmi message handler version 39.2
[    6.325028] initcall ipmi_init_msghandler_mod+0x0/0xc returned 0 after 3906 usecs
[    6.333021] calling  init_ipmi_devintf+0x0/0xd1 @ 1
[    6.337006] ipmi device interface
[    6.341064] initcall init_ipmi_devintf+0x0/0xd1 returned 0 after 3906 usecs
[    6.348008] calling  hangcheck_init+0x0/0x95 @ 1
[    6.352007] Hangcheck: starting hangcheck timer 0.9.0 (tick is 180 seconds, margin is 60 seconds).
[    6.361006] Hangcheck: Using get_cycles().
[    6.365008] initcall hangcheck_init+0x0/0x95 returned 0 after 12695 usecs
[    6.372007] calling  serial8250_init+0x0/0xf4 @ 1
[    6.377007] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    6.383091] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    6.390132] initcall serial8250_init+0x0/0xf4 returned 0 after 12695 usecs
[    6.397008] calling  serial8250_pci_init+0x0/0x16 @ 1
[    6.402074] initcall serial8250_pci_init+0x0/0x16 returned 0 after 0 usecs
[    6.409008] calling  fourport_init+0x0/0xf @ 1
[    6.417210] initcall fourport_init+0x0/0xf returned 0 after 3906 usecs
[    6.424008] calling  hub6_init+0x0/0xf @ 1
[    6.434214] initcall hub6_init+0x0/0xf returned 0 after 5859 usecs
[    6.440010] calling  isa_bus_init+0x0/0x33 @ 1
[    6.445065] initcall isa_bus_init+0x0/0x33 returned 0 after 0 usecs
[    6.451009] calling  topology_sysfs_init+0x0/0x4c @ 1
[    6.456050] initcall topology_sysfs_init+0x0/0x4c returned 0 after 0 usecs
[    6.463008] calling  cpqarray_init+0x0/0x24f @ 1
[    6.467006] Compaq SMART2 Driver (v 2.6.0)
[    6.472068] initcall cpqarray_init+0x0/0x24f returned -19 after 4882 usecs
[    6.479008] calling  cciss_init+0x0/0x20 @ 1
[    6.483006] HP CISS Driver (v 3.6.20)
[    6.487020] initcall cciss_init+0x0/0x20 returned 0 after 3906 usecs
[    6.493008] calling  init+0x0/0x24 @ 1
[    6.497064] initcall init+0x0/0x24 returned 0 after 0 usecs
[    6.502008] calling  carm_init+0x0/0x16 @ 1
[    6.506069] initcall carm_init+0x0/0x16 returned 0 after 0 usecs
[    6.512008] calling  sm501_base_init+0x0/0x20 @ 1
[    6.517067] initcall sm501_base_init+0x0/0x20 returned 0 after 0 usecs
[    6.524008] calling  e1000_init_module+0x0/0x6e @ 1
[    6.528008] Intel(R) PRO/1000 Network Driver - version 7.3.21-k3-NAPI
[    6.535007] Copyright (c) 1999-2006 Intel Corporation.
[    6.540070] initcall e1000_init_module+0x0/0x6e returned 0 after 11718 usecs
[    6.547008] calling  e1000_init_module+0x0/0x53 @ 1
[    6.552007] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k6
[    6.558006] e1000e: Copyright (c) 1999-2008 Intel Corporation.
[    6.564070] initcall e1000_init_module+0x0/0x53 returned 0 after 11718 usecs
[    6.571008] calling  igb_init_module+0x0/0x43 @ 1
[    6.576007] Intel(R) Gigabit Ethernet Network Driver - version 1.2.45-k2
[    6.582009] Copyright (c) 2008 Intel Corporation.
[    6.587064] initcall igb_init_module+0x0/0x43 returned 0 after 10742 usecs
[    6.594008] calling  atl1_init_module+0x0/0x16 @ 1
[    6.599064] initcall atl1_init_module+0x0/0x16 returned 0 after 0 usecs
[    6.605008] calling  atl1e_init_module+0x0/0x16 @ 1
[    6.610063] initcall atl1e_init_module+0x0/0x16 returned 0 after 0 usecs
[    6.617008] calling  gem_init+0x0/0x16 @ 1
[    6.621064] initcall gem_init+0x0/0x16 returned 0 after 0 usecs
[    6.627008] calling  vortex_init+0x0/0xbf @ 1
[    6.631078] initcall vortex_init+0x0/0xbf returned 0 after 0 usecs
[    6.637009] calling  pcnet32_init_module+0x0/0x10a @ 1
[    6.643007] pcnet32.c:v1.35 21.Apr.2008 tsbogend@alpha.franken.de
[    6.649066] initcall pcnet32_init_module+0x0/0x10a returned 0 after 5859 usecs
[    6.656008] calling  e100_init_module+0x0/0x4d @ 1
[    6.661007] e100: Intel(R) PRO/100 Network Driver, 3.5.23-k6-NAPI
[    6.667007] e100: Copyright(c) 1999-2006 Intel Corporation
[    6.672064] initcall e100_init_module+0x0/0x4d returned 0 after 10742 usecs
[    6.679008] calling  tlan_probe+0x0/0x269 @ 1
[    6.684029] ThunderLAN driver v1.15a
[    6.687067] TLAN: 0 devices installed, PCI: 0  EISA: 0
[    6.692064] initcall tlan_probe+0x0/0x269 returned -19 after 7812 usecs
[    6.699008] calling  epic_init+0x0/0x16 @ 1
[    6.703064] initcall epic_init+0x0/0x16 returned 0 after 0 usecs
[    6.709009] calling  smsc9420_init_module+0x0/0x39 @ 1
[    6.714070] initcall smsc9420_init_module+0x0/0x39 returned 0 after 0 usecs
[    6.721008] calling  sis190_init_module+0x0/0x16 @ 1
[    6.726066] initcall sis190_init_module+0x0/0x16 returned 0 after 0 usecs
[    6.733011] calling  r6040_init+0x0/0x16 @ 1
[    6.737064] initcall r6040_init+0x0/0x16 returned 0 after 0 usecs
[    6.743027] calling  yellowfin_init+0x0/0x16 @ 1
[    6.748067] initcall yellowfin_init+0x0/0x16 returned 0 after 0 usecs
[    6.754008] calling  tg3_init+0x0/0x16 @ 1
[    6.759026] initcall tg3_init+0x0/0x16 returned 0 after 976 usecs
[    6.765008] calling  sky2_init_module+0x0/0x47 @ 1
[    6.769015] sky2 driver version 1.22
[    6.773070] initcall sky2_init_module+0x0/0x47 returned 0 after 3906 usecs
[    6.780009] calling  starfire_init+0x0/0x16 @ 1
[    6.784064] initcall starfire_init+0x0/0x16 returned 0 after 0 usecs
[    6.791008] calling  cicada_init+0x0/0x33 @ 1
[    6.795066] initcall cicada_init+0x0/0x33 returned 0 after 0 usecs
[    6.801008] calling  lxt_init+0x0/0x33 @ 1
[    6.806064] initcall lxt_init+0x0/0x33 returned 0 after 976 usecs
[    6.812008] calling  smsc_init+0x0/0x67 @ 1
[    6.816067] initcall smsc_init+0x0/0x67 returned 0 after 0 usecs
[    6.822008] calling  vsc82xx_init+0x0/0x33 @ 1
[    6.827067] initcall vsc82xx_init+0x0/0x33 returned 0 after 976 usecs
[    6.834009] calling  broadcom_init+0x0/0xdb @ 1
[    6.839101] initcall broadcom_init+0x0/0xdb returned 0 after 976 usecs
[    6.846009] calling  sundance_init+0x0/0x16 @ 1
[    6.850066] initcall sundance_init+0x0/0x16 returned 0 after 0 usecs
[    6.856009] calling  net_olddevs_init+0x0/0x82 @ 1
[    6.861128] initcall net_olddevs_init+0x0/0x82 returned 0 after 0 usecs
[    6.868008] calling  init_nic+0x0/0x16 @ 1
[    6.872023] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.62.
[    6.873062] forcedeth 0000:00:0a.0: setting latency timer to 64
[    6.874055] nv_probe: set workaround bit for reversed mac addr
[    7.387307] forcedeth 0000:00:0a.0: ifname eth0, PHY OUI 0x5043 @ 1, addr 00:13:d4:dc:41:12
[    7.388009] forcedeth 0000:00:0a.0: highdma csum timirq gbit lnktim desc-v3
[    7.389068] initcall init_nic+0x0/0x16 returned 0 after 504883 usecs
[    7.396027] calling  ql3xxx_init_module+0x0/0x16 @ 1
[    7.401073] initcall ql3xxx_init_module+0x0/0x16 returned 0 after 0 usecs
[    7.407009] calling  ppp_init+0x0/0x8a @ 1
[    7.411024] PPP generic driver version 2.4.2
[    7.416096] initcall ppp_init+0x0/0x8a returned 0 after 4882 usecs
[    7.422009] calling  ppp_sync_init+0x0/0x2d @ 1
[    7.427018] initcall ppp_sync_init+0x0/0x2d returned 0 after 0 usecs
[    7.433009] calling  pppox_init+0x0/0xf @ 1
[    7.437008] NET: Registered protocol family 24
[    7.441009] initcall pppox_init+0x0/0xf returned 0 after 3906 usecs
[    7.448009] calling  pppoe_init+0x0/0x87 @ 1
[    7.452021] initcall pppoe_init+0x0/0x87 returned 0 after 0 usecs
[    7.458009] calling  pppol2tp_init+0x0/0x7e @ 1
[    7.463012] PPPoL2TP kernel driver, V1.0
[    7.466009] initcall pppol2tp_init+0x0/0x7e returned 0 after 2929 usecs
[    7.473009] calling  slip_init+0x0/0xa3 @ 1
[    7.477008] SLIP: version 0.8.4-NET3.019-NEWTTY (dynamic channels, max=256) (6 bit encapsulation enabled).
[    7.487007] CSLIP: code copyright 1989 Regents of the University of California.
[    7.494007] SLIP linefill/keepalive option.
[    7.498012] initcall slip_init+0x0/0xa3 returned 0 after 20507 usecs
[    7.505009] calling  dummy_init_module+0x0/0x95 @ 1
[    7.510212] initcall dummy_init_module+0x0/0x95 returned 0 after 976 usecs
[    7.517010] calling  rtl8139_init_module+0x0/0x16 @ 1
[    7.522033] 8139too Fast Ethernet driver 0.9.28
[    7.524202] eth1: RealTek RTL8139 at 0xc000, 00:c0:df:03:68:5d, IRQ 11
[    7.525008] eth1:  Identified 8139 chip type 'RTL-8139B'
[    7.527069] initcall rtl8139_init_module+0x0/0x16 returned 0 after 4882 usecs
[    7.534027] calling  sc92031_init+0x0/0x20 @ 1
[    7.538008] Silan SC92031 PCI Fast Ethernet Adapter driver 2.0c
[    7.544071] initcall sc92031_init+0x0/0x20 returned 0 after 5859 usecs
[    7.551009] calling  eql_init_module+0x0/0x50 @ 1
[    7.555007] Equalizer2002: Simon Janes (simon@ncm.com) and David S. Miller (davem@redhat.com)
[    7.564217] initcall eql_init_module+0x0/0x50 returned 0 after 8789 usecs
[    7.571009] calling  veth_init+0x0/0xf @ 1
[    7.575019] initcall veth_init+0x0/0xf returned 0 after 0 usecs
[    7.581009] calling  enc28j60_init+0x0/0x1e @ 1
[    7.585065] initcall enc28j60_init+0x0/0x1e returned 0 after 0 usecs
[    7.592009] calling  streamer_init_module+0x0/0x16 @ 1
[    7.597073] initcall streamer_init_module+0x0/0x16 returned 0 after 0 usecs
[    7.604009] calling  abyss_init+0x0/0x16 @ 1
[    7.608065] initcall abyss_init+0x0/0x16 returned 0 after 0 usecs
[    7.614009] calling  hdlc_module_init+0x0/0x37 @ 1
[    7.619011] HDLC support module revision 1.22
[    7.623010] initcall hdlc_module_init+0x0/0x37 returned 0 after 3906 usecs
[    7.630009] calling  mod_init+0x0/0x11 @ 1
[    7.634009] initcall mod_init+0x0/0x11 returned 0 after 0 usecs
[    7.640009] calling  mod_init+0x0/0x11 @ 1
[    7.644011] initcall mod_init+0x0/0x11 returned 0 after 0 usecs
[    7.650009] calling  mod_init+0x0/0x39 @ 1
[    7.654009] initcall mod_init+0x0/0x39 returned 0 after 0 usecs
[    7.660009] calling  fst_init+0x0/0x33 @ 1
[    7.664065] initcall fst_init+0x0/0x33 returned 0 after 0 usecs
[    7.670009] calling  pc300_init_module+0x0/0x5c @ 1
[    7.675064] initcall pc300_init_module+0x0/0x5c returned 0 after 0 usecs
[    7.682009] calling  arcnet_init+0x0/0x50 @ 1
[    7.686007] arcnet loaded.
[    7.689009] initcall arcnet_init+0x0/0x50 returned 0 after 2929 usecs
[    7.695009] calling  arcnet_rfc1201_init+0x0/0x65 @ 1
[    7.700007] arcnet: RFC1201 "standard" (`a') encapsulation support loaded.
[    7.707009] initcall arcnet_rfc1201_init+0x0/0x65 returned 0 after 6835 usecs
[    7.714009] calling  com90xx_init+0x0/0xd79 @ 1
[    7.718013] arcnet: COM90xx chipset support
[    8.022900] S3: No ARCnet cards found.
[    8.027017] initcall com90xx_init+0x0/0xd79 returned -5 after 301758 usecs
[    8.034010] initcall com90xx_init+0x0/0xd79 returned with error code -5 
[    8.040009] calling  arc_rimi_init+0x0/0x41f @ 1
[    8.045023] arcnet: RIM I (entirely mem-mapped) support
[    8.050008] E-mail me if you actually test the RIM I driver, please!
[    8.056009]  arc%d: Given: node 00h, shmem 0h, irq 0
[    8.061008]  arc%d: No autoprobe for RIM I; you must specify the shmem and irq!
[    8.069019] initcall arc_rimi_init+0x0/0x41f returned -5 after 23437 usecs
[    8.075010] initcall arc_rimi_init+0x0/0x41f returned with error code -5 
[    8.082009] calling  pegasus_init+0x0/0x126 @ 1
[    8.087008] pegasus: v0.6.14 (2006/09/27), Pegasus/Pegasus II USB Ethernet driver
[    8.094065] usbcore: registered new interface driver pegasus
[    8.100012] initcall pegasus_init+0x0/0x126 returned 0 after 12695 usecs
[    8.107010] calling  strip_init_driver+0x0/0x57 @ 1
[    8.111008] STRIP: Version 1.3A-STUART.CHESHIRE (unlimited channels)
[    8.118015] initcall strip_init_driver+0x0/0x57 returned 0 after 6835 usecs
[    8.125010] calling  init_netconsole+0x0/0x1af @ 1
[    8.129010] console [netcon0] enabled
[    8.133008] netconsole: network logging started
[    8.138010] initcall init_netconsole+0x0/0x1af returned 0 after 8789 usecs
[    8.144010] calling  spi_transport_init+0x0/0x27 @ 1
[    8.150065] initcall spi_transport_init+0x0/0x27 returned 0 after 976 usecs
[    8.156012] calling  fc_transport_init+0x0/0x43 @ 1
[    8.162069] initcall fc_transport_init+0x0/0x43 returned 0 after 976 usecs
[    8.168010] calling  sas_transport_init+0x0/0x9f @ 1
[    8.174100] initcall sas_transport_init+0x0/0x9f returned 0 after 976 usecs
[    8.181010] calling  scsi_dh_init+0x0/0x34 @ 1
[    8.185010] initcall scsi_dh_init+0x0/0x34 returned 0 after 0 usecs
[    8.192009] calling  clariion_init+0x0/0x2c @ 1
[    8.196008] emc: device handler registered
[    8.200009] initcall clariion_init+0x0/0x2c returned 0 after 3906 usecs
[    8.207009] calling  ahc_linux_init+0x0/0x61 @ 1
[    8.212068] initcall ahc_linux_init+0x0/0x61 returned 0 after 976 usecs
[    8.218010] calling  init_osst+0x0/0x10f @ 1
[    8.222075] osst :I: Tape driver with OnStream support version 0.99.4
[    8.222077] osst :I: $Id: osst.c,v 1.73 2005/01/01 21:13:34 wriede Exp $
[    8.236071] Driver 'osst' needs updating - please use bus_type methods
[    8.242067] initcall init_osst+0x0/0x10f returned 0 after 19531 usecs
[    8.248027] calling  init_sd+0x0/0xdb @ 1
[    8.253069] Driver 'sd' needs updating - please use bus_type methods
[    8.259066] initcall init_sd+0x0/0xdb returned 0 after 6835 usecs
[    8.265038] calling  init_ch_module+0x0/0x8c @ 1
[    8.270008] SCSI Media Changer driver v0.25 
[    8.274065] Driver 'ch' needs updating - please use bus_type methods
[    8.280067] initcall init_ch_module+0x0/0x8c returned 0 after 9765 usecs
[    8.287009] calling  ahci_init+0x0/0x16 @ 1
[    8.291075] initcall ahci_init+0x0/0x16 returned 0 after 0 usecs
[    8.297010] calling  piix_init+0x0/0x24 @ 1
[    8.301065] initcall piix_init+0x0/0x24 returned 0 after 0 usecs
[    8.307012] calling  pdc_ata_init+0x0/0x16 @ 1
[    8.312065] initcall pdc_ata_init+0x0/0x16 returned 0 after 0 usecs
[    8.318010] calling  svia_init+0x0/0x16 @ 1
[    8.322065] initcall svia_init+0x0/0x16 returned 0 after 0 usecs
[    8.328010] calling  vsc_sata_init+0x0/0x16 @ 1
[    8.333065] initcall vsc_sata_init+0x0/0x16 returned 0 after 0 usecs
[    8.339010] calling  nv_init+0x0/0x16 @ 1
[    8.343065] initcall nv_init+0x0/0x16 returned 0 after 0 usecs
[    8.349010] calling  uli_init+0x0/0x16 @ 1
[    8.353065] initcall uli_init+0x0/0x16 returned 0 after 0 usecs
[    8.359010] calling  inic_init+0x0/0x16 @ 1
[    8.363065] initcall inic_init+0x0/0x16 returned 0 after 0 usecs
[    8.369010] calling  amd_init+0x0/0x16 @ 1
[    8.373023] pata_amd 0000:00:06.0: version 0.4.1
[    8.374075] pata_amd 0000:00:06.0: setting latency timer to 64
[    8.375080] scsi0 : pata_amd
[    8.377161] scsi1 : pata_amd
[    8.378101] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[    8.379017] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[    8.539029] ata1.00: ATA-6: HDS722525VLAT80, V36OA60A, max UDMA/100
[    8.545010] ata1.00: 488397168 sectors, multi 1: LBA48 
[    8.550029] ata1: nv_mode_filter: 0x3f39f&0x3f07f->0x3f01f, BIOS=0x3f000 (0xc60000c0) ACPI=0x0
[    8.570043] ata1.00: configured for UDMA/100
[    8.574012] async_waiting @ 9
[    8.575009] async_continuing @ 9 after 0 usec
[    8.576162] scsi 0:0:0:0: Direct-Access     ATA      HDS722525VLAT80  V36O PQ: 0 ANSI: 5
[    8.578079] sd 0:0:0:0: [sda] 488397168 512-byte hardware sectors: (250 GB/232 GiB)
[    8.579041] sd 0:0:0:0: [sda] Write Protect is off
[    8.580010] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    8.581067] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    8.582113] sd 0:0:0:0: [sda] 488397168 512-byte hardware sectors: (250 GB/232 GiB)
[    8.583036] sd 0:0:0:0: [sda] Write Protect is off
[    8.584009] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    8.585060] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    8.586011]  sda: sda1 sda2 sda3 < sda5 sda6 sda7 sda8 sda9 sda10 >
[    8.676041] sd 0:0:0:0: [sda] Attached SCSI disk
[    8.678020] async_waiting @ 9
[    8.679009] async_continuing @ 9 after 0 usec
[    8.845243] ata2.01: ATAPI: DVDRW IDE 16X, VER A079, max UDMA/66
[    8.851030] ata2: nv_mode_filter: 0x1f39f&0x707f->0x701f, BIOS=0x7000 (0xc60000c0) ACPI=0x0
[    8.866193] ata2.01: configured for UDMA/33
[    8.872088] async_waiting @ 9
[    8.873009] async_continuing @ 9 after 0 usec
[    8.874121] scsi 1:0:1:0: CD-ROM            DVDRW    IDE 16X          A079 PQ: 0 ANSI: 5
[    8.876118] initcall amd_init+0x0/0x16 returned 0 after 491211 usecs
[    8.882011] calling  atiixp_init+0x0/0x16 @ 1
[    8.887089] initcall atiixp_init+0x0/0x16 returned 0 after 976 usecs
[    8.893011] calling  cmd640_init+0x0/0x16 @ 1
[    8.897106] initcall cmd640_init+0x0/0x16 returned 0 after 0 usecs
[    8.903010] calling  cmd64x_init+0x0/0x16 @ 1
[    8.908066] initcall cmd64x_init+0x0/0x16 returned 0 after 0 usecs
[    8.914010] calling  cs5520_init+0x0/0x16 @ 1
[    8.918077] initcall cs5520_init+0x0/0x16 returned 0 after 0 usecs
[    8.925010] calling  hpt37x_init+0x0/0x16 @ 1
[    8.929065] initcall hpt37x_init+0x0/0x16 returned 0 after 0 usecs
[    8.935010] calling  hpt3x2n_init+0x0/0x16 @ 1
[    8.940066] initcall hpt3x2n_init+0x0/0x16 returned 0 after 0 usecs
[    8.946010] calling  it821x_init+0x0/0x16 @ 1
[    8.950075] initcall it821x_init+0x0/0x16 returned 0 after 0 usecs
[    8.956010] calling  ns87415_init+0x0/0x16 @ 1
[    8.961066] initcall ns87415_init+0x0/0x16 returned 0 after 0 usecs
[    8.967010] calling  oldpiix_init+0x0/0x16 @ 1
[    8.972068] initcall oldpiix_init+0x0/0x16 returned 0 after 976 usecs
[    8.978011] calling  qdi_init+0x0/0x1b4 @ 1
[    8.982011] initcall qdi_init+0x0/0x1b4 returned -19 after 0 usecs
[    8.988010] calling  serverworks_init+0x0/0x16 @ 1
[    8.993067] initcall serverworks_init+0x0/0x16 returned 0 after 0 usecs
[    9.000011] calling  sil680_init+0x0/0x16 @ 1
[    9.004066] initcall sil680_init+0x0/0x16 returned 0 after 0 usecs
[    9.010010] calling  sis_init+0x0/0x16 @ 1
[    9.014066] initcall sis_init+0x0/0x16 returned 0 after 0 usecs
[    9.020010] calling  i2o_iop_init+0x0/0x41 @ 1
[    9.025008] I2O subsystem v1.325
[    9.028009] i2o: max drivers = 8
[    9.031077] initcall i2o_iop_init+0x0/0x41 returned 0 after 5859 usecs
[    9.038011] calling  i2o_config_init+0x0/0x82 @ 1
[    9.043008] I2O Configuration OSM v1.323
[    9.047131] initcall i2o_config_init+0x0/0x82 returned 0 after 3906 usecs
[    9.053011] calling  i2o_bus_init+0x0/0x37 @ 1
[    9.058009] I2O Bus Adapter OSM v1.317
[    9.062065] initcall i2o_bus_init+0x0/0x37 returned 0 after 3906 usecs
[    9.068011] calling  fusion_init+0x0/0x10c @ 1
[    9.073009] Fusion MPT base driver 3.04.07
[    9.077008] Copyright (c) 1999-2008 LSI Corporation
[    9.081031] initcall fusion_init+0x0/0x10c returned 0 after 8789 usecs
[    9.088012] calling  mptspi_init+0x0/0xb9 @ 1
[    9.092009] Fusion MPT SPI Host driver 3.04.07
[    9.097066] initcall mptspi_init+0x0/0xb9 returned 0 after 4882 usecs
[    9.103011] calling  mptsas_init+0x0/0xd1 @ 1
[    9.108009] Fusion MPT SAS Host driver 3.04.07
[    9.112065] initcall mptsas_init+0x0/0xd1 returned 0 after 3906 usecs
[    9.118011] calling  uio_init+0x0/0x7 @ 1
[    9.122010] initcall uio_init+0x0/0x7 returned 0 after 0 usecs
[    9.128011] calling  sercos3_init_module+0x0/0x16 @ 1
[    9.133066] initcall sercos3_init_module+0x0/0x16 returned 0 after 0 usecs
[    9.140011] calling  spidev_init+0x0/0x82 @ 1
[    9.145070] initcall spidev_init+0x0/0x82 returned 0 after 976 usecs
[    9.151014] calling  uwb_subsys_init+0x0/0x46 @ 1
[    9.156066] initcall uwb_subsys_init+0x0/0x46 returned 0 after 0 usecs
[    9.162011] calling  wlp_subsys_init+0x0/0x7 @ 1
[    9.167011] initcall wlp_subsys_init+0x0/0x7 returned 0 after 0 usecs
[    9.173011] calling  hwarc_driver_init+0x0/0x16 @ 1
[    9.178066] usbcore: registered new interface driver hwa-rc
[    9.184013] initcall hwarc_driver_init+0x0/0x16 returned 0 after 5859 usecs
[    9.191011] calling  ehci_hcd_init+0x0/0xbe @ 1
[    9.195009] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    9.202010] ehci_hcd: block sizes: qh 128 qtd 96 itd 160 sitd 96
[    9.208028] ehci_hcd 0000:00:02.1: can't find IRQ for PCI INT B; probably buggy MP table
[    9.209034] ehci_hcd 0000:00:02.1: Found HC with no IRQ.  Check BIOS/PCI 0000:00:02.1 setup!
[    9.210011] ehci_hcd 0000:00:02.1: init 0000:00:02.1 fail, -19
[    9.211079] initcall ehci_hcd_init+0x0/0xbe returned 0 after 15625 usecs
[    9.218011] calling  isp116x_init+0x0/0x38 @ 1
[    9.222010] 116x: driver isp116x-hcd, 03 Nov 2005
[    9.227069] initcall isp116x_init+0x0/0x38 returned 0 after 4882 usecs
[    9.233011] calling  ohci_hcd_mod_init+0x0/0xb1 @ 1
[    9.238029] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    9.244010] ohci_hcd: block sizes: ed 64 td 64
[    9.249028] ohci_hcd 0000:00:02.0: can't find IRQ for PCI INT A; probably buggy MP table
[    9.250025] ohci_hcd 0000:00:02.0: Found HC with no IRQ.  Check BIOS/PCI 0000:00:02.0 setup!
[    9.251011] ohci_hcd 0000:00:02.0: init 0000:00:02.0 fail, -19
[    9.252125] initcall ohci_hcd_mod_init+0x0/0xb1 returned 0 after 13671 usecs
[    9.259016] calling  uhci_hcd_init+0x0/0x107 @ 1
[    9.264010] uhci_hcd: USB Universal Host Controller Interface driver
[    9.270074] initcall uhci_hcd_init+0x0/0x107 returned 0 after 5859 usecs
[    9.277011] calling  r8a66597_init+0x0/0x38 @ 1
[    9.282036] r8a66597_hcd: driver r8a66597_hcd, 10 Apr 2008
[    9.287069] initcall r8a66597_init+0x0/0x38 returned 0 after 4882 usecs
[    9.294011] calling  isp1760_init+0x0/0x2a @ 1
[    9.299071] initcall isp1760_init+0x0/0x2a returned 0 after 976 usecs
[    9.305019] calling  wusbcore_init+0x0/0x66 @ 1
[    9.309030] initcall wusbcore_init+0x0/0x66 returned 0 after 0 usecs
[    9.316011] calling  cbaf_driver_init+0x0/0x16 @ 1
[    9.321069] usbcore: registered new interface driver wusb-cbaf
[    9.326013] initcall cbaf_driver_init+0x0/0x16 returned 0 after 4882 usecs
[    9.333029] calling  usb_stor_init+0x0/0x42 @ 1
[    9.338009] Initializing USB Mass Storage driver...
[    9.343069] usbcore: registered new interface driver usb-storage
[    9.349018] USB Mass Storage support registered.
[    9.353011] initcall usb_stor_init+0x0/0x42 returned 0 after 14648 usecs
[    9.360011] calling  usb_usual_init+0x0/0x30 @ 1
[    9.365067] usbcore: registered new interface driver libusual
[    9.370013] initcall usb_usual_init+0x0/0x30 returned 0 after 5859 usecs
[    9.377019] calling  adu_init+0x0/0x7b @ 1
[    9.381009] drivers/usb/misc/adutux.c :  adu_init : enter 
[    9.387060] usbcore: registered new interface driver adutux
[    9.392010] adutux adutux (see www.ontrak.net) v0.0.13
[    9.397009] adutux is an experimental driver. Use at your own risk
[    9.403009] drivers/usb/misc/adutux.c :  adu_init : leave, return value 0 
[    9.410011] initcall adu_init+0x0/0x7b returned 0 after 28320 usecs
[    9.416011] calling  appledisplay_init+0x0/0x4b @ 1
[    9.421066] usbcore: registered new interface driver appledisplay
[    9.427013] initcall appledisplay_init+0x0/0x4b returned 0 after 5859 usecs
[    9.434013] calling  cypress_init+0x0/0x2f @ 1
[    9.439066] usbcore: registered new interface driver cypress_cy7c63
[    9.445013] initcall cypress_init+0x0/0x2f returned 0 after 5859 usecs
[    9.452011] calling  emi26_init+0x0/0x16 @ 1
[    9.456066] usbcore: registered new interface driver emi26 - firmware loader
[    9.463013] initcall emi26_init+0x0/0x16 returned 0 after 6835 usecs
[    9.469011] calling  usb_idmouse_init+0x0/0x3a @ 1
[    9.474009] idmouse: 0.6:Siemens ID Mouse FingerTIP Sensor Driver
[    9.480066] usbcore: registered new interface driver idmouse
[    9.486013] initcall usb_idmouse_init+0x0/0x3a returned 0 after 11718 usecs
[    9.493011] calling  usb_lcd_init+0x0/0x2f @ 1
[    9.497066] usbcore: registered new interface driver usblcd
[    9.503013] initcall usb_lcd_init+0x0/0x2f returned 0 after 5859 usecs
[    9.509011] calling  ld_usb_init+0x0/0x2f @ 1
[    9.514049] usbcore: registered new interface driver ldusb
[    9.519013] initcall ld_usb_init+0x0/0x2f returned 0 after 5859 usecs
[    9.525011] calling  usb_led_init+0x0/0x2f @ 1
[    9.530066] usbcore: registered new interface driver usbled
[    9.535013] initcall usb_led_init+0x0/0x2f returned 0 after 4882 usecs
[    9.542011] calling  usb_rio_init+0x0/0x2d @ 1
[    9.546066] usbcore: registered new interface driver rio500
[    9.552011] rio500: v1.1:USB Rio 500 driver
[    9.556011] initcall usb_rio_init+0x0/0x2d returned 0 after 9765 usecs
[    9.563011] calling  usbtest_init+0x0/0x3b @ 1
[    9.567066] usbcore: registered new interface driver usbtest
[    9.573013] initcall usbtest_init+0x0/0x3b returned 0 after 5859 usecs
[    9.579011] calling  usb_sevseg_init+0x0/0x2f @ 1
[    9.584066] usbcore: registered new interface driver usbsevseg
[    9.590013] initcall usb_sevseg_init+0x0/0x2f returned 0 after 5859 usecs
[    9.596011] calling  i8042_init+0x0/0x33d @ 1
[    9.601069] PNP: No PS/2 controller found. Probing ports directly.
[    9.609959] serio: i8042 KBD port at 0x60,0x64 irq 1
[    9.615015] serio: i8042 AUX port at 0x60,0x64 irq 12
[    9.620018] initcall i8042_init+0x0/0x33d returned 0 after 18554 usecs
[    9.627011] calling  emu_init+0x0/0x16 @ 1
[    9.631068] initcall emu_init+0x0/0x16 returned 0 after 0 usecs
[    9.637012] calling  ns558_init+0x0/0x345 @ 1
[    9.649862] initcall ns558_init+0x0/0x345 returned 0 after 8789 usecs
[    9.656011] calling  mousedev_init+0x0/0x51 @ 1
[    9.661095] mice: PS/2 mouse device common for all mice
[    9.666012] initcall mousedev_init+0x0/0x51 returned 0 after 4882 usecs
[    9.673011] calling  joydev_init+0x0/0xf @ 1
[    9.677012] initcall joydev_init+0x0/0xf returned 0 after 0 usecs
[    9.683010] calling  evdev_init+0x0/0xf @ 1
[    9.687011] initcall evdev_init+0x0/0xf returned 0 after 0 usecs
[    9.693010] calling  atkbd_init+0x0/0x20 @ 1
[    9.698070] initcall atkbd_init+0x0/0x20 returned 0 after 976 usecs
[    9.704012] calling  lkkbd_init+0x0/0x16 @ 1
[    9.708067] initcall lkkbd_init+0x0/0x16 returned 0 after 0 usecs
[    9.714011] calling  xtkbd_init+0x0/0x16 @ 1
[    9.718066] initcall xtkbd_init+0x0/0x16 returned 0 after 976 usecs
[    9.720213] input: AT Translated Set 2 keyboard as /class/input/input0
[    9.731011] calling  a3d_init+0x0/0x16 @ 1
[    9.735069] initcall a3d_init+0x0/0x16 returned 0 after 0 usecs
[    9.741011] calling  analog_init+0x0/0xcd @ 1
[    9.746069] initcall analog_init+0x0/0xcd returned 0 after 0 usecs
[    9.752011] calling  grip_init+0x0/0x16 @ 1
[    9.756068] initcall grip_init+0x0/0x16 returned 0 after 0 usecs
[    9.762011] calling  iforce_init+0x0/0x41 @ 1
[    9.766067] usbcore: registered new interface driver iforce
[    9.772066] initcall iforce_init+0x0/0x41 returned 0 after 5859 usecs
[    9.778011] calling  interact_init+0x0/0x16 @ 1
[    9.783069] initcall interact_init+0x0/0x16 returned 0 after 0 usecs
[    9.789011] calling  warrior_init+0x0/0x16 @ 1
[    9.794067] initcall warrior_init+0x0/0x16 returned 0 after 0 usecs
[    9.800011] calling  usb_xpad_init+0x0/0x2d @ 1
[    9.805067] usbcore: registered new interface driver xpad
[    9.810011] xpad: X-Box pad driver
[    9.814011] initcall usb_xpad_init+0x0/0x2d returned 0 after 8789 usecs
[    9.820011] calling  ads7846_init+0x0/0xf @ 1
[    9.825066] initcall ads7846_init+0x0/0xf returned 0 after 0 usecs
[    9.831011] calling  gunze_init+0x0/0x16 @ 1
[    9.835066] initcall gunze_init+0x0/0x16 returned 0 after 0 usecs
[    9.841011] calling  elo_init+0x0/0x16 @ 1
[    9.845067] initcall elo_init+0x0/0x16 returned 0 after 0 usecs
[    9.851013] calling  mk712_init+0x0/0x1b7 @ 1
[    9.856012] mk712: device not present
[    9.859014] initcall mk712_init+0x0/0x1b7 returned -19 after 2929 usecs
[    9.866012] calling  pm_init+0x0/0x16 @ 1
[    9.870066] initcall pm_init+0x0/0x16 returned 0 after 0 usecs
[    9.876011] calling  touchit213_init+0x0/0x16 @ 1
[    9.880066] initcall touchit213_init+0x0/0x16 returned 0 after 0 usecs
[    9.887011] calling  tr_init+0x0/0x16 @ 1
[    9.891067] initcall tr_init+0x0/0x16 returned 0 after 0 usecs
[    9.897011] calling  pcspkr_init+0x0/0xf @ 1
[    9.901128] input: PC Speaker as /class/input/input1
[    9.914108] initcall pcspkr_init+0x0/0xf returned 0 after 13671 usecs
[    9.921012] calling  wb_module_init+0x0/0x256 @ 1
[    9.926022] wistron_btns: System unknown
[    9.929011] initcall wb_module_init+0x0/0x256 returned -19 after 2929 usecs
[    9.936011] calling  ati_remote_init+0x0/0x3c @ 1
[    9.941072] usbcore: registered new interface driver ati_remote
[    9.947011] ati_remote: 2.2.1:ATI/X10 RF USB Remote Control
[    9.953042] initcall ati_remote_init+0x0/0x3c returned 0 after 11718 usecs
[    9.959011] calling  ati_remote2_init+0x0/0x3c @ 1
[    9.964069] usbcore: registered new interface driver ati_remote2
[    9.970012] ati_remote2: ATI/Philips USB RF remote driver 0.3
[    9.976011] initcall ati_remote2_init+0x0/0x3c returned 0 after 11718 usecs
[    9.983011] calling  powermate_init+0x0/0x16 @ 1
[    9.988035] usbcore: registered new interface driver powermate
[    9.993013] initcall powermate_init+0x0/0x16 returned 0 after 5859 usecs
[   10.000020] calling  cm109_init+0x0/0xdc @ 1
[   10.004010] cm109: Keymap for Komunikate KIP1000 phone loaded
[   10.010069] usbcore: registered new interface driver cm109
[   10.015020] cm109: CM109 phone driver: 20080805 (C) Alfred E. Heggestad
[   10.022011] initcall cm109_init+0x0/0xdc returned 0 after 17578 usecs
[   10.028011] calling  uinput_init+0x0/0xf @ 1
[   10.033072] initcall uinput_init+0x0/0xf returned 0 after 0 usecs
[   10.039011] calling  ds1286_init+0x0/0xf @ 1
[   10.043066] initcall ds1286_init+0x0/0xf returned 0 after 0 usecs
[   10.049011] calling  ds1307_init+0x0/0x11 @ 1
[   10.054067] i2c-core: driver [rtc-ds1307] registered
[   10.058012] initcall ds1307_init+0x0/0x11 returned 0 after 4882 usecs
[   10.065011] calling  ds1390_init+0x0/0xf @ 1
[   10.069067] initcall ds1390_init+0x0/0xf returned 0 after 0 usecs
[   10.075011] calling  ds1511_rtc_init+0x0/0xf @ 1
[   10.080067] initcall ds1511_rtc_init+0x0/0xf returned 0 after 0 usecs
[   10.086011] calling  ds1553_init+0x0/0xf @ 1
[   10.091066] initcall ds1553_init+0x0/0xf returned 0 after 0 usecs
[   10.097011] calling  ds1672_init+0x0/0x11 @ 1
[   10.101067] i2c-core: driver [rtc-ds1672] registered
[   10.106011] initcall ds1672_init+0x0/0x11 returned 0 after 4882 usecs
[   10.112011] calling  ds3234_init+0x0/0xf @ 1
[   10.117067] initcall ds3234_init+0x0/0xf returned 0 after 0 usecs
[   10.123013] calling  m41t94_init+0x0/0xf @ 1
[   10.127067] initcall m41t94_init+0x0/0xf returned 0 after 0 usecs
[   10.133011] calling  m48t86_rtc_init+0x0/0xf @ 1
[   10.138066] initcall m48t86_rtc_init+0x0/0xf returned 0 after 0 usecs
[   10.144011] calling  bq4802_init+0x0/0xf @ 1
[   10.148067] initcall bq4802_init+0x0/0xf returned 0 after 0 usecs
[   10.154011] calling  max6900_init+0x0/0x11 @ 1
[   10.159066] i2c-core: driver [rtc-max6900] registered
[   10.164011] initcall max6900_init+0x0/0x11 returned 0 after 4882 usecs
[   10.170011] calling  max6902_init+0x0/0xf @ 1
[   10.175067] initcall max6902_init+0x0/0xf returned 0 after 0 usecs
[   10.181011] calling  pcf8583_init+0x0/0x11 @ 1
[   10.185066] i2c-core: driver [pcf8583] registered
[   10.190012] initcall pcf8583_init+0x0/0x11 returned 0 after 4882 usecs
[   10.197011] calling  rs5c372_init+0x0/0x11 @ 1
[   10.201067] i2c-core: driver [rtc-rs5c372] registered
[   10.206012] initcall rs5c372_init+0x0/0x11 returned 0 after 4882 usecs
[   10.213011] calling  twl4030_rtc_init+0x0/0xf @ 1
[   10.217066] initcall twl4030_rtc_init+0x0/0xf returned 0 after 0 usecs
[   10.224011] calling  i2c_ali1535_init+0x0/0x16 @ 1
[   10.229067] initcall i2c_ali1535_init+0x0/0x16 returned 0 after 0 usecs
[   10.235011] calling  i2c_sch_init+0x0/0x16 @ 1
[   10.240065] initcall i2c_sch_init+0x0/0x16 returned 0 after 0 usecs
[   10.246011] calling  nforce2_init+0x0/0x16 @ 1
[   10.250156] i2c-adapter i2c-0: adapter [SMBus nForce2 adapter at 4c00] registered
[   10.251033] i2c-adapter i2c-0: nForce2 SMBus adapter at 0x4c00
[   10.252078] i2c-adapter i2c-1: adapter [SMBus nForce2 adapter at 4c40] registered
[   10.253011] i2c-adapter i2c-1: nForce2 SMBus adapter at 0x4c40
[   10.254072] initcall nforce2_init+0x0/0x16 returned 0 after 3906 usecs
[   10.261029] calling  ocores_i2c_init+0x0/0xf @ 1
[   10.265073] initcall ocores_i2c_init+0x0/0xf returned 0 after 0 usecs
[   10.272027] calling  i2c_parport_init+0x0/0x12e @ 1
[   10.276010] i2c-parport-light: adapter type unspecified
[   10.282011] initcall i2c_parport_init+0x0/0x12e returned -19 after 5859 usecs
[   10.289011] calling  i2c_pca_pf_init+0x0/0xf @ 1
[   10.293069] initcall i2c_pca_pf_init+0x0/0xf returned 0 after 976 usecs
[   10.300011] calling  ds1682_init+0x0/0x11 @ 1
[   10.304068] i2c-core: driver [ds1682] registered
[   10.309013] initcall ds1682_init+0x0/0x11 returned 0 after 4882 usecs
[   10.315017] calling  max6875_init+0x0/0x11 @ 1
[   10.320067] i2c-core: driver [max6875] registered
[   10.325020] initcall max6875_init+0x0/0x11 returned 0 after 4882 usecs
[   10.331013] calling  pcf8575_init+0x0/0x11 @ 1
[   10.336051] i2c-core: driver [pcf8575] registered
[   10.340019] initcall pcf8575_init+0x0/0x11 returned 0 after 4882 usecs
[   10.347015] calling  w1_init+0x0/0x90 @ 1
[   10.351010] Driver for 1-wire Dallas network protocol.
[   10.356082] initcall w1_init+0x0/0x90 returned 0 after 4882 usecs
[   10.362011] calling  ds_init+0x0/0x40 @ 1
[   10.366066] usbcore: registered new interface driver DS9490R
[   10.372013] initcall ds_init+0x0/0x40 returned 0 after 5859 usecs
[   10.378011] calling  sensors_ds2482_init+0x0/0x11 @ 1
[   10.383067] i2c-core: driver [ds2482] registered
[   10.387019] initcall sensors_ds2482_init+0x0/0x11 returned 0 after 3906 usecs
[   10.395011] calling  w1_ds2760_init+0x0/0x23 @ 1
[   10.399010] 1-Wire driver for the DS2760 battery monitor  chip  - (c) 2004-2005, Szabolcs Gyurko
[   10.408012] initcall w1_ds2760_init+0x0/0x23 returned 0 after 8789 usecs
[   10.415011] calling  w1_bq27000_init+0x0/0x1d @ 1
[   10.419011] initcall w1_bq27000_init+0x0/0x1d returned 0 after 0 usecs
[   10.426011] calling  pcwd_init_module+0x0/0x14 @ 1
[   10.432035] initcall pcwd_init_module+0x0/0x14 returned -19 after 976 usecs
[   10.438012] calling  acq_init+0x0/0x50 @ 1
[   10.442010] WDT driver for Acquire single board computer initialising.
[   10.449072] acquirewdt: I/O address 0x0043 already in use
[   10.455019] acquirewdt: probe of acquirewdt failed with error -5
[   10.460012] initcall acq_init+0x0/0x50 returned 0 after 17578 usecs
[   10.467011] calling  advwdt_init+0x0/0x50 @ 1
[   10.471010] WDT driver for Advantech single board computer initialising.
[   10.478105] advantechwdt: initialized. timeout=60 sec (nowayout=1)
[   10.484013] initcall advwdt_init+0x0/0x50 returned 0 after 12695 usecs
[   10.491042] calling  alim7101_wdt_init+0x0/0x16d @ 1
[   10.496010] alim7101_wdt: Steve Hill <steve@navaho.co.uk>.
[   10.501016] alim7101_wdt: ALi M7101 PMU not present - WDT not set
[   10.507012] initcall alim7101_wdt_init+0x0/0x16d returned -16 after 10742 usecs
[   10.514012] initcall alim7101_wdt_init+0x0/0x16d returned with error code -16 
[   10.522011] calling  wafwdt_init+0x0/0x147 @ 1
[   10.526010] WDT driver for Wafer 5823 single board computer initialising.
[   10.533014] Wafer 5823 WDT: I/O address 0x0443 already in use
[   10.539014] initcall wafwdt_init+0x0/0x147 returned -5 after 12695 usecs
[   10.545012] initcall wafwdt_init+0x0/0x147 returned with error code -5 
[   10.552011] calling  watchdog_init+0x0/0x23c @ 1
[   10.556015] initcall watchdog_init+0x0/0x23c returned -19 after 0 usecs
[   10.563012] calling  iTCO_wdt_init_module+0x0/0x56 @ 1
[   10.568010] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05
[   10.574079] iTCO_wdt: No card detected
[   10.578025] initcall iTCO_wdt_init_module+0x0/0x56 returned 0 after 9765 usecs
[   10.585012] calling  iTCO_vendor_init_module+0x0/0x17 @ 1
[   10.590010] iTCO_vendor_support: vendor-support=0
[   10.595012] initcall iTCO_vendor_init_module+0x0/0x17 returned 0 after 4882 usecs
[   10.602012] calling  it8712f_wdt_init+0x0/0x1a9 @ 1
[   10.607043] it8712f_wdt: Found IT8712F chip revision 7 - using DogFood address 0x201
[   10.615014] it8712f_wdt: disabling watchdog timer
[   10.620033] it8712f_wdt: cannot register miscdev on minor=130 (err=-16)
[   10.626014] initcall it8712f_wdt_init+0x0/0x1a9 returned -16 after 18554 usecs
[   10.633012] initcall it8712f_wdt_init+0x0/0x1a9 returned with error code -16 
[   10.640013] calling  sc1200wdt_init+0x0/0x161 @ 1
[   10.645010] sc1200wdt: build 20020303
[   10.649068] sc1200wdt: io parameter must be specified
[   10.654067] initcall sc1200wdt_init+0x0/0x161 returned -22 after 8789 usecs
[   10.661023] initcall sc1200wdt_init+0x0/0x161 returned with error code -22 
[   10.668012] calling  sch311x_wdt_init+0x0/0x136 @ 1
[   10.673030] initcall sch311x_wdt_init+0x0/0x136 returned -19 after 0 usecs
[   10.679012] calling  watchdog_init+0x0/0xa5 @ 1
[   10.684012] epx_c3: cannot register miscdev on minor=130 (err=-16)
[   10.690014] initcall watchdog_init+0x0/0xa5 returned -16 after 5859 usecs
[   10.697012] initcall watchdog_init+0x0/0xa5 returned with error code -16 
[   10.704012] calling  isdn_init+0x0/0x273 @ 1
[   10.709198] ISDN subsystem Rev: 1.1.2.3/1.1.2.3/1.1.2.2/1.1.2.3/none/1.1.2.2
[   10.716014] initcall isdn_init+0x0/0x273 returned 0 after 7812 usecs
[   10.723012] calling  divert_init+0x0/0x59 @ 1
[   10.727029] dss1_divert module successfully installed
[   10.733012] initcall divert_init+0x0/0x59 returned 0 after 5859 usecs
[   10.739012] calling  sc_init+0x0/0xed4 @ 1
[   10.743011] SpellCaster ISA ISDN Adapter Driver rev. 2.0b1
[   10.749010] Copyright (C) 1996 SpellCaster Telecommunications Inc.
[   10.755267] Failed to find any adapters, driver unloaded
[   10.761012] initcall sc_init+0x0/0xed4 returned -19 after 17578 usecs
[   10.767012] calling  edac_init+0x0/0xa7 @ 1
[   10.771010] EDAC MC: Ver: 2.1.0 Mar 18 2009
[   10.776070] initcall edac_init+0x0/0xa7 returned 0 after 4882 usecs
[   10.782012] calling  i82975x_init+0x0/0x85 @ 1
[   10.787068] initcall i82975x_init+0x0/0x85 returned -19 after 976 usecs
[   10.793012] calling  i82860_init+0x0/0x85 @ 1
[   10.798079] initcall i82860_init+0x0/0x85 returned -19 after 976 usecs
[   10.804012] calling  r82600_init+0x0/0x29 @ 1
[   10.809070] initcall r82600_init+0x0/0x29 returned 0 after 0 usecs
[   10.815012] calling  pci_eisa_init_module+0x0/0x16 @ 1
[   10.820068] initcall pci_eisa_init_module+0x0/0x16 returned 0 after 0 usecs
[   10.827012] calling  virtual_eisa_root_init+0x0/0x48 @ 1
[   10.832068] EISA: Probing bus 0 at eisa.0
[   10.836069] initcall virtual_eisa_root_init+0x0/0x48 returned -1 after 3906 usecs
[   10.844013] initcall virtual_eisa_root_init+0x0/0x48 returned with error code -1 
[   10.851012] calling  cpufreq_stats_init+0x0/0x7a @ 1
[   10.856013] initcall cpufreq_stats_init+0x0/0x7a returned 0 after 0 usecs
[   10.863012] calling  cpufreq_gov_userspace_init+0x0/0xf @ 1
[   10.868013] initcall cpufreq_gov_userspace_init+0x0/0xf returned 0 after 0 usecs
[   10.876015] calling  clevo_mail_led_init+0x0/0x7e @ 1
[   10.881015] initcall clevo_mail_led_init+0x0/0x7e returned -19 after 0 usecs
[   10.888012] calling  pca955x_leds_init+0x0/0x11 @ 1
[   10.893068] i2c-core: driver [leds-pca955x] registered
[   10.898016] initcall pca955x_leds_init+0x0/0x11 returned 0 after 4882 usecs
[   10.905012] calling  timer_trig_init+0x0/0xf @ 1
[   10.909013] initcall timer_trig_init+0x0/0xf returned 0 after 0 usecs
[   10.916012] calling  dcdrbu_init+0x0/0x105 @ 1
[   10.920067] initcall dcdrbu_init+0x0/0x105 returned 0 after 0 usecs
[   10.926012] calling  hifn_init+0x0/0x19 @ 1
[   10.931011] HIFN supports only 32-bit addresses.
[   10.935012] initcall hifn_init+0x0/0x19 returned -22 after 3906 usecs
[   10.942012] initcall hifn_init+0x0/0x19 returned with error code -22 
[   10.948012] calling  hid_init+0x0/0x3d @ 1
[   10.952069] initcall hid_init+0x0/0x3d returned 0 after 0 usecs
[   10.958012] calling  usb_mouse_init+0x0/0x2d @ 1
[   10.963069] usbcore: registered new interface driver usbmouse
[   10.969012] usbmouse: v1.6:USB HID Boot Protocol mouse driver
[   10.974012] initcall usb_mouse_init+0x0/0x2d returned 0 after 10742 usecs
[   10.981012] calling  virtio_pci_init+0x0/0x44 @ 1
[   10.986068] initcall virtio_pci_init+0x0/0x44 returned 0 after 0 usecs
[   10.992013] calling  flow_cache_init+0x0/0x13e @ 1
[   10.997155] initcall flow_cache_init+0x0/0x13e returned 0 after 0 usecs
[   11.004012] calling  llc_init+0x0/0x1b @ 1
[   11.008014] initcall llc_init+0x0/0x1b returned 0 after 0 usecs
[   11.014012] calling  snap_init+0x0/0x2a @ 1
[   11.018014] initcall snap_init+0x0/0x2a returned 0 after 0 usecs
[   11.024012] calling  rif_init+0x0/0x6b @ 1
[   11.028038] initcall rif_init+0x0/0x6b returned 0 after 0 usecs
[   11.034012] calling  blackhole_module_init+0x0/0xf @ 1
[   11.039013] initcall blackhole_module_init+0x0/0xf returned 0 after 0 usecs
[   11.046012] calling  gred_module_init+0x0/0xf @ 1
[   11.051012] initcall gred_module_init+0x0/0xf returned 0 after 0 usecs
[   11.057012] calling  multiq_module_init+0x0/0xf @ 1
[   11.062013] initcall multiq_module_init+0x0/0xf returned 0 after 0 usecs
[   11.069012] calling  init_rsvp+0x0/0xf @ 1
[   11.073012] initcall init_rsvp+0x0/0xf returned 0 after 0 usecs
[   11.079012] calling  init_tcindex+0x0/0xf @ 1
[   11.083012] initcall init_tcindex+0x0/0xf returned 0 after 0 usecs
[   11.089012] calling  nfnetlink_init+0x0/0x4f @ 1
[   11.094011] Netfilter messages via NETLINK v0.30.
[   11.098022] initcall nfnetlink_init+0x0/0x4f returned 0 after 3906 usecs
[   11.105012] calling  nfnetlink_log_init+0x0/0x8a @ 1
[   11.110024] initcall nfnetlink_log_init+0x0/0x8a returned 0 after 0 usecs
[   11.117013] calling  sysctl_ipv4_init+0x0/0x3f @ 1
[   11.121321] initcall sysctl_ipv4_init+0x0/0x3f returned 0 after 976 usecs
[   11.128012] calling  ah4_init+0x0/0x5a @ 1
[   11.133014] initcall ah4_init+0x0/0x5a returned 0 after 0 usecs
[   11.138012] calling  esp4_init+0x0/0x5a @ 1
[   11.143013] initcall esp4_init+0x0/0x5a returned 0 after 0 usecs
[   11.149012] calling  ipcomp4_init+0x0/0x5a @ 1
[   11.153013] initcall ipcomp4_init+0x0/0x5a returned 0 after 0 usecs
[   11.159017] calling  ipip_init+0x0/0x88 @ 1
[   11.163014] initcall ipip_init+0x0/0x88 returned 0 after 0 usecs
[   11.169013] calling  tunnel4_init+0x0/0x5a @ 1
[   11.174013] initcall tunnel4_init+0x0/0x5a returned 0 after 0 usecs
[   11.180013] calling  xfrm4_mode_tunnel_init+0x0/0x14 @ 1
[   11.185013] initcall xfrm4_mode_tunnel_init+0x0/0x14 returned 0 after 0 usecs
[   11.192014] calling  ipv4_netfilter_init+0x0/0x20 @ 1
[   11.197013] initcall ipv4_netfilter_init+0x0/0x20 returned 0 after 0 usecs
[   11.204013] calling  inet_diag_init+0x0/0x82 @ 1
[   11.209027] initcall inet_diag_init+0x0/0x82 returned 0 after 0 usecs
[   11.215013] calling  tcp_diag_init+0x0/0xf @ 1
[   11.220013] initcall tcp_diag_init+0x0/0xf returned 0 after 0 usecs
[   11.226012] calling  hybla_register+0x0/0xf @ 1
[   11.230012] TCP hybla registered
[   11.234013] initcall hybla_register+0x0/0xf returned 0 after 3906 usecs
[   11.240012] calling  htcp_register+0x0/0xf @ 1
[   11.245011] TCP htcp registered
[   11.248013] initcall htcp_register+0x0/0xf returned 0 after 2929 usecs
[   11.254013] calling  tcp_vegas_register+0x0/0x11 @ 1
[   11.259011] TCP vegas registered
[   11.262013] initcall tcp_vegas_register+0x0/0x11 returned 0 after 2929 usecs
[   11.269013] calling  tcp_yeah_register+0x0/0x11 @ 1
[   11.274011] TCP yeah registered
[   11.277013] initcall tcp_yeah_register+0x0/0x11 returned 0 after 2929 usecs
[   11.284013] calling  packet_init+0x0/0x39 @ 1
[   11.289013] NET: Registered protocol family 17
[   11.293021] initcall packet_init+0x0/0x39 returned 0 after 3906 usecs
[   11.300013] calling  ipsec_pfkey_init+0x0/0x70 @ 1
[   11.304011] NET: Registered protocol family 15
[   11.309033] initcall ipsec_pfkey_init+0x0/0x70 returned 0 after 4882 usecs
[   11.316013] calling  br_init+0x0/0xae @ 1
[   11.320151] initcall br_init+0x0/0xae returned 0 after 0 usecs
[   11.326013] calling  dsa_init_module+0x0/0x11 @ 1
[   11.330012] initcall dsa_init_module+0x0/0x11 returned 0 after 0 usecs
[   11.337012] calling  trailer_init_module+0x0/0x11 @ 1
[   11.342012] initcall trailer_init_module+0x0/0x11 returned 0 after 0 usecs
[   11.349012] calling  mv88e6060_init+0x0/0x11 @ 1
[   11.353012] initcall mv88e6060_init+0x0/0x11 returned 0 after 0 usecs
[   11.360012] calling  mv88e6131_init+0x0/0x11 @ 1
[   11.364012] initcall mv88e6131_init+0x0/0x11 returned 0 after 0 usecs
[   11.371012] calling  dsa_init_module+0x0/0xf @ 1
[   11.375069] initcall dsa_init_module+0x0/0xf returned 0 after 0 usecs
[   11.382012] calling  ipx_init+0x0/0xd2 @ 1
[   11.386129] NET: Registered protocol family 4
[   11.394040] initcall ipx_init+0x0/0xd2 returned 0 after 7812 usecs
[   11.400012] calling  atalk_init+0x0/0x77 @ 1
[   11.405011] NET: Registered protocol family 5
[   11.415051] initcall atalk_init+0x0/0x77 returned 0 after 9765 usecs
[   11.422013] calling  x25_init+0x0/0x50 @ 1
[   11.426011] NET: Registered protocol family 9
[   11.430012] X.25 for Linux Version 0.2
[   11.434050] initcall x25_init+0x0/0x50 returned 0 after 7812 usecs
[   11.440012] calling  af_rxrpc_init+0x0/0x167 @ 1
[   11.445138] NET: Registered protocol family 33
[   11.449022] initcall af_rxrpc_init+0x0/0x167 returned 0 after 4882 usecs
[   11.456012] calling  wimax_subsys_init+0x0/0x1d7 @ 1
[   11.464041] initcall wimax_subsys_init+0x0/0x1d7 returned 0 after 2929 usecs
[   11.471013] calling  update_mp_table+0x0/0x597 @ 1
[   11.476013] initcall update_mp_table+0x0/0x597 returned 0 after 0 usecs
[   11.483013] calling  lapic_insert_resource+0x0/0x45 @ 1
[   11.488014] initcall lapic_insert_resource+0x0/0x45 returned 0 after 0 usecs
[   11.495012] calling  print_ipi_mode+0x0/0x26 @ 1
[   11.499011] Using IPI Shortcut mode
[   11.503012] initcall print_ipi_mode+0x0/0x26 returned 0 after 3906 usecs
[   11.510012] calling  ioapic_insert_resources+0x0/0x42 @ 1
[   11.515013] initcall ioapic_insert_resources+0x0/0x42 returned 0 after 0 usecs
[   11.522013] calling  io_apic_bug_finalize+0x0/0x1a @ 1
[   11.527013] initcall io_apic_bug_finalize+0x0/0x1a returned 0 after 0 usecs
[   11.534013] calling  check_early_ioremap_leak+0x0/0x5e @ 1
[   11.540013] initcall check_early_ioremap_leak+0x0/0x5e returned 0 after 0 usecs
[   11.547013] calling  pat_memtype_list_init+0x0/0x23 @ 1
[   11.552023] initcall pat_memtype_list_init+0x0/0x23 returned 0 after 0 usecs
[   11.559015] calling  init_oops_id+0x0/0x40 @ 1
[   11.564013] initcall init_oops_id+0x0/0x40 returned 0 after 0 usecs
[   11.570013] calling  disable_boot_consoles+0x0/0x36 @ 1
[   11.575013] initcall disable_boot_consoles+0x0/0x36 returned 0 after 0 usecs
[   11.582013] calling  pm_qos_power_init+0x0/0xae @ 1
[   11.587154] initcall pm_qos_power_init+0x0/0xae returned 0 after 0 usecs
[   11.594013] calling  debugfs_kprobe_init+0x0/0x80 @ 1
[   11.599023] initcall debugfs_kprobe_init+0x0/0x80 returned 0 after 0 usecs
[   11.606013] calling  clear_boot_tracer+0x0/0x27 @ 1
[   11.611013] initcall clear_boot_tracer+0x0/0x27 returned 0 after 0 usecs
[   11.617013] calling  afs_init+0x0/0x183 @ 1
[   11.621011] kAFS: Red Hat AFS client v0.1 registering.
[   11.627197] initcall afs_init+0x0/0x183 returned 0 after 5859 usecs
[   11.633014] calling  random32_reseed+0x0/0x83 @ 1
[   11.638026] initcall random32_reseed+0x0/0x83 returned 0 after 0 usecs
[   11.644013] calling  pci_sysfs_init+0x0/0x44 @ 1
[   11.649178] initcall pci_sysfs_init+0x0/0x44 returned 0 after 0 usecs
[   11.655013] calling  seqgen_init+0x0/0xe @ 1
[   11.660027] initcall seqgen_init+0x0/0xe returned 0 after 0 usecs
[   11.666014] calling  scsi_complete_async_scans+0x0/0x110 @ 1
[   11.671016] initcall scsi_complete_async_scans+0x0/0x110 returned 0 after 0 usecs
[   11.679012] calling  rtc_hctosys+0x0/0x11c @ 1
[   11.683012] drivers/rtc/hctosys.c: unable to open rtc device (rtc0)
[   11.689013] initcall rtc_hctosys+0x0/0x11c returned -19 after 5859 usecs
[   11.696013] calling  edd_init+0x0/0x2e3 @ 1
[   11.701012] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[   11.707011] EDD information not available.
[   11.711013] initcall edd_init+0x0/0x2e3 returned -19 after 9765 usecs
[   11.717012] calling  memmap_init+0x0/0x8e @ 1
[   11.722074] initcall memmap_init+0x0/0x8e returned 0 after 0 usecs
[   11.728013] calling  tcp_congestion_default+0x0/0xf @ 1
[   11.733014] initcall tcp_congestion_default+0x0/0xf returned 0 after 0 usecs
[   11.740013] calling  ip_auto_config+0x0/0x835 @ 1
[   11.745020] initcall ip_auto_config+0x0/0x835 returned 0 after 0 usecs
[   11.751043] async_waiting @ 1
[   11.754012] async_continuing @ 1 after 0 usec
[   11.760078] EXT3-fs: INFO: recovery required on readonly filesystem.
[   11.766012] EXT3-fs: write access will be enabled during recovery.
[   11.808076] kjournald starting.  Commit interval 5 seconds
[   11.808076] EXT3-fs: recovery complete.
[   11.808107] EXT3-fs: mounted filesystem with ordered data mode.
[   11.808107] VFS: Mounted root (ext3 filesystem) readonly on device 8:1.
[   11.808143] async_waiting @ 1
[   11.808145] async_continuing @ 1 after 0 usec
[   11.808155] Freeing unused kernel memory: 424k freed
[   15.313101] EXT3 FS on sda1, internal journal
[   15.369046] kjournald starting.  Commit interval 5 seconds
[   15.374092] EXT3 FS on sda5, internal journal
[   15.379016] EXT3-fs: mounted filesystem with ordered data mode.
[   16.970745] IPv4 FIB: Using LC-trie version 0.408
[   17.288951] eth0: no link during initialization.
[   19.607061] eth0: link up.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] tracing/ftrace: stop {irqs,preempt}soff tracers when tracing is stopped
  2009-03-18  8:59         ` Ingo Molnar
  2009-03-18  9:18           ` Ingo Molnar
@ 2009-03-18 14:00           ` Steven Rostedt
  1 sibling, 0 replies; 10+ messages in thread
From: Steven Rostedt @ 2009-03-18 14:00 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Frederic Weisbecker, LKML




On Wed, 18 Mar 2009, Ingo Molnar wrote:
> > 
> > I tested the call to the start/stop callbacks from tracing_start() 
> > and tracing_stop() but it's not possible for now: the sched_switch 
> > tracer register/unregister his tracepoints from these callbacks, 
> > thus allocate some memory. But tracing_start/stop can be called 
> > from atomic.
> > 
> > I discussed about that with Steven on irc, and for now the v1 
> > should be applied as a temporary solution. We plan to simplify 
> > later the start/stop callbacks from each tracers that need it.
> 
> ok. Steve, could you please pick v1 up?

Will do.

-- Steve


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] tracing/ftrace: stop {irqs,preempt}soff tracers when tracing is stopped
  2009-03-18  9:18           ` Ingo Molnar
  2009-03-18  9:29             ` Ingo Molnar
@ 2009-03-18 14:31             ` Steven Rostedt
  1 sibling, 0 replies; 10+ messages in thread
From: Steven Rostedt @ 2009-03-18 14:31 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Frederic Weisbecker, LKML


On Wed, 18 Mar 2009, Ingo Molnar wrote:

> 
> * Ingo Molnar <mingo@elte.hu> wrote:
> 
> > > I discussed about that with Steven on irc, and for now the v1 
> > > should be applied as a temporary solution. We plan to simplify 
> > > later the start/stop callbacks from each tracers that need it.
> > 
> > ok. Steve, could you please pick v1 up?
> 
> Committed it after all - there's more self-test failures (reported 
> them earlier today) and i've picked up all fixlets that might fix 
> them.

OK, I'll checkout your latest and see if I can reproduce.

-- Steve


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2009-03-18 14:31 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1237325938-5240-1-git-send-email-fweisbec@gmail.com>
2009-03-17 21:46 ` [PATCH] tracing/ftrace: stop {irqs,preempt}soff tracers when tracing is stopped Steven Rostedt
2009-03-17 21:49   ` Frederic Weisbecker
2009-03-17 21:59     ` Steven Rostedt
2009-03-17 22:54       ` Frederic Weisbecker
2009-03-18  8:59         ` Ingo Molnar
2009-03-18  9:18           ` Ingo Molnar
2009-03-18  9:29             ` Ingo Molnar
2009-03-18 14:31             ` Steven Rostedt
2009-03-18 14:00           ` Steven Rostedt
2009-03-18  9:19 ` [tip:tracing/ftrace] tracing/ftrace: stop {irqs, preempt}soff " Frederic Weisbecker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox