Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
5e5e007c
Commit
5e5e007c
authored
Mar 02, 2008
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] switch pktdvdcd
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
8cfc7ca4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
drivers/block/pktcdvd.c
drivers/block/pktcdvd.c
+15
-15
No files found.
drivers/block/pktcdvd.c
View file @
5e5e007c
...
...
@@ -2411,7 +2411,7 @@ 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
*
fil
e
)
static
int
pkt_open
(
struct
block_device
*
bdev
,
fmode_t
mod
e
)
{
struct
pktcdvd_device
*
pd
=
NULL
;
int
ret
;
...
...
@@ -2419,7 +2419,7 @@ static int pkt_open(struct inode *inode, struct file *file)
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
;
...
...
@@ -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
);
...
...
@@ -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
*
fil
e
)
static
int
pkt_close
(
struct
gendisk
*
disk
,
fmode_t
mod
e
)
{
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
);
...
...
@@ -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
*
fil
e
,
unsigned
int
cmd
,
unsigned
long
arg
)
static
int
pkt_ioctl
(
struct
block_device
*
bdev
,
fmode_t
mod
e
,
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
:
...
...
@@ -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
);
...
...
@@ -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
,
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment