Subject: [merged] cmdline-parser-fix-build.patch removed from -mm tree To: a.beregalov@xxxxxxxxx,alexander.beregalov@xxxxxxxxx,caizhiyong@xxxxxxxxxx,mm-commits@xxxxxxxxxxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Fri, 15 Nov 2013 12:09:35 -0800 The patch titled Subject: cmdline-parser: fix build has been removed from the -mm tree. Its filename was cmdline-parser-fix-build.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Alexander Beregalov <a.beregalov@xxxxxxxxx> Subject: cmdline-parser: fix build Fix following errors: include/linux/cmdline-parser.h:17:12: error: 'BDEVNAME_SIZE' undeclared here block/cmdline-parser.c:17:2: error: implicit declaration of function 'kzalloc' Signed-off-by: Alexander Beregalov <alexander.beregalov@xxxxxxxxx> Cc: CaiZhiyong <caizhiyong@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/cmdline-parser.h | 2 ++ 1 file changed, 2 insertions(+) diff -puN include/linux/cmdline-parser.h~cmdline-parser-fix-build include/linux/cmdline-parser.h --- a/include/linux/cmdline-parser.h~cmdline-parser-fix-build +++ a/include/linux/cmdline-parser.h @@ -8,6 +8,8 @@ #define CMDLINEPARSEH #include <linux/blkdev.h> +#include <linux/fs.h> +#include <linux/slab.h> /* partition flags */ #define PF_RDONLY 0x01 /* Device is read only */ _ Patches currently in -mm which might be from a.beregalov@xxxxxxxxx are origin.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