* #define ACPI_MAX_TABLES 256
@ 2003-10-03 17:56 Brown, Len
[not found] ` <BF1FE1855350A0479097B3A0D2A80EE0CC8753-N2PTB0HCzHJF3Yvz3xaN/VDQ4js95KgL@public.gmane.org>
0 siblings, 1 reply; 5+ messages in thread
From: Brown, Len @ 2003-10-03 17:56 UTC (permalink / raw)
To: Jesse Barnes, Grover, Andrew, Bjorn Helgaas, Moore, Robert
Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Anybody know where the value 256 came from?
(looks like we used to define ACPI_MAX_TABLES as ACPI_TABLE_COUNT about
a year ago)
We use ACPI_MAX_TABLES to limit how many RSDT or XSDT entries we look
at, but I didn't see any limit in the spec, so I was wondering if this
came from some practical experience.
Thanks,
-Len
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: #define ACPI_MAX_TABLES 256
[not found] ` <BF1FE1855350A0479097B3A0D2A80EE0CC8753-N2PTB0HCzHJF3Yvz3xaN/VDQ4js95KgL@public.gmane.org>
@ 2003-10-06 21:34 ` Bjorn Helgaas
0 siblings, 0 replies; 5+ messages in thread
From: Bjorn Helgaas @ 2003-10-06 21:34 UTC (permalink / raw)
To: Brown, Len, Jesse Barnes, Grover, Andrew, Bjorn Helgaas,
Moore, Robert
Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
On Friday 03 October 2003 11:56 am, Brown, Len wrote:
> Anybody know where the value 256 came from?
> (looks like we used to define ACPI_MAX_TABLES as ACPI_TABLE_COUNT about
> a year ago)
>
> We use ACPI_MAX_TABLES to limit how many RSDT or XSDT entries we look
> at, but I didn't see any limit in the spec, so I was wondering if this
> came from some practical experience.
256 was just picked out of the blue. It was previously about 17,
and we overflowed that with an HP box that was about half the
size of the current largest box. So the minimum to support a
fully configured box would have been around 35.
Bjorn
g
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: #define ACPI_MAX_TABLES 256
@ 2004-12-06 2:37 Brown, Len
[not found] ` <F7DC2337C7631D4386A2DF6E8FB22B300229FE09-N2PTB0HCzHKkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
0 siblings, 1 reply; 5+ messages in thread
From: Brown, Len @ 2004-12-06 2:37 UTC (permalink / raw)
To: Bjorn Helgaas, Jesse Barnes, Grover, Andrew, Bjorn Helgaas,
Moore, Robert
Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Okay to reduce ACPI_MAX_TABLES to 64 from 256 for the forseeable future?
also, looks like acpi_sdt_entry[] can be __init since it is referenced
only by code that is __init.
thanks,
-Len
http://bugme.osdl.org/show_bug.cgi?id=1311
>-----Original Message-----
>From: Bjorn Helgaas [mailto:bjorn.helgaas-VXdhtT5mjnY@public.gmane.org]
>Sent: Monday, October 06, 2003 5:35 PM
>To: Brown, Len; Jesse Barnes; Grover, Andrew; Bjorn Helgaas;
>Moore, Robert
>Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
>Subject: Re: #define ACPI_MAX_TABLES 256
>
>On Friday 03 October 2003 11:56 am, Brown, Len wrote:
>> Anybody know where the value 256 came from?
>> (looks like we used to define ACPI_MAX_TABLES as
>ACPI_TABLE_COUNT about
>> a year ago)
>>
>> We use ACPI_MAX_TABLES to limit how many RSDT or XSDT entries we look
>> at, but I didn't see any limit in the spec, so I was
>wondering if this
>> came from some practical experience.
>
>256 was just picked out of the blue. It was previously about 17,
>and we overflowed that with an HP box that was about half the
>size of the current largest box. So the minimum to support a
>fully configured box would have been around 35.
>
>Bjorn
>g
>
>
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: #define ACPI_MAX_TABLES 256
[not found] ` <F7DC2337C7631D4386A2DF6E8FB22B300229FE09-N2PTB0HCzHKkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
@ 2004-12-06 16:01 ` Jesse Barnes
2004-12-06 16:13 ` Bjorn Helgaas
1 sibling, 0 replies; 5+ messages in thread
From: Jesse Barnes @ 2004-12-06 16:01 UTC (permalink / raw)
To: Brown, Len
Cc: Grover, Andrew, Bjorn Helgaas, Moore, Robert,
acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
On Sunday, December 5, 2004 6:37 pm, Brown, Len wrote:
> Okay to reduce ACPI_MAX_TABLES to 64 from 256 for the forseeable future?
>
> also, looks like acpi_sdt_entry[] can be __init since it is referenced
> only by code that is __init.
Both are fine by me.
Thanks,
Jesse
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: RE: #define ACPI_MAX_TABLES 256
[not found] ` <F7DC2337C7631D4386A2DF6E8FB22B300229FE09-N2PTB0HCzHKkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2004-12-06 16:01 ` Jesse Barnes
@ 2004-12-06 16:13 ` Bjorn Helgaas
1 sibling, 0 replies; 5+ messages in thread
From: Bjorn Helgaas @ 2004-12-06 16:13 UTC (permalink / raw)
To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Cc: Brown, Len, Jesse Barnes, Grover, Andrew, Bjorn Helgaas,
Moore, Robert
On Sunday 05 December 2004 7:37 pm, Brown, Len wrote:
> Okay to reduce ACPI_MAX_TABLES to 64 from 256 for the forseeable future?
Sounds OK to me.
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2004-12-06 16:13 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-12-06 2:37 #define ACPI_MAX_TABLES 256 Brown, Len
[not found] ` <F7DC2337C7631D4386A2DF6E8FB22B300229FE09-N2PTB0HCzHKkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2004-12-06 16:01 ` Jesse Barnes
2004-12-06 16:13 ` Bjorn Helgaas
-- strict thread matches above, loose matches on Subject: below --
2003-10-03 17:56 Brown, Len
[not found] ` <BF1FE1855350A0479097B3A0D2A80EE0CC8753-N2PTB0HCzHJF3Yvz3xaN/VDQ4js95KgL@public.gmane.org>
2003-10-06 21:34 ` Bjorn Helgaas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox