The patch titled Subject: memfd_test: add missing argument to printf() has been removed from the -mm tree. Its filename was memfd_test-add-missing-argument-to-printf.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Pranith Kumar <bobby.prani@xxxxxxxxx> Subject: memfd_test: add missing argument to printf() Add a missing path argument buf to printf(). Signed-off-by: Pranith Kumar <bobby.prani@xxxxxxxxx> Reviewed-by: David Herrmann <dh.herrmann@xxxxxxxxx> Cc: Shuah Khan <shuah.kh@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- tools/testing/selftests/memfd/memfd_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN tools/testing/selftests/memfd/memfd_test.c~memfd_test-add-missing-argument-to-printf tools/testing/selftests/memfd/memfd_test.c --- a/tools/testing/selftests/memfd/memfd_test.c~memfd_test-add-missing-argument-to-printf +++ a/tools/testing/selftests/memfd/memfd_test.c @@ -205,7 +205,7 @@ static void mfd_fail_open(int fd, int fl sprintf(buf, "/proc/self/fd/%d", fd); r = open(buf, flags, mode); if (r >= 0) { - printf("open(%s) didn't fail as expected\n"); + printf("open(%s) didn't fail as expected\n", buf); abort(); } } _ Patches currently in -mm which might be from bobby.prani@xxxxxxxxx are origin.patch linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html