summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKuan-Wei Chiu <visitorckw@gmail.com>2024-09-28 19:36:08 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-02-17 10:04:46 +0100
commit404e5fd918a0b14abec06c7eca128f04c9b98e41 (patch)
treed1f8cfce99ade0125c3cfc3cd2abca89e074641f /include
parent0412bca906d598b0a60c0da837dadb036a95db84 (diff)
downloadlinux-404e5fd918a0b14abec06c7eca128f04c9b98e41.tar.gz
linux-404e5fd918a0b14abec06c7eca128f04c9b98e41.tar.bz2
linux-404e5fd918a0b14abec06c7eca128f04c9b98e41.zip
printk: Fix signed integer overflow when defining LOG_BUF_LEN_MAX
[ Upstream commit 3d6f83df8ff2d5de84b50377e4f0d45e25311c7a ] Shifting 1 << 31 on a 32-bit int causes signed integer overflow, which leads to undefined behavior. To prevent this, cast 1 to u32 before performing the shift, ensuring well-defined behavior. This change explicitly avoids any potential overflow by ensuring that the shift occurs on an unsigned 32-bit integer. Signed-off-by: Kuan-Wei Chiu <visitorckw@gmail.com> Acked-by: Petr Mladek <pmladek@suse.com> Link: https://lore.kernel.org/r/20240928113608.1438087-1-visitorckw@gmail.com Signed-off-by: Petr Mladek <pmladek@suse.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'include')
0 files changed, 0 insertions, 0 deletions