Skip to content

Commit

Permalink
[PATCH] switch pktdvdcd
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Al Viro committed Oct 21, 2008
1 parent 8cfc7ca commit 5e5e007
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions drivers/block/pktcdvd.c
Original file line number Diff line number Diff line change
Expand Up @@ -2411,15 +2411,15 @@ static struct pktcdvd_device *pkt_find_dev_from_minor(int dev_minor)
return pkt_devs[dev_minor];
}

static int pkt_open(struct inode *inode, struct file *file)
static int pkt_open(struct block_device *bdev, fmode_t mode)
{
struct pktcdvd_device *pd = NULL;
int ret;

VPRINTK(DRIVER_NAME": entering open\n");

mutex_lock(&ctl_mutex);
pd = pkt_find_dev_from_minor(iminor(inode));
pd = pkt_find_dev_from_minor(MINOR(bdev->bd_dev));
if (!pd) {
ret = -ENODEV;
goto out;
Expand All @@ -2428,20 +2428,20 @@ static int pkt_open(struct inode *inode, struct file *file)

pd->refcnt++;
if (pd->refcnt > 1) {
if ((file->f_mode & FMODE_WRITE) &&
if ((mode & FMODE_WRITE) &&
!test_bit(PACKET_WRITABLE, &pd->flags)) {
ret = -EBUSY;
goto out_dec;
}
} else {
ret = pkt_open_dev(pd, file->f_mode & FMODE_WRITE);
ret = pkt_open_dev(pd, mode & FMODE_WRITE);
if (ret)
goto out_dec;
/*
* needed here as well, since ext2 (among others) may change
* the blocksize at mount time
*/
set_blocksize(inode->i_bdev, CD_FRAMESIZE);
set_blocksize(bdev, CD_FRAMESIZE);
}

mutex_unlock(&ctl_mutex);
Expand All @@ -2455,9 +2455,9 @@ static int pkt_open(struct inode *inode, struct file *file)
return ret;
}

static int pkt_close(struct inode *inode, struct file *file)
static int pkt_close(struct gendisk *disk, fmode_t mode)
{
struct pktcdvd_device *pd = inode->i_bdev->bd_disk->private_data;
struct pktcdvd_device *pd = disk->private_data;
int ret = 0;

mutex_lock(&ctl_mutex);
Expand Down Expand Up @@ -2796,11 +2796,12 @@ static int pkt_new_dev(struct pktcdvd_device *pd, dev_t dev)
return ret;
}

static int pkt_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
static int pkt_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd, unsigned long arg)
{
struct pktcdvd_device *pd = inode->i_bdev->bd_disk->private_data;
struct pktcdvd_device *pd = bdev->bd_disk->private_data;

VPRINTK("pkt_ioctl: cmd %x, dev %d:%d\n", cmd, imajor(inode), iminor(inode));
VPRINTK("pkt_ioctl: cmd %x, dev %d:%d\n", cmd,
MAJOR(bdev->bd_dev), MINOR(bdev->bd_dev));

switch (cmd) {
case CDROMEJECT:
Expand All @@ -2819,8 +2820,7 @@ static int pkt_ioctl(struct inode *inode, struct file *file, unsigned int cmd, u
case CDROM_LAST_WRITTEN:
case CDROM_SEND_PACKET:
case SCSI_IOCTL_SEND_COMMAND:
return __blkdev_driver_ioctl(pd->bdev, file ? file->f_mode : 0,
cmd, arg);
return __blkdev_driver_ioctl(pd->bdev, mode, cmd, arg);

default:
VPRINTK(DRIVER_NAME": Unknown ioctl for %s (%x)\n", pd->name, cmd);
Expand All @@ -2847,9 +2847,9 @@ static int pkt_media_changed(struct gendisk *disk)

static struct block_device_operations pktcdvd_ops = {
.owner = THIS_MODULE,
.__open = pkt_open,
.__release = pkt_close,
.__ioctl = pkt_ioctl,
.open = pkt_open,
.release = pkt_close,
.locked_ioctl = pkt_ioctl,
.media_changed = pkt_media_changed,
};

Expand Down

0 comments on commit 5e5e007

Please sign in to comment.