Blame SOURCES/0007-OvmfPkg-increase-max-debug-message-length-to-512-RHE.patch

63d87e
From e949bab1268f83f0f5815a96cd1cb9dd3b21bfb5 Mon Sep 17 00:00:00 2001
cc9195
From: Laszlo Ersek <lersek@redhat.com>
cc9195
Date: Thu, 20 Feb 2014 22:54:45 +0100
cc9195
Subject: OvmfPkg: increase max debug message length to 512 (RHEL only)
cc9195
63d87e
Notes about the RHEL-8.1/20190308-89910a39dcfd [edk2-stable201903] ->
63d87e
RHEL-8.2/20190904-37eef91017ad [edk2-stable201908] rebase:
63d87e
63d87e
- trivial context difference due to upstream commit 2fe5f2f52918
63d87e
  ("OvmfPkg/PlatformDebugLibIoPort: Add new APIs", 2019-04-02), resolved
63d87e
  by git-cherry-pick automatically
63d87e
fcd20d
Notes about the RHEL-8.0/20180508-ee3198e672e2 ->
fcd20d
RHEL-8.1/20190308-89910a39dcfd rebase:
fcd20d
fcd20d
- no changes
fcd20d
cc9195
Notes about the RHEL-7.6/ovmf-20180508-2.gitee3198e672e2.el7 ->
cc9195
RHEL-8.0/20180508-ee3198e672e2 rebase:
cc9195
cc9195
- reorder the rebase changelog in the commit message so that it reads like
cc9195
  a blog: place more recent entries near the top
cc9195
- no changes to the patch body
cc9195
cc9195
Notes about the 20171011-92d07e48907f -> 20180508-ee3198e672e2 rebase:
cc9195
cc9195
- no changes
cc9195
cc9195
Notes about the 20170228-c325e41585e3 -> 20171011-92d07e48907f rebase:
cc9195
cc9195
- no changes
cc9195
cc9195
Notes about the 20160608b-988715a -> 20170228-c325e41585e3 rebase:
cc9195
cc9195
- no changes
cc9195
cc9195
Upstream prefers short debug messages (sometimes even limited to 80
cc9195
characters), but any line length under 512 characters is just unsuitable
cc9195
for effective debugging. (For example, config strings in HII routing,
cc9195
logged by the platform driver "OvmfPkg/PlatformDxe" on DEBUG_VERBOSE
cc9195
level, can be several hundred characters long.) 512 is an empirically good
cc9195
value.
cc9195
cc9195
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
cc9195
(cherry picked from commit bfe568d18dba15602604f155982e3b73add63dfb)
cc9195
(cherry picked from commit 29435a32ec9428720c74c454ce9817662e601fb6)
cc9195
(cherry picked from commit 58e1d1ebb78bfdaf05f4c6e8abf8d4908dfa038a)
cc9195
(cherry picked from commit 1df2c822c996ad767f2f45570ab2686458f7604a)
fcd20d
(cherry picked from commit 22c9b4e971c70c69b4adf8eb93133824ccb6426a)
63d87e
(cherry picked from commit a1260c9122c95bcbef1efc5eebe11902767813c2)
cc9195
---
cc9195
 OvmfPkg/Library/PlatformDebugLibIoPort/DebugLib.c | 2 +-
cc9195
 1 file changed, 1 insertion(+), 1 deletion(-)
cc9195
cc9195
diff --git a/OvmfPkg/Library/PlatformDebugLibIoPort/DebugLib.c b/OvmfPkg/Library/PlatformDebugLibIoPort/DebugLib.c
63d87e
index 3dfa3126c3..9451c50c70 100644
cc9195
--- a/OvmfPkg/Library/PlatformDebugLibIoPort/DebugLib.c
cc9195
+++ b/OvmfPkg/Library/PlatformDebugLibIoPort/DebugLib.c
63d87e
@@ -21,7 +21,7 @@
cc9195
 //
cc9195
 // Define the maximum debug and assert message length that this library supports
cc9195
 //
cc9195
-#define MAX_DEBUG_MESSAGE_LENGTH  0x100
cc9195
+#define MAX_DEBUG_MESSAGE_LENGTH  0x200
cc9195
 
63d87e
 //
63d87e
 // VA_LIST can not initialize to NULL for all compiler, so we use this to
cc9195
-- 
fcd20d
2.18.1
cc9195