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
223aa656
Commit
223aa656
authored
Oct 09, 2002
by
Vojtech Pavlik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix oops when 'cat /dev/uinput' is done. Used wait_event_interruptible().
parent
16c561f7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
28 deletions
+10
-28
drivers/input/misc/uinput.c
drivers/input/misc/uinput.c
+10
-28
No files found.
drivers/input/misc/uinput.c
View file @
223aa656
...
@@ -218,43 +218,25 @@ static int uinput_write(struct file *file, const char *buffer, size_t count, lof
...
@@ -218,43 +218,25 @@ static int uinput_write(struct file *file, const char *buffer, size_t count, lof
static
ssize_t
uinput_read
(
struct
file
*
file
,
char
*
buffer
,
size_t
count
,
loff_t
*
ppos
)
static
ssize_t
uinput_read
(
struct
file
*
file
,
char
*
buffer
,
size_t
count
,
loff_t
*
ppos
)
{
{
struct
uinput_device
*
udev
;
struct
uinput_device
*
udev
=
file
->
private_data
;
int
retval
=
0
;
int
retval
=
0
;
DECLARE_WAITQUEUE
(
waitq
,
current
);
udev
=
(
struct
uinput_device
*
)
file
->
private_data
;
if
(
udev
->
head
==
udev
->
tail
&&
(
udev
->
state
&
UIST_CREATED
)
&&
(
file
->
f_flags
&
O_NONBLOCK
))
return
-
EAGAIN
;
if
(
udev
->
head
==
udev
->
tail
)
{
retval
=
wait_event_interruptible
(
udev
->
waitq
,
add_wait_queue
(
&
udev
->
waitq
,
&
waitq
);
udev
->
head
!=
udev
->
tail
&&
(
udev
->
state
&
UIST_CREATED
));
current
->
state
=
TASK_INTERRUPTIBLE
;
while
(
udev
->
head
==
udev
->
tail
)
{
if
(
!
(
udev
->
state
&
UIST_CREATED
))
{
retval
=
-
ENODEV
;
break
;
}
if
(
file
->
f_flags
&
O_NONBLOCK
)
{
retval
=
-
EAGAIN
;
break
;
}
if
(
signal_pending
(
current
))
{
retval
=
-
ERESTARTSYS
;
break
;
}
schedule
();
}
current
->
state
=
TASK_RUNNING
;
remove_wait_queue
(
&
udev
->
waitq
,
&
waitq
);
}
if
(
retval
)
if
(
retval
)
return
retval
;
return
retval
;
if
(
!
(
udev
->
state
&
UIST_CREATED
))
return
-
ENODEV
;
while
(
udev
->
head
!=
udev
->
tail
&&
retval
+
sizeof
(
struct
uinput_device
)
<=
count
)
{
while
(
udev
->
head
!=
udev
->
tail
&&
retval
+
sizeof
(
struct
uinput_device
)
<=
count
)
{
if
(
copy_to_user
(
buffer
+
retval
,
&
(
udev
->
buff
[
udev
->
tail
]),
if
(
copy_to_user
(
buffer
+
retval
,
&
(
udev
->
buff
[
udev
->
tail
]),
sizeof
(
struct
input_event
)))
sizeof
(
struct
input_event
)))
return
-
EFAULT
;
return
-
EFAULT
;
udev
->
tail
=
(
udev
->
tail
+
1
)
%
(
UINPUT_BUFFER_SIZE
-
1
);
udev
->
tail
=
(
udev
->
tail
+
1
)
%
(
UINPUT_BUFFER_SIZE
-
1
);
retval
+=
sizeof
(
struct
input_event
);
retval
+=
sizeof
(
struct
input_event
);
}
}
...
...
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