The patch titled include linux/mutex.h from attribute_container.c has been added to the -mm tree. Its filename is include-linux-mutexh-from-attribute_containerc.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: include linux/mutex.h from attribute_container.c From: "Michael S. Tsirkin" <mst@xxxxxxxxxxxxxxxxxx> attribute_container.c uses DEFINE_MUTEX, so while linux/mutex.h seems to be pulled in indirectly by one of the headers it includes, the right thing is to include linux/mutex.h directly. Signed-off-by: Michael S. Tsirkin <mst@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/base/attribute_container.c | 1 + 1 files changed, 1 insertion(+) diff -puN drivers/base/attribute_container.c~include-linux-mutexh-from-attribute_containerc drivers/base/attribute_container.c --- a/drivers/base/attribute_container.c~include-linux-mutexh-from-attribute_containerc +++ a/drivers/base/attribute_container.c @@ -18,6 +18,7 @@ #include <linux/slab.h> #include <linux/list.h> #include <linux/module.h> +#include <linux/mutex.h> #include "base.h" _ Patches currently in -mm which might be from mst@xxxxxxxxxxxxxxxxxx are include-linux-mutexh-from-attribute_containerc.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