public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Tom Pilar" <tom.pilar@arm.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
	Daniel Nguyen <Daniel.Nguyen@arm.com>
Cc: nd <nd@arm.com>, Zhichao Gao <zhichao.gao@intel.com>,
	Ray Ni <ray.ni@intel.com>
Subject: Re: [edk2-devel] [PATCH v2 1/1] ShellPkg: Tidy for code readability
Date: Wed, 13 Dec 2023 11:45:23 +0000	[thread overview]
Message-ID: <46D1DFA2-3809-489A-8EC5-5D32ED3075A3@arm.com> (raw)
In-Reply-To: <20231129182840.2333098-2-daniel.nguyen@arm.com>

Hi Zhichao & Ray,

Can you have a quick review of this patch, no logic has changed, just a code tidy.

Cheers,
Tom

> On 29 Nov 2023, at 18:28, Daniel Nguyen via groups.io <daniel.nguyen=arm.com@groups.io> wrote:
> 
> Warning: EXTERNAL SENDER, use caution when opening links or attachments.
> 
> 
> Use error handling instead of success handling.
> Less indented logic is easier to read.
> 
> Cc: Zhichao Gao <zhichao.gao@intel.com>
> Cc: Ray Ni <ray.ni@intel.com>
> 
> Signed-off-by: Daniel Nguyen <daniel.nguyen@arm.com>
> ---
> ShellPkg/Library/UefiShellLevel2CommandsLib/Reset.c | 41 +++++++++++---------
> 1 file changed, 23 insertions(+), 18 deletions(-)
> 
> diff --git a/ShellPkg/Library/UefiShellLevel2CommandsLib/Reset.c b/ShellPkg/Library/UefiShellLevel2CommandsLib/Reset.c
> index 57ba3c90f373..361c47e43059 100644
> --- a/ShellPkg/Library/UefiShellLevel2CommandsLib/Reset.c
> +++ b/ShellPkg/Library/UefiShellLevel2CommandsLib/Reset.c
> @@ -79,30 +79,35 @@ ShellCommandRunReset (
>                           &DataSize,
>                           &OsIndications
>                           );
> -        if (!EFI_ERROR (Status)) {
> -          if ((OsIndications & EFI_OS_INDICATIONS_BOOT_TO_FW_UI) != 0) {
> -            DataSize = sizeof (OsIndications);
> -            Status   = gRT->GetVariable (
> -                              EFI_OS_INDICATIONS_VARIABLE_NAME,
> -                              &gEfiGlobalVariableGuid,
> -                              &Attr,
> -                              &DataSize,
> -                              &OsIndications
> -                              );
> -            if (!EFI_ERROR (Status)) {
> -              OsIndications |= EFI_OS_INDICATIONS_BOOT_TO_FW_UI;
> -            } else {
> -              OsIndications = EFI_OS_INDICATIONS_BOOT_TO_FW_UI;
> -            }
> 
> -            Status = gRT->SetVariable (
> +        if (EFI_ERROR (Status)) {
> +          ShellStatus = SHELL_UNSUPPORTED;
> +          goto Error;
> +        }
> +
> +        if ((OsIndications & EFI_OS_INDICATIONS_BOOT_TO_FW_UI) != 0) {
> +          DataSize = sizeof (OsIndications);
> +          Status   = gRT->GetVariable (
>                             EFI_OS_INDICATIONS_VARIABLE_NAME,
>                             &gEfiGlobalVariableGuid,
> -                            EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,
> -                            sizeof (OsIndications),
> +                            &Attr,
> +                            &DataSize,
>                             &OsIndications
>                             );
> +
> +          if (EFI_ERROR (Status)) {
> +            OsIndications = EFI_OS_INDICATIONS_BOOT_TO_FW_UI;
> +          } else {
> +            OsIndications |= EFI_OS_INDICATIONS_BOOT_TO_FW_UI;
>           }
> +
> +          Status = gRT->SetVariable (
> +                          EFI_OS_INDICATIONS_VARIABLE_NAME,
> +                          &gEfiGlobalVariableGuid,
> +                          EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,
> +                          sizeof (OsIndications),
> +                          &OsIndications
> +                          );
>         }
> 
>         if (EFI_ERROR (Status)) {
> --
> 2.25.1
> 
> 
> 
> -=-=-=-=-=-=
> Groups.io Links: You receive all messages sent to this group.
> View/Reply Online (#111856): https://edk2.groups.io/g/devel/message/111856
> Mute This Topic: https://groups.io/mt/102877864/7994090
> Group Owner: devel+owner@edk2.groups.io
> Unsubscribe: https://edk2.groups.io/g/devel/unsub [tom.pilar@arm.com]
> -=-=-=-=-=-=
> 
> 



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#112471): https://edk2.groups.io/g/devel/message/112471
Mute This Topic: https://groups.io/mt/102877864/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



  reply	other threads:[~2023-12-13 12:14 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-29 18:28 [edk2-devel] [PATCH v2 0/1] ShellPkg: Tidy for code readability Daniel Nguyen
2023-11-29 18:28 ` [edk2-devel] [PATCH v2 1/1] " Daniel Nguyen
2023-12-13 11:45   ` Tom Pilar [this message]
2023-12-14  2:51     ` Gao, Zhichao

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=46D1DFA2-3809-489A-8EC5-5D32ED3075A3@arm.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