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
f29145e2
Commit
f29145e2
authored
Jun 04, 2004
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://bk.arm.linux.org.uk/linux-2.6-pcmcia
into ppc970.osdl.org:/home/torvalds/v2.6/linux
parents
eb013086
90795241
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
drivers/pcmcia/ds.c
drivers/pcmcia/ds.c
+9
-8
No files found.
drivers/pcmcia/ds.c
View file @
f29145e2
...
...
@@ -797,7 +797,7 @@ static int ds_release(struct inode *inode, struct file *file)
/*====================================================================*/
static
ssize_t
ds_read
(
struct
file
*
file
,
char
*
buf
,
static
ssize_t
ds_read
(
struct
file
*
file
,
char
__user
*
buf
,
size_t
count
,
loff_t
*
ppos
)
{
struct
pcmcia_bus_socket
*
s
;
...
...
@@ -819,14 +819,14 @@ static ssize_t ds_read(struct file *file, char *buf,
ret
=
wait_event_interruptible
(
s
->
queue
,
!
queue_empty
(
user
));
if
(
ret
==
0
)
ret
=
put_user
(
get_queued_event
(
user
),
(
int
*
)
buf
)
?
-
EFAULT
:
4
;
ret
=
put_user
(
get_queued_event
(
user
),
(
int
__user
*
)
buf
)
?
-
EFAULT
:
4
;
return
ret
;
}
/* ds_read */
/*====================================================================*/
static
ssize_t
ds_write
(
struct
file
*
file
,
const
char
*
buf
,
static
ssize_t
ds_write
(
struct
file
*
file
,
const
char
__user
*
buf
,
size_t
count
,
loff_t
*
ppos
)
{
struct
pcmcia_bus_socket
*
s
;
...
...
@@ -849,7 +849,7 @@ static ssize_t ds_write(struct file *file, const char *buf,
if
(
s
->
req_pending
)
{
s
->
req_pending
--
;
get_user
(
s
->
req_result
,
(
int
*
)
buf
);
get_user
(
s
->
req_result
,
(
int
__user
*
)
buf
);
if
((
s
->
req_result
!=
0
)
||
(
s
->
req_pending
==
0
))
wake_up_interruptible
(
&
s
->
request
);
}
else
...
...
@@ -888,6 +888,7 @@ static int ds_ioctl(struct inode * inode, struct file * file,
u_int
cmd
,
u_long
arg
)
{
struct
pcmcia_bus_socket
*
s
;
void
__user
*
uarg
=
(
char
__user
*
)
arg
;
u_int
size
;
int
ret
,
err
;
ds_ioctl_arg_t
buf
;
...
...
@@ -911,14 +912,14 @@ static int ds_ioctl(struct inode * inode, struct file * file,
return
-
EPERM
;
if
(
cmd
&
IOC_IN
)
{
err
=
verify_area
(
VERIFY_READ
,
(
char
*
)
arg
,
size
);
err
=
verify_area
(
VERIFY_READ
,
u
arg
,
size
);
if
(
err
)
{
ds_dbg
(
3
,
"ds_ioctl(): verify_read = %d
\n
"
,
err
);
return
err
;
}
}
if
(
cmd
&
IOC_OUT
)
{
err
=
verify_area
(
VERIFY_WRITE
,
(
char
*
)
arg
,
size
);
err
=
verify_area
(
VERIFY_WRITE
,
u
arg
,
size
);
if
(
err
)
{
ds_dbg
(
3
,
"ds_ioctl(): verify_write = %d
\n
"
,
err
);
return
err
;
...
...
@@ -927,7 +928,7 @@ static int ds_ioctl(struct inode * inode, struct file * file,
err
=
ret
=
0
;
if
(
cmd
&
IOC_IN
)
__copy_from_user
((
char
*
)
&
buf
,
(
char
*
)
arg
,
size
);
if
(
cmd
&
IOC_IN
)
__copy_from_user
((
char
*
)
&
buf
,
u
arg
,
size
);
switch
(
cmd
)
{
case
DS_ADJUST_RESOURCE_INFO
:
...
...
@@ -1042,7 +1043,7 @@ static int ds_ioctl(struct inode * inode, struct file * file,
}
}
if
(
cmd
&
IOC_OUT
)
__copy_to_user
(
(
char
*
)
arg
,
(
char
*
)
&
buf
,
size
);
if
(
cmd
&
IOC_OUT
)
__copy_to_user
(
u
arg
,
(
char
*
)
&
buf
,
size
);
return
err
;
}
/* ds_ioctl */
...
...
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