]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
um: vector: Reduce stack usage in vector_eth_configure()
authorTiwei Bie <tiwei.btw@antgroup.com>
Mon, 23 Jun 2025 11:08:29 +0000 (19:08 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 17 Jul 2025 16:32:13 +0000 (18:32 +0200)
commit46ec762e197083fe788eadabed0cd100fa3b289d
tree957b0074cfe9f1eee6f70e63e8a3f49c6cc82aea
parentd104a842dbdc5ecc1ebdc9b85fbed0dc4bb484b6
um: vector: Reduce stack usage in vector_eth_configure()

[ Upstream commit 2d65fc13be85c336c56af7077f08ccd3a3a15a4a ]

When compiling with clang (19.1.7), initializing *vp using a compound
literal may result in excessive stack usage. Fix it by initializing the
required fields of *vp individually.

Without this patch:

$ objdump -d arch/um/drivers/vector_kern.o | ./scripts/checkstack.pl x86_64 0
...
0x0000000000000540 vector_eth_configure [vector_kern.o]:1472
...

With this patch:

$ objdump -d arch/um/drivers/vector_kern.o | ./scripts/checkstack.pl x86_64 0
...
0x0000000000000540 vector_eth_configure [vector_kern.o]:208
...

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202506221017.WtB7Usua-lkp@intel.com/
Signed-off-by: Tiwei Bie <tiwei.btw@antgroup.com>
Link: https://patch.msgid.link/20250623110829.314864-1-tiwei.btw@antgroup.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/um/drivers/vector_kern.c