Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

selftests: pp-bench: remove unneeded linux/version.h

linux/version.h was used by the out-of-tree version, but not needed in
the upstream one anymore.

While I'm at it, sort the includes.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202506271434.Gk0epC9H-lkp@intel.com/
Signed-off-by: Mina Almasry <almasrymina@google.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Reviewed-by: Toke Høiland-Jørgensen <toke@redhat.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Acked-by: Jesper Dangaard Brouer <hawk@kernel.org>
Link: https://patch.msgid.link/20250627200501.1712389-1-almasrymina@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Mina Almasry and committed by
Jakub Kicinski
8d3e0982 0341e347

+3 -6
+3 -6
tools/testing/selftests/net/bench/page_pool/bench_page_pool_simple.c
··· 5 5 */ 6 6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 7 7 8 - #include <linux/module.h> 9 - #include <linux/mutex.h> 10 - 11 - #include <linux/version.h> 12 - #include <net/page_pool/helpers.h> 13 - 14 8 #include <linux/interrupt.h> 15 9 #include <linux/limits.h> 10 + #include <linux/module.h> 11 + #include <linux/mutex.h> 12 + #include <net/page_pool/helpers.h> 16 13 17 14 #include "time_bench.h" 18 15