diff mbox

apci: fix ACPI tables for -no-hpet option

Message ID 1399553920-3358-1-git-send-email-marcel.a@redhat.com
State New
Headers show

Commit Message

Marcel Apfelbaum May 8, 2014, 12:58 p.m. UTC
A wrong offset was added to the tables pointed by RSDT
if the HPET table is not present.

Signed-off-by: Marcel Apfelbaum <marcel.a@redhat.com>
---
 hw/i386/acpi-build.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Igor Mammedov May 15, 2014, 12:45 p.m. UTC | #1
On Thu,  8 May 2014 15:58:40 +0300
Marcel Apfelbaum <marcel.a@redhat.com> wrote:

> A wrong offset was added to the tables pointed by RSDT
> if the HPET table is not present.
> 
> Signed-off-by: Marcel Apfelbaum <marcel.a@redhat.com>
> ---
>  hw/i386/acpi-build.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
> index c98df88..d65fab0 100644
> --- a/hw/i386/acpi-build.c
> +++ b/hw/i386/acpi-build.c
> @@ -1417,8 +1417,8 @@ void acpi_build(PcGuestInfo *guest_info, AcpiBuildTables *tables)
>      acpi_add_table(table_offsets, tables->table_data);
>  
>      build_madt(tables->table_data, tables->linker, &cpu, guest_info);
> -    acpi_add_table(table_offsets, tables->table_data);
>      if (misc.has_hpet) {
> +        acpi_add_table(table_offsets, tables->table_data);
>          build_hpet(tables->table_data, tables->linker);
>      }
>      if (guest_info->numa_nodes) {

Reviewed-By: Igor Mammedov <imammedo@redhat.com>
Marcel Apfelbaum May 15, 2014, 12:51 p.m. UTC | #2
On Thu, 2014-05-15 at 14:45 +0200, Igor Mammedov wrote:
> On Thu,  8 May 2014 15:58:40 +0300
> Marcel Apfelbaum <marcel.a@redhat.com> wrote:
> 
> > A wrong offset was added to the tables pointed by RSDT
> > if the HPET table is not present.
> > 
> > Signed-off-by: Marcel Apfelbaum <marcel.a@redhat.com>
> > ---
> >  hw/i386/acpi-build.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
> > index c98df88..d65fab0 100644
> > --- a/hw/i386/acpi-build.c
> > +++ b/hw/i386/acpi-build.c
> > @@ -1417,8 +1417,8 @@ void acpi_build(PcGuestInfo *guest_info, AcpiBuildTables *tables)
> >      acpi_add_table(table_offsets, tables->table_data);
> >  
> >      build_madt(tables->table_data, tables->linker, &cpu, guest_info);
> > -    acpi_add_table(table_offsets, tables->table_data);
> >      if (misc.has_hpet) {
> > +        acpi_add_table(table_offsets, tables->table_data);
> >          build_hpet(tables->table_data, tables->linker);
> >      }
> >      if (guest_info->numa_nodes) {
> 
> Reviewed-By: Igor Mammedov <imammedo@redhat.com>

Hi Igor,

Thanks for the review, but Michael beat me and pushed a fix sooner :)
Marcel
diff mbox

Patch

diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
index c98df88..d65fab0 100644
--- a/hw/i386/acpi-build.c
+++ b/hw/i386/acpi-build.c
@@ -1417,8 +1417,8 @@  void acpi_build(PcGuestInfo *guest_info, AcpiBuildTables *tables)
     acpi_add_table(table_offsets, tables->table_data);
 
     build_madt(tables->table_data, tables->linker, &cpu, guest_info);
-    acpi_add_table(table_offsets, tables->table_data);
     if (misc.has_hpet) {
+        acpi_add_table(table_offsets, tables->table_data);
         build_hpet(tables->table_data, tables->linker);
     }
     if (guest_info->numa_nodes) {