Jens, 

Please consider the following patch for the wrong type of structure 
in mmc_ioctl() in cdrom.c.

Currently, mmc_ioctl() in cdrom.c is passed a cdrom_msf structure 
when ioctl() is called with CDROMREADRAW, CDROMREADMODE1, or 
CDROMREADMODE2 as its second argument.  This structure does not 
provide the required buffer for reading the data, and it does not 
correspond to the structure that cdrom.h says to use with these 
ioctl() calls. This patch replaces the cdrom_msf structure with a 
cdrom_read structure (as specified in cdrom.h).  Preliminary tests 
indicate that this patch works for both IDE and SCSI drives.   


--- linux-2.2.17/drivers/cdrom/cdrom.c  Mon Sep  4 10:39:17 2000
+++ linux-2.2.17rap/drivers/cdrom/cdrom.c       Thu Nov 30 09:01:54 2000
@@ -1432,7 +1432,7 @@
        cgc->cmd[7] = (nblocks >>  8) & 0xff;
        cgc->cmd[8] = nblocks & 0xff;
        cgc->buflen = blksize * nblocks;
-       
+
        /* set the header info returned */
        switch (blksize) {
        case CD_FRAMESIZE_RAW0  : cgc->cmd[9] = 0x58; break;
@@ -1863,8 +1863,10 @@
        case CDROMREADRAW:
        case CDROMREADMODE1:
        case CDROMREADMODE2: {
-               struct cdrom_msf msf;
+
+               struct cdrom_read cdr;
                int blocksize = 0, format = 0, lba;
+               int nframes;
                
                switch (cmd) {
                case CDROMREADRAW:
@@ -1878,15 +1880,17 @@
                        blocksize = CD_FRAMESIZE_RAW0;
                        break;
                }
-               IOCTL_IN(arg, struct cdrom_msf, msf);
-               lba = msf_to_lba(msf.cdmsf_min0,msf.cdmsf_sec0,msf.cdmsf_frame0);
+               IOCTL_IN(arg, struct cdrom_read, cdr);
+               lba = cdr.cdread_lba;
+               nframes = cdr.cdread_buflen/blocksize;
                /* FIXME: we need upper bound checking, too!! */
-               if (lba < 0)
+               if (lba < 0) 
                        return -EINVAL;
-               cgc.buffer = (char *) kmalloc(blocksize, GFP_KERNEL);
+               cgc.buffer = (char *) kmalloc(blocksize*nframes, GFP_KERNEL);
                if (cgc.buffer == NULL)
                        return -ENOMEM;
-               ret = cdrom_read_block(cdi, &cgc, lba, 1, format, blocksize);
+               ret = cdrom_read_block(cdi, &cgc, lba, nframes, format, 
+                                       blocksize);
                if (ret) {
                        /*
                         * SCSI-II devices are not required to support
@@ -1897,10 +1901,11 @@
                                kfree(cgc.buffer);
                                return ret;
                        }
-                       ret = cdrom_read_cd(cdi, &cgc, lba, blocksize, 1);
+                       ret = cdrom_read_cd(cdi, &cgc, lba, blocksize, nframes);
                        ret |= cdrom_switch_blocksize(cdi, blocksize);
                }
-               if (!ret && copy_to_user((char *)arg, cgc.buffer, blocksize))
+               if (!ret && copy_to_user(cdr.cdread_bufaddr, cgc.buffer,
+                                        blocksize*nframes))
                                ret = -EFAULT;
                kfree(cgc.buffer);
                return ret;


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/

Reply via email to