Re: [PATCH v2 06/18] x86, acpi: Initialize ACPI root table list earlier.

2013-08-02 Thread Toshi Kani
On Fri, 2013-08-02 at 15:49 +0800, Tang Chen wrote: > On 08/02/2013 07:54 AM, Toshi Kani wrote: > .. > >> /* > >> + * acpi_root_table_init - Initialize acpi_gbl_root_table_list. > >> + * > >> + * This function will parse RSDT or XSDT, find all tables' phys addr, > >> + * initialize acpi_gbl_r

Re: [PATCH v2 06/18] x86, acpi: Initialize ACPI root table list earlier.

2013-08-02 Thread Tang Chen
On 08/02/2013 07:54 AM, Toshi Kani wrote: .. /* + * acpi_root_table_init - Initialize acpi_gbl_root_table_list. + * + * This function will parse RSDT or XSDT, find all tables' phys addr, + * initialize acpi_gbl_root_table_list, and record all tables' phys addr + * in acpi_gbl_root_table_lis

Re: [PATCH v2 06/18] x86, acpi: Initialize ACPI root table list earlier.

2013-08-01 Thread Toshi Kani
On Thu, 2013-08-01 at 15:06 +0800, Tang Chen wrote: > We have split acpi_table_init() into two steps: > 1. Pares RSDT or XSDT, and initialize acpi_gbl_root_table_list. >This step will record all tables' physical address in memory. > 2. Check acpi initrd table override and install all tables int

[PATCH v2 06/18] x86, acpi: Initialize ACPI root table list earlier.

2013-08-01 Thread Tang Chen
We have split acpi_table_init() into two steps: 1. Pares RSDT or XSDT, and initialize acpi_gbl_root_table_list. This step will record all tables' physical address in memory. 2. Check acpi initrd table override and install all tables into acpi_gbl_root_table_list. This patch does step 1 earli