[tip: x86/cleanups] x86/CPU/AMD: Replace strcpy() with strscpy()
From: tip-bot2 for Ruben Wauters
Date: Wed Apr 30 2025 - 14:42:56 EST
The following commit has been merged into the x86/cleanups branch of tip:
Commit-ID: 003f144ca04621e598fc1c5c4ce0a851cddfe104
Gitweb: https://git.kernel.org/tip/003f144ca04621e598fc1c5c4ce0a851cddfe104
Author: Ruben Wauters <rubenru09@xxxxxxx>
AuthorDate: Wed, 30 Apr 2025 00:03:59 +01:00
Committer: Borislav Petkov (AMD) <bp@xxxxxxxxx>
CommitterDate: Wed, 30 Apr 2025 19:32:36 +02:00
x86/CPU/AMD: Replace strcpy() with strscpy()
strcpy() is deprecated due to issues with bounds checking and overflows.
Replace it with strscpy().
Signed-off-by: Ruben Wauters <rubenru09@xxxxxxx>
Signed-off-by: Borislav Petkov (AMD) <bp@xxxxxxxxx>
Link: https://lore.kernel.org/20250429230710.54014-1-rubenru09@xxxxxxx
---
arch/x86/kernel/cpu/amd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c
index 2b36379..0feb717 100644
--- a/arch/x86/kernel/cpu/amd.c
+++ b/arch/x86/kernel/cpu/amd.c
@@ -643,7 +643,7 @@ static void init_amd_k8(struct cpuinfo_x86 *c)
}
if (!c->x86_model_id[0])
- strcpy(c->x86_model_id, "Hammer");
+ strscpy(c->x86_model_id, "Hammer");
#ifdef CONFIG_SMP
/*