The patch titled synchro-test: add missing header file has been removed from the -mm tree. Its filename was mutex-subsystem-synchro-test-module-add-missing-header-file.patch This patch was dropped because it was folded into mutex-subsystem-synchro-test-module.patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: synchro-test: add missing header file From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Fix build errors, add <sched.h> header file: kernel/synchro-test.c: In function 'sched': kernel/synchro-test.c:220: error: implicit declaration of function 'schedule' kernel/synchro-test.c: In function 'mutexer': kernel/synchro-test.c:227: error: implicit declaration of function 'daemonize' kernel/synchro-test.c:228: error: implicit declaration of function 'set_user_nice' kernel/synchro-test.c:241: error: dereferencing pointer to incomplete type kernel/synchro-test.c: In function 'semaphorer': kernel/synchro-test.c:263: error: dereferencing pointer to incomplete type kernel/synchro-test.c: In function 'reader': kernel/synchro-test.c:287: error: dereferencing pointer to incomplete type kernel/synchro-test.c: In function 'writer': kernel/synchro-test.c:311: error: dereferencing pointer to incomplete type kernel/synchro-test.c: In function 'downgrader': kernel/synchro-test.c:340: error: dereferencing pointer to incomplete type Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Acked-by: David Howells <dhowells@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/synchro-test.c | 1 + 1 file changed, 1 insertion(+) diff -puN kernel/synchro-test.c~mutex-subsystem-synchro-test-module-add-missing-header-file kernel/synchro-test.c --- a/kernel/synchro-test.c~mutex-subsystem-synchro-test-module-add-missing-header-file +++ a/kernel/synchro-test.c @@ -21,6 +21,7 @@ #include <linux/module.h> #include <linux/poll.h> #include <linux/moduleparam.h> +#include <linux/sched.h> #include <linux/stat.h> #include <linux/init.h> #include <asm/atomic.h> _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are linux-next.patch leds-route-kbd-leds-through-the-generic-leds-layer.patch backlight-apple_bl-depends-on-acpi.patch mm-debug-pagealloc-fix-kconfig-dependency-warning.patch st-spear-pcie-gadget-suppport.patch st-spear-pcie-gadget-documentation-for-support-of-multiple-device.patch printk-allow-setting-default_message_level-via-kconfig.patch documentation-codingstyle-flesh-out-if-else-examples.patch memcg-remove-direct-page_cgroup-to-page-pointer-fix-fix.patch mutex-subsystem-synchro-test-module.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