From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.byosoft.com.cn (mail.byosoft.com.cn [58.240.74.242]) by mx.groups.io with SMTP id smtpd.web12.3682.1646703716564053416 for ; Mon, 07 Mar 2022 17:41:57 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (domain: byosoft.com.cn, ip: 58.240.74.242, mailfrom: gaoliming@byosoft.com.cn) Received: from DESKTOPS6D0PVI ([58.246.60.130]) (envelope-sender ) by 192.168.6.13 with ESMTP for ; Tue, 08 Mar 2022 09:41:52 +0800 X-WM-Sender: gaoliming@byosoft.com.cn X-Originating-IP: 58.246.60.130 X-WM-AuthFlag: YES X-WM-AuthUser: gaoliming@byosoft.com.cn From: "gaoliming" To: "'Hao A Wu'" , Cc: "'Michael D Kinney'" , "'Zhiguang Liu'" References: <20220307083500.2215-1-hao.a.wu@intel.com> In-Reply-To: <20220307083500.2215-1-hao.a.wu@intel.com> Subject: =?UTF-8?B?5Zue5aSNOiBbUEFUQ0hdIE1kZVBrZy9BY3BpNjQ6IFVwZGF0ZSBFcnJvciBTZXZlcml0eSB0eXBlIGZvciBHZW5lcmljIEVycm9yIFN0YXR1cyBCbG9jaw==?= Date: Tue, 8 Mar 2022 09:41:53 +0800 Message-ID: <00cc01d8328d$b0112200$10336600$@byosoft.com.cn> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 16.0 Thread-Index: AQJltkU6vzuT1tOX51KaZcJYM3hlZquZrVWA Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: quoted-printable Content-Language: zh-cn Hao: Can you let me know why you update Acpi64.h only? Thanks Liming > -----=D3=CA=BC=FE=D4=AD=BC=FE----- > =B7=A2=BC=FE=C8=CB: Hao A Wu > =B7=A2=CB=CD=CA=B1=BC=E4: 2022=C4=EA3=D4=C27=C8=D5 16:35 > =CA=D5=BC=FE=C8=CB: devel@edk2.groups.io > =B3=AD=CB=CD: Hao A Wu ; Michael D Kinney > ; Liming Gao ; > Zhiguang Liu > =D6=F7=CC=E2: [PATCH] MdePkg/Acpi64: Update Error Severity type for = Generic Error > Status Block >=20 > Starting from ACPI Specification Version 5.1 Errata B, the term > 'Correctable' is no longer being used as an error severity of the > reported error in Chapter 18 APEI. >=20 > This commit adds a new macro to reflect this and also keeps the origin > definition (but add comments to make it deprecated) for compatibility > consideration. >=20 > Please also note that this commit only updates Acpi64.h and > does NOT update below headers: > Acpi51.h > Acpi60.h > Acpi61.h > Acpi62.h > Acpi63.h >=20 > Cc: Michael D Kinney > Cc: Liming Gao > Cc: Zhiguang Liu > Signed-off-by: Hao A Wu > --- > MdePkg/Include/IndustryStandard/Acpi64.h | 10 ++++++++-- > 1 file changed, 8 insertions(+), 2 deletions(-) >=20 > diff --git a/MdePkg/Include/IndustryStandard/Acpi64.h > b/MdePkg/Include/IndustryStandard/Acpi64.h > index a79b7f2eaa..232697f228 100644 > --- a/MdePkg/Include/IndustryStandard/Acpi64.h > +++ b/MdePkg/Include/IndustryStandard/Acpi64.h > @@ -1,7 +1,7 @@ > /** @file >=20 > ACPI 6.4 definitions from the ACPI Specification Revision 6.4 Jan, 2021. >=20 >=20 >=20 > - Copyright (c) 2017, Intel Corporation. All rights reserved.
>=20 > + Copyright (c) 2017 - 2022, Intel Corporation. All rights = reserved.
>=20 > Copyright (c) 2019 - 2021, ARM Ltd. All rights reserved.
>=20 >=20 >=20 > SPDX-License-Identifier: BSD-2-Clause-Patent >=20 > @@ -1783,10 +1783,16 @@ typedef struct { > // >=20 > // Boot Error Severity types >=20 > // >=20 > -#define EFI_ACPI_6_4_ERROR_SEVERITY_CORRECTABLE 0x00 >=20 > +#define EFI_ACPI_6_4_ERROR_SEVERITY_RECOVERABLE 0x00 >=20 > #define EFI_ACPI_6_4_ERROR_SEVERITY_FATAL 0x01 >=20 > #define EFI_ACPI_6_4_ERROR_SEVERITY_CORRECTED 0x02 >=20 > #define EFI_ACPI_6_4_ERROR_SEVERITY_NONE 0x03 >=20 > +// >=20 > +// The term 'Correctable' is no longer being used as an error = severity of the >=20 > +// reported error since ACPI Specification Version 5.1 Errata B. >=20 > +// The below macro is considered as deprecated and should no longer = be > used. >=20 > +// >=20 > +#define EFI_ACPI_6_4_ERROR_SEVERITY_CORRECTABLE 0x00 >=20 >=20 >=20 > /// >=20 > /// Generic Error Data Entry Definition >=20 > -- > 2.27.0.windows.1