The patch titled cdrom: fix bad cgc.buflen assignment has been added to the -mm tree. Its filename is cdrom-fix-bad-cgcbuflen-assignment.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: cdrom: fix bad cgc.buflen assignment From: Jens Axboe <axboe@xxxxxxx> The code really means to mask off the high bits, not assign 0xff. Signed-off-by: Jens Axboe <axboe@xxxxxxx> Cc: Marcus Meissner <meissner@xxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/cdrom/cdrom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/cdrom/cdrom.c~cdrom-fix-bad-cgcbuflen-assignment drivers/cdrom/cdrom.c --- a/drivers/cdrom/cdrom.c~cdrom-fix-bad-cgcbuflen-assignment +++ a/drivers/cdrom/cdrom.c @@ -1837,7 +1837,7 @@ static int dvd_read_bca(struct cdrom_dev init_cdrom_command(&cgc, buf, sizeof(buf), CGC_DATA_READ); cgc.cmd[0] = GPCMD_READ_DVD_STRUCTURE; cgc.cmd[7] = s->type; - cgc.cmd[9] = cgc.buflen = 0xff; + cgc.cmd[9] = cgc.buflen & 0xff; if ((ret = cdo->generic_packet(cdi, &cgc))) return ret; _ Patches currently in -mm which might be from axboe@xxxxxxx are origin.patch libata_resume_fix.patch block-layer-early-detection-of-medium-not-present.patch scsi-core-and-sd-early-detection-of-medium-not-present.patch sd-early-detection-of-medium-not-present.patch partitions-let-partitions-inherit-policy-from-disk.patch cdrom-fix-bad-cgcbuflen-assignment.patch enable-cdrom-dma-access-with-pdc20265_old.patch md-dm-reduce-stack-usage-with-stacked-block-devices.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