* [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level
@ 2022-01-11 1:26 Sheng Wei
2022-01-11 2:41 ` Ni, Ray
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Sheng Wei @ 2022-01-11 1:26 UTC (permalink / raw)
To: devel; +Cc: Ray Ni, Rangasai V Chaganty, Jenny Huang, Robert Kowalewski
Reduce the debug level from DEBUG_INFO to DEBUG_VERBOSE in
function SubmitQueuedInvalidationDescriptor ().
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3801
Cc: Ray Ni <ray.ni@intel.com>
Cc: Rangasai V Chaganty <rangasai.v.chaganty@intel.com>
Cc: Jenny Huang <jenny.huang@intel.com>
Cc: Robert Kowalewski <robert.kowalewski@intel.com>
Signed-off-by: Sheng Wei <w.sheng@intel.com>
---
Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c b/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
index 1ce9c1c0..c88f462b 100644
--- a/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
+++ b/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
@@ -238,7 +238,7 @@ SubmitQueuedInvalidationDescriptor (
QiDescLength = mVtdUnitInformation[VtdIndex].QiDescLength;
BaseDesc = mVtdUnitInformation[VtdIndex].QiDesc;
- DEBUG((DEBUG_INFO, "[%d] Submit QI Descriptor [0x%08x, 0x%08x] Free Head (%d)\n", VtdIndex, Desc->Low, Desc->High, mVtdUnitInformation[VtdIndex].QiFreeHead));
+ DEBUG((DEBUG_VERBOSE, "[%d] Submit QI Descriptor [0x%08x, 0x%08x] Free Head (%d)\n", VtdIndex, Desc->Low, Desc->High, mVtdUnitInformation[VtdIndex].QiFreeHead));
BaseDesc[mVtdUnitInformation[VtdIndex].QiFreeHead].Low = Desc->Low;
BaseDesc[mVtdUnitInformation[VtdIndex].QiFreeHead].High = Desc->High;
--
2.16.2.windows.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level
2022-01-11 1:26 [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level Sheng Wei
@ 2022-01-11 2:41 ` Ni, Ray
2022-01-11 4:10 ` Chaganty, Rangasai V
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Ni, Ray @ 2022-01-11 2:41 UTC (permalink / raw)
To: Sheng, W, devel@edk2.groups.io
Cc: Chaganty, Rangasai V, Huang, Jenny, Kowalewski, Robert
Reviewed-by: Ray Ni <ray.ni@intel.com>
> -----Original Message-----
> From: Sheng, W <w.sheng@intel.com>
> Sent: Tuesday, January 11, 2022 9:27 AM
> To: devel@edk2.groups.io
> Cc: Ni, Ray <ray.ni@intel.com>; Chaganty, Rangasai V <rangasai.v.chaganty@intel.com>; Huang, Jenny
> <jenny.huang@intel.com>; Kowalewski, Robert <robert.kowalewski@intel.com>
> Subject: [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level
>
> Reduce the debug level from DEBUG_INFO to DEBUG_VERBOSE in
> function SubmitQueuedInvalidationDescriptor ().
>
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3801
>
> Cc: Ray Ni <ray.ni@intel.com>
> Cc: Rangasai V Chaganty <rangasai.v.chaganty@intel.com>
> Cc: Jenny Huang <jenny.huang@intel.com>
> Cc: Robert Kowalewski <robert.kowalewski@intel.com>
> Signed-off-by: Sheng Wei <w.sheng@intel.com>
> ---
> Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
> b/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
> index 1ce9c1c0..c88f462b 100644
> --- a/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
> +++ b/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
> @@ -238,7 +238,7 @@ SubmitQueuedInvalidationDescriptor (
> QiDescLength = mVtdUnitInformation[VtdIndex].QiDescLength;
> BaseDesc = mVtdUnitInformation[VtdIndex].QiDesc;
>
> - DEBUG((DEBUG_INFO, "[%d] Submit QI Descriptor [0x%08x, 0x%08x] Free Head (%d)\n", VtdIndex, Desc->Low, Desc->High,
> mVtdUnitInformation[VtdIndex].QiFreeHead));
> + DEBUG((DEBUG_VERBOSE, "[%d] Submit QI Descriptor [0x%08x, 0x%08x] Free Head (%d)\n", VtdIndex, Desc->Low, Desc-
> >High, mVtdUnitInformation[VtdIndex].QiFreeHead));
>
> BaseDesc[mVtdUnitInformation[VtdIndex].QiFreeHead].Low = Desc->Low;
> BaseDesc[mVtdUnitInformation[VtdIndex].QiFreeHead].High = Desc->High;
> --
> 2.16.2.windows.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level
2022-01-11 1:26 [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level Sheng Wei
2022-01-11 2:41 ` Ni, Ray
@ 2022-01-11 4:10 ` Chaganty, Rangasai V
2022-01-11 7:17 ` Kowalewski, Robert
2022-01-11 7:53 ` Huang, Jenny
3 siblings, 0 replies; 6+ messages in thread
From: Chaganty, Rangasai V @ 2022-01-11 4:10 UTC (permalink / raw)
To: Sheng, W, devel@edk2.groups.io; +Cc: Ni, Ray, Huang, Jenny, Kowalewski, Robert
Reviewed-by: Sai Chaganty <rangasai.v.chaganty@intel.com>
-----Original Message-----
From: Sheng, W <w.sheng@intel.com>
Sent: Monday, January 10, 2022 5:27 PM
To: devel@edk2.groups.io
Cc: Ni, Ray <ray.ni@intel.com>; Chaganty, Rangasai V <rangasai.v.chaganty@intel.com>; Huang, Jenny <jenny.huang@intel.com>; Kowalewski, Robert <robert.kowalewski@intel.com>
Subject: [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level
Reduce the debug level from DEBUG_INFO to DEBUG_VERBOSE in function SubmitQueuedInvalidationDescriptor ().
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3801
Cc: Ray Ni <ray.ni@intel.com>
Cc: Rangasai V Chaganty <rangasai.v.chaganty@intel.com>
Cc: Jenny Huang <jenny.huang@intel.com>
Cc: Robert Kowalewski <robert.kowalewski@intel.com>
Signed-off-by: Sheng Wei <w.sheng@intel.com>
---
Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c b/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
index 1ce9c1c0..c88f462b 100644
--- a/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
+++ b/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
@@ -238,7 +238,7 @@ SubmitQueuedInvalidationDescriptor (
QiDescLength = mVtdUnitInformation[VtdIndex].QiDescLength;
BaseDesc = mVtdUnitInformation[VtdIndex].QiDesc;
- DEBUG((DEBUG_INFO, "[%d] Submit QI Descriptor [0x%08x, 0x%08x] Free Head (%d)\n", VtdIndex, Desc->Low, Desc->High, mVtdUnitInformation[VtdIndex].QiFreeHead));
+ DEBUG((DEBUG_VERBOSE, "[%d] Submit QI Descriptor [0x%08x, 0x%08x]
+ Free Head (%d)\n", VtdIndex, Desc->Low, Desc->High,
+ mVtdUnitInformation[VtdIndex].QiFreeHead));
BaseDesc[mVtdUnitInformation[VtdIndex].QiFreeHead].Low = Desc->Low;
BaseDesc[mVtdUnitInformation[VtdIndex].QiFreeHead].High = Desc->High;
--
2.16.2.windows.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level
2022-01-11 1:26 [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level Sheng Wei
2022-01-11 2:41 ` Ni, Ray
2022-01-11 4:10 ` Chaganty, Rangasai V
@ 2022-01-11 7:17 ` Kowalewski, Robert
2022-01-11 7:53 ` Huang, Jenny
3 siblings, 0 replies; 6+ messages in thread
From: Kowalewski, Robert @ 2022-01-11 7:17 UTC (permalink / raw)
To: Sheng, W, devel@edk2.groups.io
Cc: Ni, Ray, Chaganty, Rangasai V, Huang, Jenny
Reviewed-by: Robert Kowalewski <robert.kowalewski@intel.com>
-----Original Message-----
From: Sheng, W <w.sheng@intel.com>
Sent: Tuesday, January 11, 2022 2:27 AM
To: devel@edk2.groups.io
Cc: Ni, Ray <ray.ni@intel.com>; Chaganty, Rangasai V <rangasai.v.chaganty@intel.com>; Huang, Jenny <jenny.huang@intel.com>; Kowalewski, Robert <robert.kowalewski@intel.com>
Subject: [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level
Reduce the debug level from DEBUG_INFO to DEBUG_VERBOSE in function SubmitQueuedInvalidationDescriptor ().
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3801
Cc: Ray Ni <ray.ni@intel.com>
Cc: Rangasai V Chaganty <rangasai.v.chaganty@intel.com>
Cc: Jenny Huang <jenny.huang@intel.com>
Cc: Robert Kowalewski <robert.kowalewski@intel.com>
Signed-off-by: Sheng Wei <w.sheng@intel.com>
---
Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c b/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
index 1ce9c1c0..c88f462b 100644
--- a/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
+++ b/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
@@ -238,7 +238,7 @@ SubmitQueuedInvalidationDescriptor (
QiDescLength = mVtdUnitInformation[VtdIndex].QiDescLength;
BaseDesc = mVtdUnitInformation[VtdIndex].QiDesc;
- DEBUG((DEBUG_INFO, "[%d] Submit QI Descriptor [0x%08x, 0x%08x] Free Head (%d)\n", VtdIndex, Desc->Low, Desc->High, mVtdUnitInformation[VtdIndex].QiFreeHead));
+ DEBUG((DEBUG_VERBOSE, "[%d] Submit QI Descriptor [0x%08x, 0x%08x]
+ Free Head (%d)\n", VtdIndex, Desc->Low, Desc->High,
+ mVtdUnitInformation[VtdIndex].QiFreeHead));
BaseDesc[mVtdUnitInformation[VtdIndex].QiFreeHead].Low = Desc->Low;
BaseDesc[mVtdUnitInformation[VtdIndex].QiFreeHead].High = Desc->High;
--
2.16.2.windows.1
---------------------------------------------------------------------
Intel Technology Poland sp. z o.o.
ul. Slowackiego 173 | 80-298 Gdansk | Sad Rejonowy Gdansk Polnoc | VII Wydzial Gospodarczy Krajowego Rejestru Sadowego - KRS 101882 | NIP 957-07-52-316 | Kapital zakladowy 200.000 PLN.
Ta wiadomosc wraz z zalacznikami jest przeznaczona dla okreslonego adresata i moze zawierac informacje poufne. W razie przypadkowego otrzymania tej wiadomosci, prosimy o powiadomienie nadawcy oraz trwale jej usuniecie; jakiekolwiek przegladanie lub rozpowszechnianie jest zabronione.
This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). If you are not the intended recipient, please contact the sender and delete all copies; any review or distribution by others is strictly prohibited.
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level
2022-01-11 1:26 [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level Sheng Wei
` (2 preceding siblings ...)
2022-01-11 7:17 ` Kowalewski, Robert
@ 2022-01-11 7:53 ` Huang, Jenny
2022-01-12 7:03 ` Ni, Ray
3 siblings, 1 reply; 6+ messages in thread
From: Huang, Jenny @ 2022-01-11 7:53 UTC (permalink / raw)
To: Sheng, W, devel@edk2.groups.io
Cc: Ni, Ray, Chaganty, Rangasai V, Kowalewski, Robert
Reviewed-by: Jenny Huang <jenny.huang@intel.com>
-----Original Message-----
From: Sheng, W <w.sheng@intel.com>
Sent: Tuesday, January 11, 2022 9:27 AM
To: devel@edk2.groups.io
Cc: Ni, Ray <ray.ni@intel.com>; Chaganty, Rangasai V <rangasai.v.chaganty@intel.com>; Huang, Jenny <jenny.huang@intel.com>; Kowalewski, Robert <robert.kowalewski@intel.com>
Subject: [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level
Reduce the debug level from DEBUG_INFO to DEBUG_VERBOSE in function SubmitQueuedInvalidationDescriptor ().
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3801
Cc: Ray Ni <ray.ni@intel.com>
Cc: Rangasai V Chaganty <rangasai.v.chaganty@intel.com>
Cc: Jenny Huang <jenny.huang@intel.com>
Cc: Robert Kowalewski <robert.kowalewski@intel.com>
Signed-off-by: Sheng Wei <w.sheng@intel.com>
---
Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c b/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
index 1ce9c1c0..c88f462b 100644
--- a/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
+++ b/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
@@ -238,7 +238,7 @@ SubmitQueuedInvalidationDescriptor (
QiDescLength = mVtdUnitInformation[VtdIndex].QiDescLength;
BaseDesc = mVtdUnitInformation[VtdIndex].QiDesc;
- DEBUG((DEBUG_INFO, "[%d] Submit QI Descriptor [0x%08x, 0x%08x] Free Head (%d)\n", VtdIndex, Desc->Low, Desc->High, mVtdUnitInformation[VtdIndex].QiFreeHead));
+ DEBUG((DEBUG_VERBOSE, "[%d] Submit QI Descriptor [0x%08x, 0x%08x]
+ Free Head (%d)\n", VtdIndex, Desc->Low, Desc->High,
+ mVtdUnitInformation[VtdIndex].QiFreeHead));
BaseDesc[mVtdUnitInformation[VtdIndex].QiFreeHead].Low = Desc->Low;
BaseDesc[mVtdUnitInformation[VtdIndex].QiFreeHead].High = Desc->High;
--
2.16.2.windows.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level
2022-01-11 7:53 ` Huang, Jenny
@ 2022-01-12 7:03 ` Ni, Ray
0 siblings, 0 replies; 6+ messages in thread
From: Ni, Ray @ 2022-01-12 7:03 UTC (permalink / raw)
To: Huang, Jenny, Sheng, W, devel@edk2.groups.io
Cc: Chaganty, Rangasai V, Kowalewski, Robert
Merged.
-----Original Message-----
From: Huang, Jenny <jenny.huang@intel.com>
Sent: Tuesday, January 11, 2022 3:54 PM
To: Sheng, W <w.sheng@intel.com>; devel@edk2.groups.io
Cc: Ni, Ray <ray.ni@intel.com>; Chaganty, Rangasai V <rangasai.v.chaganty@intel.com>; Kowalewski, Robert <robert.kowalewski@intel.com>
Subject: RE: [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level
Reviewed-by: Jenny Huang <jenny.huang@intel.com>
-----Original Message-----
From: Sheng, W <w.sheng@intel.com>
Sent: Tuesday, January 11, 2022 9:27 AM
To: devel@edk2.groups.io
Cc: Ni, Ray <ray.ni@intel.com>; Chaganty, Rangasai V <rangasai.v.chaganty@intel.com>; Huang, Jenny <jenny.huang@intel.com>; Kowalewski, Robert <robert.kowalewski@intel.com>
Subject: [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level
Reduce the debug level from DEBUG_INFO to DEBUG_VERBOSE in function SubmitQueuedInvalidationDescriptor ().
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3801
Cc: Ray Ni <ray.ni@intel.com>
Cc: Rangasai V Chaganty <rangasai.v.chaganty@intel.com>
Cc: Jenny Huang <jenny.huang@intel.com>
Cc: Robert Kowalewski <robert.kowalewski@intel.com>
Signed-off-by: Sheng Wei <w.sheng@intel.com>
---
Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c b/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
index 1ce9c1c0..c88f462b 100644
--- a/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
+++ b/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c
@@ -238,7 +238,7 @@ SubmitQueuedInvalidationDescriptor (
QiDescLength = mVtdUnitInformation[VtdIndex].QiDescLength;
BaseDesc = mVtdUnitInformation[VtdIndex].QiDesc;
- DEBUG((DEBUG_INFO, "[%d] Submit QI Descriptor [0x%08x, 0x%08x] Free Head (%d)\n", VtdIndex, Desc->Low, Desc->High, mVtdUnitInformation[VtdIndex].QiFreeHead));
+ DEBUG((DEBUG_VERBOSE, "[%d] Submit QI Descriptor [0x%08x, 0x%08x]
+ Free Head (%d)\n", VtdIndex, Desc->Low, Desc->High,
+ mVtdUnitInformation[VtdIndex].QiFreeHead));
BaseDesc[mVtdUnitInformation[VtdIndex].QiFreeHead].Low = Desc->Low;
BaseDesc[mVtdUnitInformation[VtdIndex].QiFreeHead].High = Desc->High;
--
2.16.2.windows.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-01-12 7:03 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-11 1:26 [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level Sheng Wei
2022-01-11 2:41 ` Ni, Ray
2022-01-11 4:10 ` Chaganty, Rangasai V
2022-01-11 7:17 ` Kowalewski, Robert
2022-01-11 7:53 ` Huang, Jenny
2022-01-12 7:03 ` Ni, Ray
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox