The patch titled arch/um/drivers/ubd_kern.c: a warning fix has been removed from the -mm tree. Its filename was arch-um-drivers-ubd_kernc-a-warning-fix.patch This patch was dropped because it is obsolete The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ 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 git-hrt.patch arch-um-kernel-um_archc-some-small-improvements.patch remove-the-macro-get_personality.patch elf-fix-shadowed-variables-in-fs-binfmt_elfc.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