The patch titled drivers/block/nbd.c compile fix has been added to the -mm tree. Its filename is drivers-block-nbdc-compile-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: drivers/block/nbd.c compile fix From: Ingo van Lil <inguin@xxxxxx> The Network Block Device driver doesn't compile if NDEBUG is defined. Signed-off-by: Ingo van Lil <inguin@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/block/nbd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/block/nbd.c~drivers-block-nbdc-compile-fix drivers/block/nbd.c --- a/drivers/block/nbd.c~drivers-block-nbdc-compile-fix +++ a/drivers/block/nbd.c @@ -50,9 +50,9 @@ #define DBG_RX 0x0200 #define DBG_TX 0x0400 static unsigned int debugflags; -static unsigned int nbds_max = 16; #endif /* NDEBUG */ +static unsigned int nbds_max = 16; static struct nbd_device nbd_dev[MAX_NBD]; /* _ Patches currently in -mm which might be from inguin@xxxxxx are drivers-block-nbdc-compile-fix.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