The patch titled uml ubd driver: use bitfields where possible has been removed from the -mm tree. Its filename was uml-ubd-driver-use-bitfields-where-possible.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: uml ubd driver: use bitfields where possible From: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> Use bitfields for boolean fields in ubd data structure. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> Cc: Jeff Dike <jdike@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/um/drivers/ubd_kern.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN arch/um/drivers/ubd_kern.c~uml-ubd-driver-use-bitfields-where-possible arch/um/drivers/ubd_kern.c --- a/arch/um/drivers/ubd_kern.c~uml-ubd-driver-use-bitfields-where-possible +++ a/arch/um/drivers/ubd_kern.c @@ -174,8 +174,8 @@ struct ubd { __u64 size; struct openflags boot_openflags; struct openflags openflags; - int shared; - int no_cow; + unsigned shared:1; + unsigned no_cow:1; struct cow cow; struct platform_device pdev; }; _ Patches currently in -mm which might be from blaisorblade@xxxxxxxx are origin.patch make-x86_64-udelay-round-up-instead-of-down.patch i386-x86_64-comment-magic-constants-in-delayh.patch uml-fix-prototypes.patch uml-make-execvp-safe-for-our-usage.patch tty-switch-to-ktermios-uml-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