public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Yao, Jiewen" <jiewen.yao@intel.com>
To: "Zeng, Star" <star.zeng@intel.com>,
	"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Subject: Re: [PATCH] IntelSiliconPkg IntelVTdDxe: Do not SetupVtd again
Date: Thu, 23 Nov 2017 01:27:22 +0000	[thread overview]
Message-ID: <74D8A39837DF1E4DA445A8C0B3885C503AA28DA9@shsmsx102.ccr.corp.intel.com> (raw)
In-Reply-To: <1511399474-9580-1-git-send-email-star.zeng@intel.com>

Tested-by: Jiewen.yao@intel.com
Reviewed-by: Jiewen.yao@intel.com


> -----Original Message-----
> From: Zeng, Star
> Sent: Thursday, November 23, 2017 9:11 AM
> To: edk2-devel@lists.01.org
> Cc: Zeng, Star <star.zeng@intel.com>; Yao, Jiewen <jiewen.yao@intel.com>
> Subject: [PATCH] IntelSiliconPkg IntelVTdDxe: Do not SetupVtd again
> 
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Star Zeng <star.zeng@intel.com>
> ---
>  IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmaProtection.c | 3 +++
>  IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmaProtection.h | 5 +++--
>  IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmarAcpiTable.c | 7 ++++---
>  3 files changed, 10 insertions(+), 5 deletions(-)
> 
> diff --git a/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmaProtection.c
> b/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmaProtection.c
> index 6052a0aebe45..37b3b19bce90 100644
> --- a/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmaProtection.c
> +++ b/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmaProtection.c
> @@ -412,6 +412,9 @@ AcpiNotificationFunc (
> 
>    Status = GetDmarAcpiTable ();
>    if (EFI_ERROR (Status)) {
> +    if (Status == EFI_ALREADY_STARTED) {
> +      gBS->CloseEvent (Event);
> +    }
>      return;
>    }
>    SetupVtd ();
> diff --git a/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmaProtection.h
> b/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmaProtection.h
> index 0886647ea673..519a5ab00450 100644
> --- a/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmaProtection.h
> +++ b/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmaProtection.h
> @@ -302,8 +302,9 @@ FindVtdIndexByPciDevice (
>  /**
>    Get the DMAR ACPI table.
> 
> -  @retval EFI_SUCCESS    The DMAR ACPI table is got.
> -  @retval EFI_NOT_FOUND  The DMAR ACPI table is not found.
> +  @retval EFI_SUCCESS           The DMAR ACPI table is got.
> +  @retval EFI_ALREADY_STARTED   The DMAR ACPI table has been got
> previously.
> +  @retval EFI_NOT_FOUND         The DMAR ACPI table is not found.
>  **/
>  EFI_STATUS
>  GetDmarAcpiTable (
> diff --git a/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmarAcpiTable.c
> b/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmarAcpiTable.c
> index 81dec109675b..ce350bafbe3f 100644
> --- a/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmarAcpiTable.c
> +++ b/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmarAcpiTable.c
> @@ -978,8 +978,9 @@ FindAcpiPtr (
>  /**
>    Get the DMAR ACPI table.
> 
> -  @retval EFI_SUCCESS    The DMAR ACPI table is got.
> -  @retval EFI_NOT_FOUND  The DMAR ACPI table is not found.
> +  @retval EFI_SUCCESS           The DMAR ACPI table is got.
> +  @retval EFI_ALREADY_STARTED   The DMAR ACPI table has been got
> previously.
> +  @retval EFI_NOT_FOUND         The DMAR ACPI table is not found.
>  **/
>  EFI_STATUS
>  GetDmarAcpiTable (
> @@ -990,7 +991,7 @@ GetDmarAcpiTable (
>    EFI_STATUS                        Status;
> 
>    if (mAcpiDmarTable != NULL) {
> -    return EFI_SUCCESS;
> +    return EFI_ALREADY_STARTED;
>    }
> 
>    AcpiTable = NULL;
> --
> 2.7.0.windows.1



      reply	other threads:[~2017-11-23  1:23 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-23  1:11 [PATCH] IntelSiliconPkg IntelVTdDxe: Do not SetupVtd again Star Zeng
2017-11-23  1:27 ` Yao, Jiewen [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-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=74D8A39837DF1E4DA445A8C0B3885C503AA28DA9@shsmsx102.ccr.corp.intel.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