The patch titled arch/um/drivers/ubd_kern.c: a warning fix has been added to the -mm tree. Its filename is arch-um-drivers-ubd_kernc-a-warning-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: arch/um/drivers/ubd_kern.c: a warning fix From: WANG Cong <xiyou.wangcong@xxxxxxxxx> Fix an incompatible-pointer warning. Signed-off-by: WANG Cong <xiyou.wangcong@xxxxxxxxx> Cc: Jeff Dike <jdike@xxxxxxxxxxx> Cc: Jens Axboe <jens.axboe@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/um/drivers/ubd_kern.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/um/drivers/ubd_kern.c~arch-um-drivers-ubd_kernc-a-warning-fix arch/um/drivers/ubd_kern.c --- a/arch/um/drivers/ubd_kern.c~arch-um-drivers-ubd_kernc-a-warning-fix +++ a/arch/um/drivers/ubd_kern.c @@ -705,7 +705,7 @@ static int ubd_add(int n, char **error_o ubd_dev->size = ROUND_BLOCK(ubd_dev->size); INIT_LIST_HEAD(&ubd_dev->restart); - sg_init_table(&ubd_dev->sg, MAX_SG); + sg_init_table(ubd_dev->sg, MAX_SG); err = -ENOMEM; ubd_dev->queue = blk_init_queue(do_ubd_request, &ubd_dev->lock); _ Patches currently in -mm which might be from xiyou.wangcong@xxxxxxxxx are origin.patch git-watchdog.patch arch-um-drivers-ubd_kernc-a-warning-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