The patch titled loop.h build fix has been added to the -mm tree. Its filename is looph-build-fix.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: loop.h build fix From: Arnd Bergmann <arnd@xxxxxxxx> include/linux/loop.h:66: error: expected specifier-qualifier-list before 'request_queue_t' Cc: Sebastian Siewior <sebastian@xxxxxxxxxxxxx> Cc: Jens Axboe <jens.axboe@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/loop.h | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/loop.h~looph-build-fix include/linux/loop.h --- a/include/linux/loop.h~looph-build-fix +++ a/include/linux/loop.h @@ -63,7 +63,7 @@ struct loop_device { struct task_struct *lo_thread; wait_queue_head_t lo_event; - request_queue_t *lo_queue; + struct request_queue *lo_queue; struct gendisk *lo_disk; struct list_head lo_list; }; _ Patches currently in -mm which might be from arnd@xxxxxxxx are looph-build-fix.patch whitespace-fixes-compat-syscalls.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