The patch titled Subject: lib/test_bits: make some functions static has been removed from the -mm tree. Its filename was bits-add-tests-of-genmask-fix-2.patch This patch was dropped because it was folded into bits-add-tests-of-genmask.patch ------------------------------------------------------ From: Wei Yongjun <weiyongjun1@xxxxxxxxxx> Subject: lib/test_bits: make some functions static Fix sparse build warnings: lib/test_bits.c:10:6: warning: symbol 'genmask_test' was not declared. Should it be static? lib/test_bits.c:27:6: warning: symbol 'genmask_ull_test' was not declared. Should it be static? lib/test_bits.c:42:6: warning: symbol 'genmask_input_check_test' was not declared. Should it be static? Link: http://lkml.kernel.org/r/20200702150336.4756-1-weiyongjun1@xxxxxxxxxx Signed-off-by: Wei Yongjun <weiyongjun1@xxxxxxxxxx> Reported-by: Hulk Robot <hulkci@xxxxxxxxxx> Cc: Rikard Falkeborn <rikard.falkeborn@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/test_bits.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/lib/test_bits.c~bits-add-tests-of-genmask-fix-2 +++ a/lib/test_bits.c @@ -7,7 +7,7 @@ #include <linux/bits.h> -void genmask_test(struct kunit *test) +static void genmask_test(struct kunit *test) { KUNIT_EXPECT_EQ(test, 1ul, GENMASK(0, 0)); KUNIT_EXPECT_EQ(test, 3ul, GENMASK(1, 0)); @@ -24,7 +24,7 @@ void genmask_test(struct kunit *test) } -void genmask_ull_test(struct kunit *test) +static void genmask_ull_test(struct kunit *test) { KUNIT_EXPECT_EQ(test, 1ull, GENMASK_ULL(0, 0)); KUNIT_EXPECT_EQ(test, 3ull, GENMASK_ULL(1, 0)); @@ -39,7 +39,7 @@ void genmask_ull_test(struct kunit *test #endif } -void genmask_input_check_test(struct kunit *test) +static void genmask_input_check_test(struct kunit *test) { unsigned int x, y; int z, w; _ Patches currently in -mm which might be from weiyongjun1@xxxxxxxxxx are lib-test_lockupc-make-symbol-test_works-static.patch bits-add-tests-of-genmask.patch kcov-make-some-symbols-static.patch