From 5ce121b7a102432492a279dd026e494640186483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20L=C3=A9ger?= Date: Thu, 23 Jan 2025 15:58:05 +0100 Subject: [PATCH] lib: sbi: increase the size of the string used for extension display MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With the "max" QEMU cpu, the displayed extension string is truncated due to the buffer being too small. Increase it to 256 to display the full set of extensions correctly. Signed-off-by: Clément Léger Reviewed-by: Anup Patel --- lib/sbi/sbi_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sbi/sbi_init.c b/lib/sbi/sbi_init.c index 3f654c80..b47bc7ad 100644 --- a/lib/sbi/sbi_init.c +++ b/lib/sbi/sbi_init.c @@ -161,7 +161,7 @@ static void sbi_boot_print_domains(struct sbi_scratch *scratch) static void sbi_boot_print_hart(struct sbi_scratch *scratch, u32 hartid) { int xlen; - char str[128]; + char str[256]; const struct sbi_domain *dom = sbi_domain_thishart_ptr(); if (scratch->options & SBI_SCRATCH_NO_BOOT_PRINTS)