The patch titled cdrom: use unsigned bitfields has been removed from the -mm tree. Its filename was cdrom-use-unsigned-bitfields.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: cdrom: use unsigned bitfields From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Fix 23 of these sparse warnings on x86_64 allmodconfig: include/linux/cdrom.h:942:19: error: dubious bitfield without explicit `signed' or `unsigned' Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Cc: Jens Axboe <axboe@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/cdrom.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/cdrom.h~cdrom-use-unsigned-bitfields include/linux/cdrom.h --- a/include/linux/cdrom.h~cdrom-use-unsigned-bitfields +++ a/include/linux/cdrom.h @@ -939,7 +939,7 @@ struct cdrom_device_info { int speed; /* maximum speed for reading data */ int capacity; /* number of discs in jukebox */ /* device-related storage */ - int options : 30; /* options flags */ + unsigned int options : 30; /* options flags */ unsigned mc_flags : 2; /* media change buffer flags */ int use_count; /* number of times device opened */ char name[20]; /* name of the device type */ _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are git-drm.patch git-libata-all.patch phy-layer-add-kernel-doc-docbook.patch git-parisc.patch x86-dont-probe-for-ddc-on-vbe12.patch extend-notifier_call_chain-to-count-nr_calls-made-fixes.patch reiser4-use-null-for-pointers.patch profile_likely-export-do_check_likely.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