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
nexedi
linux
Commits
f6bfd03d
Commit
f6bfd03d
authored
Jun 17, 2004
by
Alexander Viro
Committed by
Linus Torvalds
Jun 17, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] sparse: ide-tape annotation
parent
3f108409
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
9 deletions
+11
-9
drivers/ide/ide-tape.c
drivers/ide/ide-tape.c
+11
-9
No files found.
drivers/ide/ide-tape.c
View file @
f6bfd03d
...
@@ -2674,7 +2674,7 @@ static idetape_stage_t *idetape_kmalloc_stage (idetape_tape_t *tape)
...
@@ -2674,7 +2674,7 @@ static idetape_stage_t *idetape_kmalloc_stage (idetape_tape_t *tape)
return
__idetape_kmalloc_stage
(
tape
,
0
,
0
);
return
__idetape_kmalloc_stage
(
tape
,
0
,
0
);
}
}
static
void
idetape_copy_stage_from_user
(
idetape_tape_t
*
tape
,
idetape_stage_t
*
stage
,
const
char
*
buf
,
int
n
)
static
void
idetape_copy_stage_from_user
(
idetape_tape_t
*
tape
,
idetape_stage_t
*
stage
,
const
char
__user
*
buf
,
int
n
)
{
{
struct
idetape_bh
*
bh
=
tape
->
bh
;
struct
idetape_bh
*
bh
=
tape
->
bh
;
int
count
;
int
count
;
...
@@ -2701,7 +2701,7 @@ static void idetape_copy_stage_from_user (idetape_tape_t *tape, idetape_stage_t
...
@@ -2701,7 +2701,7 @@ static void idetape_copy_stage_from_user (idetape_tape_t *tape, idetape_stage_t
tape
->
bh
=
bh
;
tape
->
bh
=
bh
;
}
}
static
void
idetape_copy_stage_to_user
(
idetape_tape_t
*
tape
,
char
*
buf
,
idetape_stage_t
*
stage
,
int
n
)
static
void
idetape_copy_stage_to_user
(
idetape_tape_t
*
tape
,
char
__user
*
buf
,
idetape_stage_t
*
stage
,
int
n
)
{
{
struct
idetape_bh
*
bh
=
tape
->
bh
;
struct
idetape_bh
*
bh
=
tape
->
bh
;
int
count
;
int
count
;
...
@@ -3610,6 +3610,7 @@ static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd, unsigned l
...
@@ -3610,6 +3610,7 @@ static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd, unsigned l
{
{
idetape_tape_t
*
tape
=
drive
->
driver_data
;
idetape_tape_t
*
tape
=
drive
->
driver_data
;
idetape_config_t
config
;
idetape_config_t
config
;
void
__user
*
argp
=
(
void
__user
*
)
arg
;
#if IDETAPE_DEBUG_LOG
#if IDETAPE_DEBUG_LOG
if
(
tape
->
debug_level
>=
4
)
if
(
tape
->
debug_level
>=
4
)
...
@@ -3617,7 +3618,7 @@ static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd, unsigned l
...
@@ -3617,7 +3618,7 @@ static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd, unsigned l
#endif
/* IDETAPE_DEBUG_LOG */
#endif
/* IDETAPE_DEBUG_LOG */
switch
(
cmd
)
{
switch
(
cmd
)
{
case
0x0340
:
case
0x0340
:
if
(
copy_from_user
((
char
*
)
&
config
,
(
char
*
)
arg
,
sizeof
(
idetape_config_t
)))
if
(
copy_from_user
(
&
config
,
argp
,
sizeof
(
idetape_config_t
)))
return
-
EFAULT
;
return
-
EFAULT
;
tape
->
best_dsc_rw_frequency
=
config
.
dsc_rw_frequency
;
tape
->
best_dsc_rw_frequency
=
config
.
dsc_rw_frequency
;
tape
->
max_stages
=
config
.
nr_stages
;
tape
->
max_stages
=
config
.
nr_stages
;
...
@@ -3625,7 +3626,7 @@ static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd, unsigned l
...
@@ -3625,7 +3626,7 @@ static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd, unsigned l
case
0x0350
:
case
0x0350
:
config
.
dsc_rw_frequency
=
(
int
)
tape
->
best_dsc_rw_frequency
;
config
.
dsc_rw_frequency
=
(
int
)
tape
->
best_dsc_rw_frequency
;
config
.
nr_stages
=
tape
->
max_stages
;
config
.
nr_stages
=
tape
->
max_stages
;
if
(
copy_to_user
(
(
char
*
)
arg
,
(
char
*
)
&
config
,
sizeof
(
idetape_config_t
)))
if
(
copy_to_user
(
argp
,
&
config
,
sizeof
(
idetape_config_t
)))
return
-
EFAULT
;
return
-
EFAULT
;
break
;
break
;
default:
default:
...
@@ -3747,7 +3748,7 @@ static int idetape_space_over_filemarks (ide_drive_t *drive,short mt_op,int mt_c
...
@@ -3747,7 +3748,7 @@ static int idetape_space_over_filemarks (ide_drive_t *drive,short mt_op,int mt_c
* will no longer hit performance.
* will no longer hit performance.
* This is not applicable to Onstream.
* This is not applicable to Onstream.
*/
*/
static
ssize_t
idetape_chrdev_read
(
struct
file
*
file
,
char
*
buf
,
static
ssize_t
idetape_chrdev_read
(
struct
file
*
file
,
char
__user
*
buf
,
size_t
count
,
loff_t
*
ppos
)
size_t
count
,
loff_t
*
ppos
)
{
{
ide_drive_t
*
drive
=
file
->
private_data
;
ide_drive_t
*
drive
=
file
->
private_data
;
...
@@ -3810,7 +3811,7 @@ static ssize_t idetape_chrdev_read (struct file *file, char *buf,
...
@@ -3810,7 +3811,7 @@ static ssize_t idetape_chrdev_read (struct file *file, char *buf,
return
actually_read
;
return
actually_read
;
}
}
static
ssize_t
idetape_chrdev_write
(
struct
file
*
file
,
const
char
*
buf
,
static
ssize_t
idetape_chrdev_write
(
struct
file
*
file
,
const
char
__user
*
buf
,
size_t
count
,
loff_t
*
ppos
)
size_t
count
,
loff_t
*
ppos
)
{
{
ide_drive_t
*
drive
=
file
->
private_data
;
ide_drive_t
*
drive
=
file
->
private_data
;
...
@@ -4127,6 +4128,7 @@ static int idetape_chrdev_ioctl (struct inode *inode, struct file *file, unsigne
...
@@ -4127,6 +4128,7 @@ static int idetape_chrdev_ioctl (struct inode *inode, struct file *file, unsigne
struct
mtget
mtget
;
struct
mtget
mtget
;
struct
mtpos
mtpos
;
struct
mtpos
mtpos
;
int
block_offset
=
0
,
position
=
tape
->
first_frame_position
;
int
block_offset
=
0
,
position
=
tape
->
first_frame_position
;
void
__user
*
argp
=
(
void
__user
*
)
arg
;
#if IDETAPE_DEBUG_LOG
#if IDETAPE_DEBUG_LOG
if
(
tape
->
debug_level
>=
3
)
if
(
tape
->
debug_level
>=
3
)
...
@@ -4146,7 +4148,7 @@ static int idetape_chrdev_ioctl (struct inode *inode, struct file *file, unsigne
...
@@ -4146,7 +4148,7 @@ static int idetape_chrdev_ioctl (struct inode *inode, struct file *file, unsigne
}
}
switch
(
cmd
)
{
switch
(
cmd
)
{
case
MTIOCTOP
:
case
MTIOCTOP
:
if
(
copy_from_user
(
(
char
*
)
&
mtop
,
(
char
*
)
arg
,
sizeof
(
struct
mtop
)))
if
(
copy_from_user
(
&
mtop
,
argp
,
sizeof
(
struct
mtop
)))
return
-
EFAULT
;
return
-
EFAULT
;
return
(
idetape_mtioctop
(
drive
,
mtop
.
mt_op
,
mtop
.
mt_count
));
return
(
idetape_mtioctop
(
drive
,
mtop
.
mt_op
,
mtop
.
mt_count
));
case
MTIOCGET
:
case
MTIOCGET
:
...
@@ -4157,12 +4159,12 @@ static int idetape_chrdev_ioctl (struct inode *inode, struct file *file, unsigne
...
@@ -4157,12 +4159,12 @@ static int idetape_chrdev_ioctl (struct inode *inode, struct file *file, unsigne
if
(
tape
->
drv_write_prot
)
{
if
(
tape
->
drv_write_prot
)
{
mtget
.
mt_gstat
|=
GMT_WR_PROT
(
0xffffffff
);
mtget
.
mt_gstat
|=
GMT_WR_PROT
(
0xffffffff
);
}
}
if
(
copy_to_user
(
(
char
*
)
arg
,(
char
*
)
&
mtget
,
sizeof
(
struct
mtget
)))
if
(
copy_to_user
(
argp
,
&
mtget
,
sizeof
(
struct
mtget
)))
return
-
EFAULT
;
return
-
EFAULT
;
return
0
;
return
0
;
case
MTIOCPOS
:
case
MTIOCPOS
:
mtpos
.
mt_blkno
=
position
/
tape
->
user_bs_factor
-
block_offset
;
mtpos
.
mt_blkno
=
position
/
tape
->
user_bs_factor
-
block_offset
;
if
(
copy_to_user
(
(
char
*
)
arg
,(
char
*
)
&
mtpos
,
sizeof
(
struct
mtpos
)))
if
(
copy_to_user
(
argp
,
&
mtpos
,
sizeof
(
struct
mtpos
)))
return
-
EFAULT
;
return
-
EFAULT
;
return
0
;
return
0
;
default:
default:
...
...
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