xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
From: Keir Fraser <keir.xen@gmail.com>
To: Jan Beulich <JBeulich@suse.com>,
	xen-devel <xen-devel@lists.xenproject.org>
Subject: Re: [PATCH] x86: machine_restart() must not call acpi_dmar_reinstate() twice
Date: Fri, 13 Sep 2013 03:14:36 -0700	[thread overview]
Message-ID: <CE58339C.5DCA7%keir.xen@gmail.com> (raw)
In-Reply-To: <5232E3EF02000078000F2F35@nat28.tlf.novell.com>

On 13/09/2013 01:07, "Jan Beulich" <JBeulich@suse.com> wrote:

> .. as that function is not idempotent (it always alters the table
> checksum). The (generally) duplicate call was a result from it being
> made before machine_restart() re-invoking itself on the boot CPU.
> 
> Considering that no problem arose so far from the table corruption I
> doubt that we need to restore the correct table signature on the
> reboot path in general. The only case I can see this as potentially
> necessary is the tboot one, hence do the call just in that case.
> 
> Signed-off-by: Jan Beulich <jbeulich@suse.com>

Acked-by: Keir Fraser <keir@xen.org>

> ---
> Note that this was found to be particularly an issue backporting
> 2ee9cbf9 ("ACPI: fix acpi_os_map_memory()") to 4.1.x: The first
> invocation would acquire the lock in acpi_os_map_memory(), and since
> the lock never gets released, the second invocation gets stuck.
> 
> --- a/xen/arch/x86/shutdown.c
> +++ b/xen/arch/x86/shutdown.c
> @@ -470,8 +470,6 @@ void machine_restart(unsigned int delay_
>      console_start_sync();
>      spin_debug_disable();
>  
> -    acpi_dmar_reinstate();
> -
>      local_irq_enable();
>  
>      /* Ensure we are the boot CPU. */
> @@ -496,7 +494,10 @@ void machine_restart(unsigned int delay_
>      mdelay(delay_millisecs);
>  
>      if ( tboot_in_measured_env() )
> +    {
> +        acpi_dmar_reinstate();
>          tboot_shutdown(TB_SHUTDOWN_REBOOT);
> +    }
>  
>      efi_reset_system(reboot_mode != 0);
>  
> 
> 
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel

      reply	other threads:[~2013-09-13 10:14 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-13  8:07 [PATCH] x86: machine_restart() must not call acpi_dmar_reinstate() twice Jan Beulich
2013-09-13 10:14 ` Keir Fraser [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CE58339C.5DCA7%keir.xen@gmail.com \
    --to=keir.xen@gmail.com \
    --cc=JBeulich@suse.com \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).