All of lore.kernel.org
 help / color / mirror / Atom feed
From: Omar Sandoval <osandov@osandov.com>
To: Matt Fleming <matt@codeblueprint.co.uk>
Cc: Dave Young <dyoung@redhat.com>, Ingo Molnar <mingo@kernel.org>,
	linux-kernel@vger.kernel.org, kernel-team@fb.com,
	kexec@lists.infradead.org, linux-efi@vger.kernel.org
Subject: Re: kexec regression since 4.9 caused by efi
Date: Thu, 16 Mar 2017 10:50:48 -0700	[thread overview]
Message-ID: <20170316175048.GA25230@vader.DHCP.thefacebook.com> (raw)
In-Reply-To: <20170316124132.GF6261@codeblueprint.co.uk>

On Thu, Mar 16, 2017 at 12:41:32PM +0000, Matt Fleming wrote:
> On Mon, 13 Mar, at 03:37:48PM, Dave Young wrote:
> > 
> > Omar, could you try below patch? Looking at the efi_mem_desc_lookup, it is not
> > correct to be used in efi_arch_mem_reserve, if it passed your test, I
> > can rewrite patch log with more background and send it out:
> > 
> >         for_each_efi_memory_desc(md) {
> > 		[snip]
> >                 if (!(md->attribute & EFI_MEMORY_RUNTIME) &&
> >                     md->type != EFI_BOOT_SERVICES_DATA &&
> >                     md->type != EFI_RUNTIME_SERVICES_DATA) {
> >                         continue;
> >                 }
> > 
> > In above code, it meant to get a md of EFI_MEMORY_RUNTIME of either boot
> > data or runtime data, this is wrong for efi_mem_reserve, because we are
> > reserving boot data which has no EFI_MEMORY_RUNTIME attribute at the
> > running time. Just is happened to work and we did not capture the error.
> 
> Wouldn't something like this be simpler?
> 
> ---
> 
> diff --git a/arch/x86/platform/efi/quirks.c b/arch/x86/platform/efi/quirks.c
> index 30031d5293c4..cdfe8c628959 100644
> --- a/arch/x86/platform/efi/quirks.c
> +++ b/arch/x86/platform/efi/quirks.c
> @@ -201,6 +201,10 @@ void __init efi_arch_mem_reserve(phys_addr_t addr, u64 size)
>  		return;
>  	}
>  
> +	/* No need to reserve regions that will never be freed. */
> +	if (md.attribute & EFI_MEMORY_RUNTIME)
> +		return;
> +
>  	size += addr % EFI_PAGE_SIZE;
>  	size = round_up(size, EFI_PAGE_SIZE);
>  	addr = round_down(addr, EFI_PAGE_SIZE);

This works for me.

Reported-and-tested-by: Omar Sandoval <osandov@fb.com>

WARNING: multiple messages have this Message-ID (diff)
From: Omar Sandoval <osandov@osandov.com>
To: Matt Fleming <matt@codeblueprint.co.uk>
Cc: linux-efi@vger.kernel.org, kexec@lists.infradead.org,
	linux-kernel@vger.kernel.org, kernel-team@fb.com,
	Dave Young <dyoung@redhat.com>, Ingo Molnar <mingo@kernel.org>
Subject: Re: kexec regression since 4.9 caused by efi
Date: Thu, 16 Mar 2017 10:50:48 -0700	[thread overview]
Message-ID: <20170316175048.GA25230@vader.DHCP.thefacebook.com> (raw)
In-Reply-To: <20170316124132.GF6261@codeblueprint.co.uk>

On Thu, Mar 16, 2017 at 12:41:32PM +0000, Matt Fleming wrote:
> On Mon, 13 Mar, at 03:37:48PM, Dave Young wrote:
> > 
> > Omar, could you try below patch? Looking at the efi_mem_desc_lookup, it is not
> > correct to be used in efi_arch_mem_reserve, if it passed your test, I
> > can rewrite patch log with more background and send it out:
> > 
> >         for_each_efi_memory_desc(md) {
> > 		[snip]
> >                 if (!(md->attribute & EFI_MEMORY_RUNTIME) &&
> >                     md->type != EFI_BOOT_SERVICES_DATA &&
> >                     md->type != EFI_RUNTIME_SERVICES_DATA) {
> >                         continue;
> >                 }
> > 
> > In above code, it meant to get a md of EFI_MEMORY_RUNTIME of either boot
> > data or runtime data, this is wrong for efi_mem_reserve, because we are
> > reserving boot data which has no EFI_MEMORY_RUNTIME attribute at the
> > running time. Just is happened to work and we did not capture the error.
> 
> Wouldn't something like this be simpler?
> 
> ---
> 
> diff --git a/arch/x86/platform/efi/quirks.c b/arch/x86/platform/efi/quirks.c
> index 30031d5293c4..cdfe8c628959 100644
> --- a/arch/x86/platform/efi/quirks.c
> +++ b/arch/x86/platform/efi/quirks.c
> @@ -201,6 +201,10 @@ void __init efi_arch_mem_reserve(phys_addr_t addr, u64 size)
>  		return;
>  	}
>  
> +	/* No need to reserve regions that will never be freed. */
> +	if (md.attribute & EFI_MEMORY_RUNTIME)
> +		return;
> +
>  	size += addr % EFI_PAGE_SIZE;
>  	size = round_up(size, EFI_PAGE_SIZE);
>  	addr = round_down(addr, EFI_PAGE_SIZE);

This works for me.

Reported-and-tested-by: Omar Sandoval <osandov@fb.com>

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

  reply	other threads:[~2017-03-16 17:51 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-08 20:16 kexec regression since 4.9 caused by efi Omar Sandoval
2017-03-09  2:21 ` Dave Young
2017-03-09  3:36   ` Omar Sandoval
2017-03-09  6:38 ` Dave Young
2017-03-09  6:38   ` Dave Young
2017-03-09  6:38   ` Dave Young
2017-03-09  9:54   ` Omar Sandoval
2017-03-09  9:54     ` Omar Sandoval
2017-03-09 11:53     ` Ard Biesheuvel
2017-03-09 11:53       ` Ard Biesheuvel
2017-03-09 11:53       ` Ard Biesheuvel
2017-03-10  1:39       ` Dave Young
2017-03-10  1:39         ` Dave Young
2017-03-16 12:15       ` Matt Fleming
2017-03-16 12:15         ` Matt Fleming
2017-03-10  1:42     ` Dave Young
2017-03-10  1:42       ` Dave Young
2017-03-10  1:42       ` Dave Young
2017-03-13  7:37     ` Dave Young
2017-03-13  7:37       ` Dave Young
2017-03-13  7:37       ` Dave Young
2017-03-16 12:41       ` Matt Fleming
2017-03-16 12:41         ` Matt Fleming
2017-03-16 12:41         ` Matt Fleming
2017-03-16 17:50         ` Omar Sandoval [this message]
2017-03-16 17:50           ` Omar Sandoval
2017-04-03 23:54           ` Omar Sandoval
2017-04-03 23:54             ` Omar Sandoval
2017-04-03 23:54             ` Omar Sandoval
2017-03-17  2:09         ` Dave Young
2017-03-17  2:09           ` Dave Young
2017-03-17  2:09           ` Dave Young
2017-03-17 13:25           ` Ard Biesheuvel
2017-03-17 13:25             ` Ard Biesheuvel
2017-03-17 13:25             ` Ard Biesheuvel
2017-03-17 13:32           ` Matt Fleming
2017-03-17 13:32             ` Matt Fleming
2017-03-17 13:32             ` Matt Fleming
2017-03-20  2:14             ` Dave Young
2017-03-20  2:14               ` Dave Young
2017-03-20  2:14               ` Dave Young
2017-03-21  7:48               ` Dave Young
2017-03-21  7:48                 ` Dave Young
2017-03-21  7:48                 ` Dave Young
2017-03-22 16:10                 ` Ard Biesheuvel
2017-03-22 16:10                   ` Ard Biesheuvel
2017-03-22 16:10                   ` Ard Biesheuvel
2017-03-23  2:43                   ` Dave Young
2017-03-23  2:43                     ` Dave Young
2017-03-23  2:43                     ` Dave Young
2017-04-04 13:37               ` Matt Fleming
2017-04-04 13:37                 ` Matt Fleming
2017-04-04 13:37                 ` Matt Fleming
2017-04-05  1:23                 ` Dave Young
2017-04-05  1:23                   ` Dave Young

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=20170316175048.GA25230@vader.DHCP.thefacebook.com \
    --to=osandov@osandov.com \
    --cc=dyoung@redhat.com \
    --cc=kernel-team@fb.com \
    --cc=kexec@lists.infradead.org \
    --cc=linux-efi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=matt@codeblueprint.co.uk \
    --cc=mingo@kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.