The patch titled Subject: lib/test_firmware: add header to prevent build errors has been added to the -mm tree. Its filename is lib-test_firmware-add-header-to-prevent-build-errors.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/lib-test_firmware-add-header-to-prevent-build-errors.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/lib-test_firmware-add-header-to-prevent-build-errors.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Subject: lib/test_firmware: add header to prevent build errors lib/test_firmware.c has build errors on some $ARCHes due to a missing header file, so add it. lib/test_firmware.c:134:2: error: implicit declaration of function 'vfree' [-Werror=implicit-function-declaration] lib/test_firmware.c:620:25: error: implicit declaration of function 'vzalloc' [-Werror=implicit-function-declaration] Link: http://lkml.kernel.org/r/d33eacf8-3440-3ebb-12bd-53c50ba07935@xxxxxxxxxxxxx Link: http://kisskb.ellerman.id.au/kisskb/head/13396/ Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Reported-by: Michael Ellerman <mpe@xxxxxxxxxxxxxx> Reviewed-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Cc: Wei Yongjun <weiyongjun1@xxxxxxxxxx> Cc: Luis R. Rodriguez <mcgrof@xxxxxxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/test_firmware.c | 1 + 1 file changed, 1 insertion(+) diff -puN lib/test_firmware.c~lib-test_firmware-add-header-to-prevent-build-errors lib/test_firmware.c --- a/lib/test_firmware.c~lib-test_firmware-add-header-to-prevent-build-errors +++ a/lib/test_firmware.c @@ -21,6 +21,7 @@ #include <linux/uaccess.h> #include <linux/delay.h> #include <linux/kthread.h> +#include <linux/vmalloc.h> #define TEST_FIRMWARE_NAME "test-firmware.bin" #define TEST_FIRMWARE_NUM_REQS 4 _ Patches currently in -mm which might be from rdunlap@xxxxxxxxxxxxx are lib-test_firmware-add-header-to-prevent-build-errors.patch mm-swap_slots-use-conditional-compilation-for-swap_slotsc.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