From: "Richard Pries" <PriesRx@hlyw.com>
To: <axboe@suse.de>
Cc: "Glen Gerber" <GlenG@hlyw.com>, <linux-kernel@vger.kernel.org>
Subject: [PATCH] Replace wrong structure type in mmc_ioctl() in cdrom.c
Date: Thu, 30 Nov 2000 12:45:11 -0800 [thread overview]
Message-ID: <sa264be0.010@hlyw.com> (raw)
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 majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
next reply other threads:[~2000-11-30 21:16 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2000-11-30 20:45 Richard Pries [this message]
[not found] <sa264be0.009@hlyw.com>
2000-11-30 21:21 ` [PATCH] Replace wrong structure type in mmc_ioctl() in cdrom.c Jens Axboe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=sa264be0.010@hlyw.com \
--to=priesrx@hlyw.com \
--cc=GlenG@hlyw.com \
--cc=axboe@suse.de \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox