diff options
author | Ingo Molnar <mingo@kernel.org> | 2025-03-03 21:05:45 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2025-03-03 21:05:45 +0100 |
commit | 1fff9f8730b00c39ec5055656e45ef69acd9409a (patch) | |
tree | 96fea59eb525c4e76ec0872ff74962c6f28fab8b /drivers/firmware/efi/cper-x86.c | |
parent | 604ea3e90b17f27928a64d86259c57710c254438 (diff) | |
parent | 7eb172143d5508b4da468ed59ee857c6e5e01da6 (diff) |
Merge tag 'v6.14-rc5' into x86/core, to pick up fixes
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'drivers/firmware/efi/cper-x86.c')
-rw-r--r-- | drivers/firmware/efi/cper-x86.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/efi/cper-x86.c b/drivers/firmware/efi/cper-x86.c index 438ed9eff6d0..3949d7b5e808 100644 --- a/drivers/firmware/efi/cper-x86.c +++ b/drivers/firmware/efi/cper-x86.c @@ -325,7 +325,7 @@ void cper_print_proc_ia(const char *pfx, const struct cper_sec_proc_ia *proc) ctx_info = (struct cper_ia_proc_ctx *)err_info; for (i = 0; i < VALID_PROC_CXT_INFO_NUM(proc->validation_bits); i++) { - int size = sizeof(*ctx_info) + ctx_info->reg_arr_size; + int size = ALIGN(sizeof(*ctx_info) + ctx_info->reg_arr_size, 16); int groupsize = 4; printk("%sContext Information Structure %d:\n", pfx, i); |