* [edk2-devel] [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
@ 2023-12-07 0:21 Ashish Singhal via groups.io
2023-12-14 23:30 ` Ashish Singhal via groups.io
0 siblings, 1 reply; 7+ messages in thread
From: Ashish Singhal via groups.io @ 2023-12-07 0:21 UTC (permalink / raw)
To: devel, gaoliming, jbrasen; +Cc: Ashish Singhal
ResetSystem runtime call allows for sending reset data that
starts with a NULL terminated string. Add support to print
that string on console.
Signed-off-by: Ashish Singhal <ashishsingha@nvidia.com>
---
.../Universal/ResetSystemRuntimeDxe/ResetSystem.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
index 42f1b1d015..72bb1d2be6 100644
--- a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
+++ b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
@@ -252,6 +252,14 @@ RuntimeServiceResetSystem (
mResetNotifyDepth
));
+ if ((ResetData != NULL) && (DataSize != 0)) {
+ DEBUG ((
+ DEBUG_INFO,
+ "DXE ResetSystem2: ResetData: %s\n",
+ ResetData
+ ));
+ }
+
if (mResetNotifyDepth <= MAX_RESET_NOTIFY_DEPTH) {
if (!EfiAtRuntime ()) {
//
--
2.17.1
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#112145): https://edk2.groups.io/g/devel/message/112145
Mute This Topic: https://groups.io/mt/103025596/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] 7+ messages in thread
* Re: [edk2-devel] [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
2023-12-07 0:21 [edk2-devel] [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data Ashish Singhal via groups.io
@ 2023-12-14 23:30 ` Ashish Singhal via groups.io
2024-01-01 16:47 ` Ashish Singhal via groups.io
0 siblings, 1 reply; 7+ messages in thread
From: Ashish Singhal via groups.io @ 2023-12-14 23:30 UTC (permalink / raw)
To: devel@edk2.groups.io, gaoliming@byosoft.com.cn, Jeff Brasen
[-- Attachment #1: Type: text/plain, Size: 1809 bytes --]
Hello Gao,
Checking if you have any feedback on this.
Thanks
Ashish
________________________________
From: Ashish Singhal <ashishsingha@nvidia.com>
Sent: Wednesday, December 6, 2023 5:21 PM
To: devel@edk2.groups.io <devel@edk2.groups.io>; gaoliming@byosoft.com.cn <gaoliming@byosoft.com.cn>; Jeff Brasen <jbrasen@nvidia.com>
Cc: Ashish Singhal <ashishsingha@nvidia.com>
Subject: [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
ResetSystem runtime call allows for sending reset data that
starts with a NULL terminated string. Add support to print
that string on console.
Signed-off-by: Ashish Singhal <ashishsingha@nvidia.com>
---
.../Universal/ResetSystemRuntimeDxe/ResetSystem.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
index 42f1b1d015..72bb1d2be6 100644
--- a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
+++ b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
@@ -252,6 +252,14 @@ RuntimeServiceResetSystem (
mResetNotifyDepth
));
+ if ((ResetData != NULL) && (DataSize != 0)) {
+ DEBUG ((
+ DEBUG_INFO,
+ "DXE ResetSystem2: ResetData: %s\n",
+ ResetData
+ ));
+ }
+
if (mResetNotifyDepth <= MAX_RESET_NOTIFY_DEPTH) {
if (!EfiAtRuntime ()) {
//
--
2.17.1
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#112564): https://edk2.groups.io/g/devel/message/112564
Mute This Topic: https://groups.io/mt/103025596/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: 5150 bytes --]
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [edk2-devel] [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
2023-12-14 23:30 ` Ashish Singhal via groups.io
@ 2024-01-01 16:47 ` Ashish Singhal via groups.io
2024-01-19 18:09 ` Ashish Singhal via groups.io
0 siblings, 1 reply; 7+ messages in thread
From: Ashish Singhal via groups.io @ 2024-01-01 16:47 UTC (permalink / raw)
To: devel@edk2.groups.io, gaoliming@byosoft.com.cn, Jeff Brasen
[-- Attachment #1: Type: text/plain, Size: 2218 bytes --]
Hello,
Checking again for some feedback on this.
Thanks
Ashish
________________________________
From: Ashish Singhal <ashishsingha@nvidia.com>
Sent: Thursday, December 14, 2023 4:30 PM
To: devel@edk2.groups.io <devel@edk2.groups.io>; gaoliming@byosoft.com.cn <gaoliming@byosoft.com.cn>; Jeff Brasen <jbrasen@nvidia.com>
Subject: Re: [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
Hello Gao,
Checking if you have any feedback on this.
Thanks
Ashish
________________________________
From: Ashish Singhal <ashishsingha@nvidia.com>
Sent: Wednesday, December 6, 2023 5:21 PM
To: devel@edk2.groups.io <devel@edk2.groups.io>; gaoliming@byosoft.com.cn <gaoliming@byosoft.com.cn>; Jeff Brasen <jbrasen@nvidia.com>
Cc: Ashish Singhal <ashishsingha@nvidia.com>
Subject: [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
ResetSystem runtime call allows for sending reset data that
starts with a NULL terminated string. Add support to print
that string on console.
Signed-off-by: Ashish Singhal <ashishsingha@nvidia.com>
---
.../Universal/ResetSystemRuntimeDxe/ResetSystem.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
index 42f1b1d015..72bb1d2be6 100644
--- a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
+++ b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
@@ -252,6 +252,14 @@ RuntimeServiceResetSystem (
mResetNotifyDepth
));
+ if ((ResetData != NULL) && (DataSize != 0)) {
+ DEBUG ((
+ DEBUG_INFO,
+ "DXE ResetSystem2: ResetData: %s\n",
+ ResetData
+ ));
+ }
+
if (mResetNotifyDepth <= MAX_RESET_NOTIFY_DEPTH) {
if (!EfiAtRuntime ()) {
//
--
2.17.1
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#113012): https://edk2.groups.io/g/devel/message/113012
Mute This Topic: https://groups.io/mt/103025596/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: 6904 bytes --]
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [edk2-devel] [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
2024-01-01 16:47 ` Ashish Singhal via groups.io
@ 2024-01-19 18:09 ` Ashish Singhal via groups.io
2024-01-19 18:38 ` Leif Lindholm
0 siblings, 1 reply; 7+ messages in thread
From: Ashish Singhal via groups.io @ 2024-01-19 18:09 UTC (permalink / raw)
To: devel@edk2.groups.io, gaoliming@byosoft.com.cn, Jeff Brasen,
michael.d.kinney@intel.com, quic_llindhol@quicinc.com,
afish@apple.com
[-- Attachment #1: Type: text/plain, Size: 2624 bytes --]
Adding tianocore stewards to see if we can get some traction on this.
________________________________
From: Ashish Singhal <ashishsingha@nvidia.com>
Sent: Monday, January 1, 2024 10:17 PM
To: devel@edk2.groups.io <devel@edk2.groups.io>; gaoliming@byosoft.com.cn <gaoliming@byosoft.com.cn>; Jeff Brasen <jbrasen@nvidia.com>
Subject: Re: [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
Hello,
Checking again for some feedback on this.
Thanks
Ashish
________________________________
From: Ashish Singhal <ashishsingha@nvidia.com>
Sent: Thursday, December 14, 2023 4:30 PM
To: devel@edk2.groups.io <devel@edk2.groups.io>; gaoliming@byosoft.com.cn <gaoliming@byosoft.com.cn>; Jeff Brasen <jbrasen@nvidia.com>
Subject: Re: [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
Hello Gao,
Checking if you have any feedback on this.
Thanks
Ashish
________________________________
From: Ashish Singhal <ashishsingha@nvidia.com>
Sent: Wednesday, December 6, 2023 5:21 PM
To: devel@edk2.groups.io <devel@edk2.groups.io>; gaoliming@byosoft.com.cn <gaoliming@byosoft.com.cn>; Jeff Brasen <jbrasen@nvidia.com>
Cc: Ashish Singhal <ashishsingha@nvidia.com>
Subject: [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
ResetSystem runtime call allows for sending reset data that
starts with a NULL terminated string. Add support to print
that string on console.
Signed-off-by: Ashish Singhal <ashishsingha@nvidia.com>
---
.../Universal/ResetSystemRuntimeDxe/ResetSystem.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
index 42f1b1d015..72bb1d2be6 100644
--- a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
+++ b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
@@ -252,6 +252,14 @@ RuntimeServiceResetSystem (
mResetNotifyDepth
));
+ if ((ResetData != NULL) && (DataSize != 0)) {
+ DEBUG ((
+ DEBUG_INFO,
+ "DXE ResetSystem2: ResetData: %s\n",
+ ResetData
+ ));
+ }
+
if (mResetNotifyDepth <= MAX_RESET_NOTIFY_DEPTH) {
if (!EfiAtRuntime ()) {
//
--
2.17.1
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#114092): https://edk2.groups.io/g/devel/message/114092
Mute This Topic: https://groups.io/mt/103025596/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: 7845 bytes --]
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [edk2-devel] [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
2024-01-19 18:09 ` Ashish Singhal via groups.io
@ 2024-01-19 18:38 ` Leif Lindholm
2024-01-22 1:31 ` Gao, Zhichao
0 siblings, 1 reply; 7+ messages in thread
From: Leif Lindholm @ 2024-01-19 18:38 UTC (permalink / raw)
To: devel, ashishsingha, gaoliming@byosoft.com.cn, Jeff Brasen,
michael.d.kinney@intel.com, afish@apple.com, Zhichao Gao
Hi Ashish,
On 2024-01-19 18:09, Ashish Singhal via groups.io wrote:
> Adding tianocore stewards to see if we can get some traction on this.
You've not cc:d Zhichao - who maintains that component - on this patch,
I've added them.
Please use BaseTools/Scripts/GetMaintainer.py to see who to cc -
maintainership of some of the modules are split in multiple dimensions
and it's basically impossible to work out manually.
/
Leif
> ------------------------------------------------------------------------
> *From:* Ashish Singhal <ashishsingha@nvidia.com>
> *Sent:* Wednesday, December 6, 2023 5:21 PM
> *To:* devel@edk2.groups.io <devel@edk2.groups.io>;
> gaoliming@byosoft.com.cn <gaoliming@byosoft.com.cn>; Jeff Brasen
> <jbrasen@nvidia.com>
> *Cc:* Ashish Singhal <ashishsingha@nvidia.com>
> *Subject:* [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
> ResetSystem runtime call allows for sending reset data that
> starts with a NULL terminated string. Add support to print
> that string on console.
>
> Signed-off-by: Ashish Singhal <ashishsingha@nvidia.com>
> ---
> .../Universal/ResetSystemRuntimeDxe/ResetSystem.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
> b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
> index 42f1b1d015..72bb1d2be6 100644
> --- a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
> +++ b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
> @@ -252,6 +252,14 @@ RuntimeServiceResetSystem (
> mResetNotifyDepth
> ));
>
> + if ((ResetData != NULL) && (DataSize != 0)) {
> + DEBUG ((
> + DEBUG_INFO,
> + "DXE ResetSystem2: ResetData: %s\n",
> + ResetData
> + ));
> + }
> +
> if (mResetNotifyDepth <= MAX_RESET_NOTIFY_DEPTH) {
> if (!EfiAtRuntime ()) {
> //
> --
> 2.17.1
>
>
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#114093): https://edk2.groups.io/g/devel/message/114093
Mute This Topic: https://groups.io/mt/103025596/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/leave/12367111/7686176/1913456212/xyzzy [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [edk2-devel] [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
2024-01-19 18:38 ` Leif Lindholm
@ 2024-01-22 1:31 ` Gao, Zhichao
2024-01-22 2:52 ` Ashish Singhal via groups.io
0 siblings, 1 reply; 7+ messages in thread
From: Gao, Zhichao @ 2024-01-22 1:31 UTC (permalink / raw)
To: Leif Lindholm, devel@edk2.groups.io, ashishsingha@nvidia.com,
gaoliming@byosoft.com.cn, Jeff Brasen, Kinney, Michael D,
afish@apple.com
Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>
Thanks,
Zhichao
> -----Original Message-----
> From: Leif Lindholm <quic_llindhol@quicinc.com>
> Sent: Saturday, January 20, 2024 2:38 AM
> To: devel@edk2.groups.io; ashishsingha@nvidia.com;
> gaoliming@byosoft.com.cn; Jeff Brasen <jbrasen@nvidia.com>; Kinney,
> Michael D <michael.d.kinney@intel.com>; afish@apple.com; Gao, Zhichao
> <zhichao.gao@intel.com>
> Subject: Re: [edk2-devel] [PATCH]
> MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
>
> Hi Ashish,
>
> On 2024-01-19 18:09, Ashish Singhal via groups.io wrote:
> > Adding tianocore stewards to see if we can get some traction on this.
>
> You've not cc:d Zhichao - who maintains that component - on this patch, I've
> added them.
>
> Please use BaseTools/Scripts/GetMaintainer.py to see who to cc -
> maintainership of some of the modules are split in multiple dimensions and
> it's basically impossible to work out manually.
>
> /
> Leif
>
> > ------------------------------------------------------------------------
> > *From:* Ashish Singhal <ashishsingha@nvidia.com>
> > *Sent:* Wednesday, December 6, 2023 5:21 PM
> > *To:* devel@edk2.groups.io <devel@edk2.groups.io>;
> > gaoliming@byosoft.com.cn <gaoliming@byosoft.com.cn>; Jeff Brasen
> > <jbrasen@nvidia.com>
> > *Cc:* Ashish Singhal <ashishsingha@nvidia.com>
> > *Subject:* [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset
> Data
> > ResetSystem runtime call allows for sending reset data that
> > starts with a NULL terminated string. Add support to print
> > that string on console.
> >
> > Signed-off-by: Ashish Singhal <ashishsingha@nvidia.com>
> > ---
> > .../Universal/ResetSystemRuntimeDxe/ResetSystem.c | 8 ++++++++
> > 1 file changed, 8 insertions(+)
> >
> > diff --git
> a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
> > b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
> > index 42f1b1d015..72bb1d2be6 100644
> > --- a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
> > +++
> b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
> > @@ -252,6 +252,14 @@ RuntimeServiceResetSystem (
> > mResetNotifyDepth
> > ));
> >
> > + if ((ResetData != NULL) && (DataSize != 0)) {
> > + DEBUG ((
> > + DEBUG_INFO,
> > + "DXE ResetSystem2: ResetData: %s\n",
> > + ResetData
> > + ));
> > + }
> > +
> > if (mResetNotifyDepth <= MAX_RESET_NOTIFY_DEPTH) {
> > if (!EfiAtRuntime ()) {
> > //
> > --
> > 2.17.1
> >
> >
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#114126): https://edk2.groups.io/g/devel/message/114126
Mute This Topic: https://groups.io/mt/103025596/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [edk2-devel] [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
2024-01-22 1:31 ` Gao, Zhichao
@ 2024-01-22 2:52 ` Ashish Singhal via groups.io
0 siblings, 0 replies; 7+ messages in thread
From: Ashish Singhal via groups.io @ 2024-01-22 2:52 UTC (permalink / raw)
To: Gao, Zhichao, Leif Lindholm, devel@edk2.groups.io,
gaoliming@byosoft.com.cn, Jeff Brasen, Kinney, Michael D,
afish@apple.com
[-- Attachment #1: Type: text/plain, Size: 3739 bytes --]
Thanks for the information Leif.
Zhichao,
I have created the PR https://github.com/tianocore/edk2/pull/5151 for this change and it has passed all tests. Please provide the push label.
Thanks
Ashish
________________________________
From: Gao, Zhichao <zhichao.gao@intel.com>
Sent: Monday, January 22, 2024 7:01 AM
To: Leif Lindholm <quic_llindhol@quicinc.com>; devel@edk2.groups.io <devel@edk2.groups.io>; Ashish Singhal <ashishsingha@nvidia.com>; gaoliming@byosoft.com.cn <gaoliming@byosoft.com.cn>; Jeff Brasen <jbrasen@nvidia.com>; Kinney, Michael D <michael.d.kinney@intel.com>; afish@apple.com <afish@apple.com>
Subject: RE: [edk2-devel] [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
External email: Use caution opening links or attachments
Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>
Thanks,
Zhichao
> -----Original Message-----
> From: Leif Lindholm <quic_llindhol@quicinc.com>
> Sent: Saturday, January 20, 2024 2:38 AM
> To: devel@edk2.groups.io; ashishsingha@nvidia.com;
> gaoliming@byosoft.com.cn; Jeff Brasen <jbrasen@nvidia.com>; Kinney,
> Michael D <michael.d.kinney@intel.com>; afish@apple.com; Gao, Zhichao
> <zhichao.gao@intel.com>
> Subject: Re: [edk2-devel] [PATCH]
> MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data
>
> Hi Ashish,
>
> On 2024-01-19 18:09, Ashish Singhal via groups.io wrote:
> > Adding tianocore stewards to see if we can get some traction on this.
>
> You've not cc:d Zhichao - who maintains that component - on this patch, I've
> added them.
>
> Please use BaseTools/Scripts/GetMaintainer.py to see who to cc -
> maintainership of some of the modules are split in multiple dimensions and
> it's basically impossible to work out manually.
>
> /
> Leif
>
> > ------------------------------------------------------------------------
> > *From:* Ashish Singhal <ashishsingha@nvidia.com>
> > *Sent:* Wednesday, December 6, 2023 5:21 PM
> > *To:* devel@edk2.groups.io <devel@edk2.groups.io>;
> > gaoliming@byosoft.com.cn <gaoliming@byosoft.com.cn>; Jeff Brasen
> > <jbrasen@nvidia.com>
> > *Cc:* Ashish Singhal <ashishsingha@nvidia.com>
> > *Subject:* [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset
> Data
> > ResetSystem runtime call allows for sending reset data that
> > starts with a NULL terminated string. Add support to print
> > that string on console.
> >
> > Signed-off-by: Ashish Singhal <ashishsingha@nvidia.com>
> > ---
> > .../Universal/ResetSystemRuntimeDxe/ResetSystem.c | 8 ++++++++
> > 1 file changed, 8 insertions(+)
> >
> > diff --git
> a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
> > b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
> > index 42f1b1d015..72bb1d2be6 100644
> > --- a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
> > +++
> b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
> > @@ -252,6 +252,14 @@ RuntimeServiceResetSystem (
> > mResetNotifyDepth
> > ));
> >
> > + if ((ResetData != NULL) && (DataSize != 0)) {
> > + DEBUG ((
> > + DEBUG_INFO,
> > + "DXE ResetSystem2: ResetData: %s\n",
> > + ResetData
> > + ));
> > + }
> > +
> > if (mResetNotifyDepth <= MAX_RESET_NOTIFY_DEPTH) {
> > if (!EfiAtRuntime ()) {
> > //
> > --
> > 2.17.1
> >
> >
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#114132): https://edk2.groups.io/g/devel/message/114132
Mute This Topic: https://groups.io/mt/103025596/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: 7399 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-01-22 2:52 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-07 0:21 [edk2-devel] [PATCH] MdeModulePkg/ResetSystemRuntimeDxe: Print Reset Data Ashish Singhal via groups.io
2023-12-14 23:30 ` Ashish Singhal via groups.io
2024-01-01 16:47 ` Ashish Singhal via groups.io
2024-01-19 18:09 ` Ashish Singhal via groups.io
2024-01-19 18:38 ` Leif Lindholm
2024-01-22 1:31 ` Gao, Zhichao
2024-01-22 2:52 ` Ashish Singhal via groups.io
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox