* stall during boot on x86-64.
@ 2005-12-14 3:22 Dave Jones
0 siblings, 0 replies; 4+ messages in thread
From: Dave Jones @ 2005-12-14 3:22 UTC (permalink / raw)
To: Linux Kernel
When I boot my EM64T, I get a slight noticable pause
really early on in boot. Booting with 'time'
shows an interesting artifact.
Kernel command line: ro root=/dev/VolGroup00/LogVol00 console=ttyS0,38400 console=tty0 time
kernel profiling enabled (shift: 1)
[ 0.000000] Initializing CPU#0
[ 0.000000] PID hash table entries: 4096 (order: 12, 131072 bytes)
[ 0.000000] time.c: Using 14.318180 MHz HPET timer.
[ 0.000000] time.c: Detected 2793.081 MHz processor.
[ 27.449661] Console: colour VGA+ 80x25
[ 28.484309] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 28.506519] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
[ 28.539543] Memory: 1014240k/1047080k available (2490k kernel code, 32456k reserved, 1664k data, 236k init)
Note the jump in the time value..
I'm not sure this is actually where the pause I see is, as the text
is buffered, but it's something I can't explain.
Dave
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: stall during boot on x86-64.
@ 2005-12-14 5:36 Pallipadi, Venkatesh
2005-12-14 7:23 ` Andi Kleen
0 siblings, 1 reply; 4+ messages in thread
From: Pallipadi, Venkatesh @ 2005-12-14 5:36 UTC (permalink / raw)
To: Dave Jones, Linux Kernel
>-----Original Message-----
>From: linux-kernel-owner@vger.kernel.org
>[mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Dave Jones
>Sent: Tuesday, December 13, 2005 7:22 PM
>To: Linux Kernel
>Subject: stall during boot on x86-64.
>
>When I boot my EM64T, I get a slight noticable pause
>really early on in boot. Booting with 'time'
>shows an interesting artifact.
>
>Kernel command line: ro root=/dev/VolGroup00/LogVol00
>console=ttyS0,38400 console=tty0 time
>kernel profiling enabled (shift: 1)
>[ 0.000000] Initializing CPU#0
>[ 0.000000] PID hash table entries: 4096 (order: 12, 131072 bytes)
>[ 0.000000] time.c: Using 14.318180 MHz HPET timer.
>[ 0.000000] time.c: Detected 2793.081 MHz processor.
>[ 27.449661] Console: colour VGA+ 80x25
>[ 28.484309] Dentry cache hash table entries: 131072 (order:
>8, 1048576 bytes)
>[ 28.506519] Inode-cache hash table entries: 65536 (order:
>7, 524288 bytes)
>[ 28.539543] Memory: 1014240k/1047080k available (2490k
>kernel code, 32456k reserved, 1664k data, 236k init)
>
>Note the jump in the time value..
May be this is just the origin of time as far as kernel is concerned.
No?
Thanks,
Venki
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: stall during boot on x86-64.
2005-12-14 5:36 Pallipadi, Venkatesh
@ 2005-12-14 7:23 ` Andi Kleen
2005-12-14 13:14 ` Dave Jones
0 siblings, 1 reply; 4+ messages in thread
From: Andi Kleen @ 2005-12-14 7:23 UTC (permalink / raw)
To: Pallipadi, Venkatesh; +Cc: linux-kernel, davej
"Pallipadi, Venkatesh" <venkatesh.pallipadi@intel.com> writes:
> >[ 0.000000] time.c: Detected 2793.081 MHz processor.
> >[ 27.449661] Console: colour VGA+ 80x25
> >[ 28.484309] Dentry cache hash table entries: 131072 (order:
> >8, 1048576 bytes)
> >[ 28.506519] Inode-cache hash table entries: 65536 (order:
> >7, 524288 bytes)
> >[ 28.539543] Memory: 1014240k/1047080k available (2490k
> >kernel code, 32456k reserved, 1664k data, 236k init)
> >
> >Note the jump in the time value..
>
> May be this is just the origin of time as far as kernel is concerned.
> No?
It is. Before that the timer interrupt doesn't run and jiffies won't
increase.
-Andi
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: stall during boot on x86-64.
2005-12-14 7:23 ` Andi Kleen
@ 2005-12-14 13:14 ` Dave Jones
0 siblings, 0 replies; 4+ messages in thread
From: Dave Jones @ 2005-12-14 13:14 UTC (permalink / raw)
To: Andi Kleen; +Cc: Pallipadi, Venkatesh, linux-kernel
On Wed, Dec 14, 2005 at 08:23:29AM +0100, Andi Kleen wrote:
> "Pallipadi, Venkatesh" <venkatesh.pallipadi@intel.com> writes:
>
> > >[ 0.000000] time.c: Detected 2793.081 MHz processor.
> > >[ 27.449661] Console: colour VGA+ 80x25
> > >[ 28.484309] Dentry cache hash table entries: 131072 (order:
> > >8, 1048576 bytes)
> > >[ 28.506519] Inode-cache hash table entries: 65536 (order:
> > >7, 524288 bytes)
> > >[ 28.539543] Memory: 1014240k/1047080k available (2490k
> > >kernel code, 32456k reserved, 1664k data, 236k init)
> > >
> > >Note the jump in the time value..
> >
> > May be this is just the origin of time as far as kernel is concerned.
> > No?
>
> It is. Before that the timer interrupt doesn't run and jiffies won't
> increase.
Makes sense now. After sleeping on it, I think the stall I see
is caused by framebuffer console. I'll poke some more at it
this evening.
Dave
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2005-12-14 13:14 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-14 3:22 stall during boot on x86-64 Dave Jones
-- strict thread matches above, loose matches on Subject: below --
2005-12-14 5:36 Pallipadi, Venkatesh
2005-12-14 7:23 ` Andi Kleen
2005-12-14 13:14 ` Dave Jones
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox