The patch titled Subject: selftests/vm: fix building protection keys test has been removed from the -mm tree. Its filename was selftests-vm-fix-building-protection-keys-test.patch This patch was dropped because an updated version will be merged ------------------------------------------------------ From: Harish <harish@xxxxxxxxxxxxx> Subject: selftests/vm: fix building protection keys test The previous patch tries to include a arch check for powerpc using findstring, which prevents test from building on powerpc arch. Fix this with filtering using machine type. Link: https://lkml.kernel.org/r/20201214163951.141399-1-harish@xxxxxxxxxxxxx Signed-off-by: Harish <harish@xxxxxxxxxxxxx> Cc: Shuah Khan <shuah@xxxxxxxxxx> Cc: Sandipan Das <sandipan@xxxxxxxxxxxxx> Cc: John Hubbard <jhubbard@xxxxxxxxxx> Cc: Dave Hansen <dave.hansen@xxxxxxxxx> Cc: "Kirill A. Shutemov" <kirill.shutemov@xxxxxxxxxxxxxxx> Cc: Brian Geffon <bgeffon@xxxxxxxxxx> Cc: Mina Almasry <almasrymina@xxxxxxxxxx> Cc: Xingxing Su <suxingxing@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- tools/testing/selftests/vm/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/tools/testing/selftests/vm/Makefile~selftests-vm-fix-building-protection-keys-test +++ a/tools/testing/selftests/vm/Makefile @@ -65,7 +65,7 @@ TEST_GEN_FILES += $(BINARIES_64) endif else -ifneq (,$(findstring $(ARCH),powerpc)) +ifneq (,$(filter $(MACHINE),ppc64 ppc64le)) TEST_GEN_FILES += protection_keys endif _ Patches currently in -mm which might be from harish@xxxxxxxxxxxxx are