* [edk2-devel] [PATCH 0/1] UefiCpuPkg/SmmCpuSyncLib: Add MM_STANDALONE tag.
@ 2024-04-23 5:57 Yuanhao Xie
2024-04-23 5:57 ` [edk2-devel] [PATCH 1/1] " Yuanhao Xie
0 siblings, 1 reply; 5+ messages in thread
From: Yuanhao Xie @ 2024-04-23 5:57 UTC (permalink / raw)
To: devel
Declares in the .inf file that the current component is an MM_STANDALONE
xieyuanh (1):
UefiCpuPkg/SmmCpuSyncLib: Add MM_STANDALONE tag.
UefiCpuPkg/Library/SmmCpuSyncLib/SmmCpuSyncLib.inf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
base-commit: 86c8d69146310f24069701053a27153ae536ebba
--
2.39.1.windows.1
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#118123): https://edk2.groups.io/g/devel/message/118123
Mute This Topic: https://groups.io/mt/105685281/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
^ permalink raw reply [flat|nested] 5+ messages in thread
* [edk2-devel] [PATCH 1/1] UefiCpuPkg/SmmCpuSyncLib: Add MM_STANDALONE tag.
2024-04-23 5:57 [edk2-devel] [PATCH 0/1] UefiCpuPkg/SmmCpuSyncLib: Add MM_STANDALONE tag Yuanhao Xie
@ 2024-04-23 5:57 ` Yuanhao Xie
2024-04-23 6:54 ` Wu, Jiaxin
2024-04-25 5:53 ` Ni, Ray
0 siblings, 2 replies; 5+ messages in thread
From: Yuanhao Xie @ 2024-04-23 5:57 UTC (permalink / raw)
To: devel; +Cc: Yuanhao Xie, Eric Dong, Ray Ni, Rahul Kumar, Gerd Hoffmann,
Jiaxin Wu
Declares in the .inf file that the current component is an MM_STANDALONE
Signed-off-by: Yuanhao Xie <yuanhao.xie@intel.com>
Cc: Eric Dong <eric.dong@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Rahul Kumar <rahul1.kumar@intel.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: Jiaxin Wu <jiaxin.wu@intel.com>
---
UefiCpuPkg/Library/SmmCpuSyncLib/SmmCpuSyncLib.inf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/UefiCpuPkg/Library/SmmCpuSyncLib/SmmCpuSyncLib.inf b/UefiCpuPkg/Library/SmmCpuSyncLib/SmmCpuSyncLib.inf
index 6b0d49c30a..2cfbd27b41 100644
--- a/UefiCpuPkg/Library/SmmCpuSyncLib/SmmCpuSyncLib.inf
+++ b/UefiCpuPkg/Library/SmmCpuSyncLib/SmmCpuSyncLib.inf
@@ -3,7 +3,7 @@
#
# This is SMM CPU Synchronization lib used for SMM CPU sync operations.
#
-# Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
@@ -13,7 +13,7 @@
BASE_NAME = SmmCpuSyncLib
FILE_GUID = 1ca1bc1a-16a4-46ef-956a-ca500fd3381f
MODULE_TYPE = DXE_SMM_DRIVER
- LIBRARY_CLASS = SmmCpuSyncLib|DXE_SMM_DRIVER
+ LIBRARY_CLASS = SmmCpuSyncLib|DXE_SMM_DRIVER MM_STANDALONE
[Sources]
SmmCpuSyncLib.c
--
2.39.1.windows.1
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#118124): https://edk2.groups.io/g/devel/message/118124
Mute This Topic: https://groups.io/mt/105685282/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [edk2-devel] [PATCH 1/1] UefiCpuPkg/SmmCpuSyncLib: Add MM_STANDALONE tag.
2024-04-23 5:57 ` [edk2-devel] [PATCH 1/1] " Yuanhao Xie
@ 2024-04-23 6:54 ` Wu, Jiaxin
2024-04-25 5:53 ` Ni, Ray
1 sibling, 0 replies; 5+ messages in thread
From: Wu, Jiaxin @ 2024-04-23 6:54 UTC (permalink / raw)
To: Xie, Yuanhao, devel@edk2.groups.io
Cc: Dong, Eric, Ni, Ray, Kumar, Rahul R, Gerd Hoffmann
Reviewed-by: Jiaxin Wu <jiaxin.wu@intel.com>
> -----Original Message-----
> From: Xie, Yuanhao <yuanhao.xie@intel.com>
> Sent: Tuesday, April 23, 2024 1:57 PM
> To: devel@edk2.groups.io
> Cc: Xie, Yuanhao <yuanhao.xie@intel.com>; Dong, Eric
> <eric.dong@intel.com>; Ni, Ray <ray.ni@intel.com>; Kumar, Rahul R
> <rahul.r.kumar@intel.com>; Gerd Hoffmann <kraxel@redhat.com>; Wu, Jiaxin
> <jiaxin.wu@intel.com>
> Subject: [PATCH 1/1] UefiCpuPkg/SmmCpuSyncLib: Add MM_STANDALONE
> tag.
>
> Declares in the .inf file that the current component is an MM_STANDALONE
>
> Signed-off-by: Yuanhao Xie <yuanhao.xie@intel.com>
> Cc: Eric Dong <eric.dong@intel.com>
> Cc: Ray Ni <ray.ni@intel.com>
> Cc: Rahul Kumar <rahul1.kumar@intel.com>
> Cc: Gerd Hoffmann <kraxel@redhat.com>
> Cc: Jiaxin Wu <jiaxin.wu@intel.com>
> ---
> UefiCpuPkg/Library/SmmCpuSyncLib/SmmCpuSyncLib.inf | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/UefiCpuPkg/Library/SmmCpuSyncLib/SmmCpuSyncLib.inf
> b/UefiCpuPkg/Library/SmmCpuSyncLib/SmmCpuSyncLib.inf
> index 6b0d49c30a..2cfbd27b41 100644
> --- a/UefiCpuPkg/Library/SmmCpuSyncLib/SmmCpuSyncLib.inf
> +++ b/UefiCpuPkg/Library/SmmCpuSyncLib/SmmCpuSyncLib.inf
> @@ -3,7 +3,7 @@
> #
> # This is SMM CPU Synchronization lib used for SMM CPU sync operations.
> #
> -# Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
> +# Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
> # SPDX-License-Identifier: BSD-2-Clause-Patent
> #
> ##
> @@ -13,7 +13,7 @@
> BASE_NAME = SmmCpuSyncLib
> FILE_GUID = 1ca1bc1a-16a4-46ef-956a-ca500fd3381f
> MODULE_TYPE = DXE_SMM_DRIVER
> - LIBRARY_CLASS = SmmCpuSyncLib|DXE_SMM_DRIVER
> + LIBRARY_CLASS = SmmCpuSyncLib|DXE_SMM_DRIVER
> MM_STANDALONE
>
> [Sources]
> SmmCpuSyncLib.c
> --
> 2.39.1.windows.1
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#118126): https://edk2.groups.io/g/devel/message/118126
Mute This Topic: https://groups.io/mt/105685282/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [edk2-devel] [PATCH 1/1] UefiCpuPkg/SmmCpuSyncLib: Add MM_STANDALONE tag.
2024-04-23 5:57 ` [edk2-devel] [PATCH 1/1] " Yuanhao Xie
2024-04-23 6:54 ` Wu, Jiaxin
@ 2024-04-25 5:53 ` Ni, Ray
2024-04-25 5:54 ` Yuanhao Xie
1 sibling, 1 reply; 5+ messages in thread
From: Ni, Ray @ 2024-04-25 5:53 UTC (permalink / raw)
To: Xie, Yuanhao, devel@edk2.groups.io
Cc: Dong, Eric, Kumar, Rahul R, Gerd Hoffmann, Wu, Jiaxin
[-- Attachment #1: Type: text/plain, Size: 1100 bytes --]
-# Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
Yuanhao, why did you change the copyright year from 2023 to 2024?
You can either leave it unchanged, or change it to "2023 - 2024".
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
@@ -13,7 +13,7 @@
BASE_NAME = SmmCpuSyncLib
FILE_GUID = 1ca1bc1a-16a4-46ef-956a-ca500fd3381f
MODULE_TYPE = DXE_SMM_DRIVER
- LIBRARY_CLASS = SmmCpuSyncLib|DXE_SMM_DRIVER
+ LIBRARY_CLASS = SmmCpuSyncLib|DXE_SMM_DRIVER MM_STANDALONE
[Sources]
SmmCpuSyncLib.c
--
2.39.1.windows.1
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#118269): https://edk2.groups.io/g/devel/message/118269
Mute This Topic: https://groups.io/mt/105685282/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
[-- Attachment #2: Type: text/html, Size: 3265 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [edk2-devel] [PATCH 1/1] UefiCpuPkg/SmmCpuSyncLib: Add MM_STANDALONE tag.
2024-04-25 5:53 ` Ni, Ray
@ 2024-04-25 5:54 ` Yuanhao Xie
0 siblings, 0 replies; 5+ messages in thread
From: Yuanhao Xie @ 2024-04-25 5:54 UTC (permalink / raw)
To: Ni, Ray, devel@edk2.groups.io
Cc: Dong, Eric, Kumar, Rahul R, Gerd Hoffmann, Wu, Jiaxin
[-- Attachment #1: Type: text/plain, Size: 1476 bytes --]
Ok!
From: Ni, Ray <ray.ni@intel.com>
Sent: Thursday, April 25, 2024 1:54 PM
To: Xie, Yuanhao <yuanhao.xie@intel.com>; devel@edk2.groups.io
Cc: Dong, Eric <eric.dong@intel.com>; Kumar, Rahul R <rahul.r.kumar@intel.com>; Gerd Hoffmann <kraxel@redhat.com>; Wu, Jiaxin <jiaxin.wu@intel.com>
Subject: Re: [PATCH 1/1] UefiCpuPkg/SmmCpuSyncLib: Add MM_STANDALONE tag.
-# Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
Yuanhao, why did you change the copyright year from 2023 to 2024?
You can either leave it unchanged, or change it to "2023 - 2024".
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
@@ -13,7 +13,7 @@
BASE_NAME = SmmCpuSyncLib
FILE_GUID = 1ca1bc1a-16a4-46ef-956a-ca500fd3381f
MODULE_TYPE = DXE_SMM_DRIVER
- LIBRARY_CLASS = SmmCpuSyncLib|DXE_SMM_DRIVER
+ LIBRARY_CLASS = SmmCpuSyncLib|DXE_SMM_DRIVER MM_STANDALONE
[Sources]
SmmCpuSyncLib.c
--
2.39.1.windows.1
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#118270): https://edk2.groups.io/g/devel/message/118270
Mute This Topic: https://groups.io/mt/105685282/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
[-- Attachment #2: Type: text/html, Size: 4947 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-04-25 5:54 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-23 5:57 [edk2-devel] [PATCH 0/1] UefiCpuPkg/SmmCpuSyncLib: Add MM_STANDALONE tag Yuanhao Xie
2024-04-23 5:57 ` [edk2-devel] [PATCH 1/1] " Yuanhao Xie
2024-04-23 6:54 ` Wu, Jiaxin
2024-04-25 5:53 ` Ni, Ray
2024-04-25 5:54 ` Yuanhao Xie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox