public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Laszlo Ersek <lersek@redhat.com>
To: Jian J Wang <jian.j.wang@intel.com>, edk2-devel@lists.01.org
Cc: Dandan Bi <dandan.bi@intel.com>, Hao A Wu <hao.a.wu@intel.com>,
	Eric Dong <eric.dong@intel.com>
Subject: Re: [PATCH v2] UefiCpuPkg/CpuMpPei: fix vs2012 build error
Date: Tue, 18 Sep 2018 18:44:45 +0200	[thread overview]
Message-ID: <b260677f-992b-188d-5cdb-3e260e9695f9@redhat.com> (raw)
In-Reply-To: <20180918090435.7232-1-jian.j.wang@intel.com>

On 09/18/18 11:04, Jian J Wang wrote:
>> v2 changes:
>>   Incorpate Laszlo's reivew comments
>>   a. change title
>>   b. drop unrelated changes
>>   c. remove error message
> 
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1166
> 
> Visual Studio 2012 will complain uninitialized variable, StackBase,
> in the CpuPaging.c. This patch adds code to init it to zero and
> ASSERT check against 0. This is enough since uninit case will only
> happen during retrieving stack memory via gEfiHobMemoryAllocStackGuid.
> But this HOB will always be created in advance.
> 
> Cc: Dandan Bi <dandan.bi@intel.com>
> Cc: Hao A Wu <hao.a.wu@intel.com>
> Cc: Eric Dong <eric.dong@intel.com>
> Cc: Laszlo Ersek <lersek@redhat.com>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Jian J Wang <jian.j.wang@intel.com>
> ---
>  UefiCpuPkg/CpuMpPei/CpuPaging.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/UefiCpuPkg/CpuMpPei/CpuPaging.c b/UefiCpuPkg/CpuMpPei/CpuPaging.c
> index bcb942a8e5..c7e0822452 100644
> --- a/UefiCpuPkg/CpuMpPei/CpuPaging.c
> +++ b/UefiCpuPkg/CpuMpPei/CpuPaging.c
> @@ -554,6 +554,8 @@ SetupStackGuardPage (
>    MpInitLibGetNumberOfProcessors(&NumberOfProcessors, NULL);
>    MpInitLibWhoAmI (&Bsp);
>    for (Index = 0; Index < NumberOfProcessors; ++Index) {
> +    StackBase = 0;
> +
>      if (Index == Bsp) {
>        Hob.Raw = GetHobList ();
>        while ((Hob.Raw = GetNextHob (EFI_HOB_TYPE_MEMORY_ALLOCATION, Hob.Raw)) != NULL) {
> @@ -570,6 +572,7 @@ SetupStackGuardPage (
>        //
>        MpInitLibStartupThisAP(GetStackBase, Index, NULL, 0, (VOID *)&StackBase, NULL);
>      }
> +    ASSERT (StackBase != 0);
>      //
>      // Set Guard page at stack base address.
>      //
> 

Reviewed-by: Laszlo Ersek <lersek@redhat.com>

Thanks!
Laszlo


  reply	other threads:[~2018-09-18 16:44 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-18  9:04 [PATCH v2] UefiCpuPkg/CpuMpPei: fix vs2012 build error Jian J Wang
2018-09-18 16:44 ` Laszlo Ersek [this message]
2018-09-19  1:03 ` Dong, Eric

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-list 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=b260677f-992b-188d-5cdb-3e260e9695f9@redhat.com \
    --to=devel@edk2.groups.io \
    /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