2020-04-13 22:29:55 +00:00
|
|
|
From a8ab276ab86f1e855adc8668e1abe6c85afb8364 Mon Sep 17 00:00:00 2001
|
2016-04-18 12:16:51 +00:00
|
|
|
From: Laszlo Ersek <lersek@redhat.com>
|
|
|
|
Date: Thu, 20 Feb 2014 22:54:45 +0100
|
2018-08-31 17:06:06 +00:00
|
|
|
Subject: [PATCH] OvmfPkg: increase max debug message length to 512
|
2016-04-18 12:16:51 +00:00
|
|
|
|
2018-05-29 21:06:35 +00:00
|
|
|
Upstream prefers short debug messages (sometimes even limited to 80
|
|
|
|
characters), but any line length under 512 characters is just unsuitable
|
|
|
|
for effective debugging. (For example, config strings in HII routing,
|
|
|
|
logged by the platform driver "OvmfPkg/PlatformDxe" on DEBUG_VERBOSE
|
|
|
|
level, can be several hundred characters long.) 512 is an empirically good
|
|
|
|
value.
|
|
|
|
|
|
|
|
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
|
2016-04-18 12:16:51 +00:00
|
|
|
---
|
|
|
|
OvmfPkg/Library/PlatformDebugLibIoPort/DebugLib.c | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/OvmfPkg/Library/PlatformDebugLibIoPort/DebugLib.c b/OvmfPkg/Library/PlatformDebugLibIoPort/DebugLib.c
|
2019-07-11 23:42:10 +00:00
|
|
|
index 3dfa3126c3..9451c50c70 100644
|
2016-04-18 12:16:51 +00:00
|
|
|
--- a/OvmfPkg/Library/PlatformDebugLibIoPort/DebugLib.c
|
|
|
|
+++ b/OvmfPkg/Library/PlatformDebugLibIoPort/DebugLib.c
|
2019-07-11 23:42:10 +00:00
|
|
|
@@ -21,7 +21,7 @@
|
2016-04-18 12:16:51 +00:00
|
|
|
//
|
|
|
|
// Define the maximum debug and assert message length that this library supports
|
|
|
|
//
|
|
|
|
-#define MAX_DEBUG_MESSAGE_LENGTH 0x100
|
2017-11-17 07:49:48 +00:00
|
|
|
+#define MAX_DEBUG_MESSAGE_LENGTH 0x200
|
2016-04-18 12:16:51 +00:00
|
|
|
|
2019-07-11 23:42:10 +00:00
|
|
|
//
|
|
|
|
// VA_LIST can not initialize to NULL for all compiler, so we use this to
|