public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* Re: only a single core (out of 8) initialized
       [not found] <alpine.DEB.1.10.0906041949030.7953@asgard>
@ 2009-06-05  3:29 ` Andrew Morton
  2009-06-05  3:52   ` david
  2009-06-05 16:47   ` david
  0 siblings, 2 replies; 4+ messages in thread
From: Andrew Morton @ 2009-06-05  3:29 UTC (permalink / raw)
  To: david
  Cc: linux-kernel, linux-acpi, Ingo Molnar, Thomas Gleixner,
	H. Peter Anvin

On Thu, 4 Jun 2009 19:52:36 -0700 (PDT) david@lang.hm wrote:

> this is 2.6.30-rc7

Were any earlier kernels OK?

>  with a patch added to debug a nv sata driver 
> incompatibility with the Intel SSDs on a tyan motherboard
> 
> on one system it sees all 8 cores, on the other system it only initializes 
> one core.
> 
> can anyone help me spot what's going wrong in the one that's only seeing a 
> single core? If I'm reading things correctly it's seeing both sockets for 
> the NUMA setup, but then only initializing one core on the first socket.

good:
	SMP: Allowing 8 CPUs, 4 hotplug CPUs

bad:	
	SMP: Allowing 1 CPUs, 0 hotplug CPUs

perhaps due to
	ACPI: No APIC-table, disabling MPS

You could have a poke around in arch/x86/kernel/smpboot.c() and find
out what happened here.  I'd be suspecting this code triggered:

        /* no processor from mptable or madt */
        if (!num_processors)
                num_processors = 1;

because ACPI doesn't like that board.

Did you look into updating the BIOS?


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

* Re: only a single core (out of 8) initialized
  2009-06-05  3:29 ` only a single core (out of 8) initialized Andrew Morton
@ 2009-06-05  3:52   ` david
  2009-06-06  1:24     ` Robert Hancock
  2009-06-05 16:47   ` david
  1 sibling, 1 reply; 4+ messages in thread
From: david @ 2009-06-05  3:52 UTC (permalink / raw)
  To: Andrew Morton
  Cc: linux-kernel, linux-acpi, Ingo Molnar, Thomas Gleixner,
	H. Peter Anvin

On Thu, 4 Jun 2009, Andrew Morton wrote:

> Subject: Re: only a single core (out of 8) initialized
> 
> On Thu, 4 Jun 2009 19:52:36 -0700 (PDT) david@lang.hm wrote:
>
>> this is 2.6.30-rc7
>
> Were any earlier kernels OK?
>
>>  with a patch added to debug a nv sata driver
>> incompatibility with the Intel SSDs on a tyan motherboard
>>
>> on one system it sees all 8 cores, on the other system it only initializes
>> one core.
>>
>> can anyone help me spot what's going wrong in the one that's only seeing a
>> single core? If I'm reading things correctly it's seeing both sockets for
>> the NUMA setup, but then only initializing one core on the first socket.
>
> good:
> 	SMP: Allowing 8 CPUs, 4 hotplug CPUs
>
> bad:
> 	SMP: Allowing 1 CPUs, 0 hotplug CPUs
>
> perhaps due to
> 	ACPI: No APIC-table, disabling MPS
>
> You could have a poke around in arch/x86/kernel/smpboot.c() and find
> out what happened here.  I'd be suspecting this code triggered:
>
>        /* no processor from mptable or madt */
>        if (!num_processors)
>                num_processors = 1;
>
> because ACPI doesn't like that board.
>
> Did you look into updating the BIOS?

this is actually the newer of the two systems. I've already escalated up 
to Tyan about the fact that this board won't see the Intel SSD drives 
(unless you hotplug the drive). I've forwarded this to them as well. their 
website does show a newer bios than what was shipped to me.

David Lang

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

* Re: only a single core (out of 8) initialized
  2009-06-05  3:29 ` only a single core (out of 8) initialized Andrew Morton
  2009-06-05  3:52   ` david
@ 2009-06-05 16:47   ` david
  1 sibling, 0 replies; 4+ messages in thread
From: david @ 2009-06-05 16:47 UTC (permalink / raw)
  To: Andrew Morton
  Cc: linux-kernel, linux-acpi, Ingo Molnar, Thomas Gleixner,
	H. Peter Anvin

On Thu, 4 Jun 2009, Andrew Morton wrote:

> On Thu, 4 Jun 2009 19:52:36 -0700 (PDT) david@lang.hm wrote:
>
>> this is 2.6.30-rc7
>
> Were any earlier kernels OK?

sorry, I missed this question.

I was running 2.6.29.1 when I noticed this problem. I haven't tried older 
kernels yet.

David Lang

>>  with a patch added to debug a nv sata driver
>> incompatibility with the Intel SSDs on a tyan motherboard
>>
>> on one system it sees all 8 cores, on the other system it only initializes
>> one core.
>>
>> can anyone help me spot what's going wrong in the one that's only seeing a
>> single core? If I'm reading things correctly it's seeing both sockets for
>> the NUMA setup, but then only initializing one core on the first socket.
>
> good:
> 	SMP: Allowing 8 CPUs, 4 hotplug CPUs
>
> bad:
> 	SMP: Allowing 1 CPUs, 0 hotplug CPUs
>
> perhaps due to
> 	ACPI: No APIC-table, disabling MPS
>
> You could have a poke around in arch/x86/kernel/smpboot.c() and find
> out what happened here.  I'd be suspecting this code triggered:
>
>        /* no processor from mptable or madt */
>        if (!num_processors)
>                num_processors = 1;
>
> because ACPI doesn't like that board.
>
> Did you look into updating the BIOS?
>
>

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

* Re: only a single core (out of 8) initialized
  2009-06-05  3:52   ` david
@ 2009-06-06  1:24     ` Robert Hancock
  0 siblings, 0 replies; 4+ messages in thread
From: Robert Hancock @ 2009-06-06  1:24 UTC (permalink / raw)
  To: david
  Cc: Andrew Morton, linux-kernel, linux-acpi, Ingo Molnar,
	Thomas Gleixner, H. Peter Anvin

david@lang.hm wrote:
> On Thu, 4 Jun 2009, Andrew Morton wrote:
> 
>> Subject: Re: only a single core (out of 8) initialized
>>
>> On Thu, 4 Jun 2009 19:52:36 -0700 (PDT) david@lang.hm wrote:
>>
>>> this is 2.6.30-rc7
>>
>> Were any earlier kernels OK?
>>
>>>  with a patch added to debug a nv sata driver
>>> incompatibility with the Intel SSDs on a tyan motherboard
>>>
>>> on one system it sees all 8 cores, on the other system it only 
>>> initializes
>>> one core.
>>>
>>> can anyone help me spot what's going wrong in the one that's only 
>>> seeing a
>>> single core? If I'm reading things correctly it's seeing both sockets 
>>> for
>>> the NUMA setup, but then only initializing one core on the first socket.
>>
>> good:
>>     SMP: Allowing 8 CPUs, 4 hotplug CPUs
>>
>> bad:
>>     SMP: Allowing 1 CPUs, 0 hotplug CPUs
>>
>> perhaps due to
>>     ACPI: No APIC-table, disabling MPS
>>
>> You could have a poke around in arch/x86/kernel/smpboot.c() and find
>> out what happened here.  I'd be suspecting this code triggered:
>>
>>        /* no processor from mptable or madt */
>>        if (!num_processors)
>>                num_processors = 1;
>>
>> because ACPI doesn't like that board.
>>
>> Did you look into updating the BIOS?
> 
> this is actually the newer of the two systems. I've already escalated up 
> to Tyan about the fact that this board won't see the Intel SSD drives 
> (unless you hotplug the drive). I've forwarded this to them as well. 
> their website does show a newer bios than what was shipped to me.

Yeah, it seems like a BIOS problem on that system. It's missing a bunch 
of the ACPI tables that the other system has.

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

end of thread, other threads:[~2009-06-06  1:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <alpine.DEB.1.10.0906041949030.7953@asgard>
2009-06-05  3:29 ` only a single core (out of 8) initialized Andrew Morton
2009-06-05  3:52   ` david
2009-06-06  1:24     ` Robert Hancock
2009-06-05 16:47   ` david

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