From 205c7c9c9c51fe966050b74c952686d8b8a1b0d0 Mon Sep 17 00:00:00 2001 From: "Justin M. Forbes" Date: Mon, 2 Dec 2024 16:41:13 -0700 Subject: [PATCH] Add patch for quick build while upstream solution is found Signed-off-by: Justin M. Forbes --- patch-6.13-redhat.patch | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/patch-6.13-redhat.patch b/patch-6.13-redhat.patch index 44f807e19..a2c1b8a17 100644 --- a/patch-6.13-redhat.patch +++ b/patch-6.13-redhat.patch @@ -10,6 +10,7 @@ arch/s390/kernel/setup.c | 4 + arch/x86/kernel/cpu/common.c | 1 + arch/x86/kernel/setup.c | 98 +++- + arch/x86/tools/insn_decoder_test.c | 2 +- crypto/akcipher.c | 3 +- crypto/dh.c | 25 + crypto/drbg.c | 18 +- @@ -82,7 +83,7 @@ security/lockdown/Kconfig | 13 + security/lockdown/lockdown.c | 1 + security/security.c | 12 + - 84 files changed, 2764 insertions(+), 217 deletions(-) + 85 files changed, 2765 insertions(+), 218 deletions(-) diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt index dc663c0ca670..9f805c864d30 100644 @@ -500,6 +501,19 @@ index f1fea506e20f..d5bc9aaa1131 100644 unwind_init(); } +diff --git a/arch/x86/tools/insn_decoder_test.c b/arch/x86/tools/insn_decoder_test.c +index 472540aeabc2..366e07546344 100644 +--- a/arch/x86/tools/insn_decoder_test.c ++++ b/arch/x86/tools/insn_decoder_test.c +@@ -106,7 +106,7 @@ static void parse_args(int argc, char **argv) + } + } + +-#define BUFSIZE 256 ++#define BUFSIZE 4096 + + int main(int argc, char **argv) + { diff --git a/crypto/akcipher.c b/crypto/akcipher.c index 72c82d9aa077..da1ac5de8252 100644 --- a/crypto/akcipher.c