Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
9edca64b
Commit
9edca64b
authored
May 20, 2008
by
Arnd Bergmann
Committed by
Jonathan Corbet
Jul 02, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
serio: BKL pushdown
Signed-off-by:
Arnd Bergmann
<
arnd@arndb.de
>
parent
556e4b0b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
drivers/input/serio/serio_raw.c
drivers/input/serio/serio_raw.c
+5
-1
No files found.
drivers/input/serio/serio_raw.c
View file @
9edca64b
...
...
@@ -10,6 +10,7 @@
*/
#include <linux/slab.h>
#include <linux/smp_lock.h>
#include <linux/poll.h>
#include <linux/module.h>
#include <linux/serio.h>
...
...
@@ -81,9 +82,10 @@ static int serio_raw_open(struct inode *inode, struct file *file)
struct
serio_raw_list
*
list
;
int
retval
=
0
;
lock_kernel
();
retval
=
mutex_lock_interruptible
(
&
serio_raw_mutex
);
if
(
retval
)
return
retva
l
;
goto
out_bk
l
;
if
(
!
(
serio_raw
=
serio_raw_locate
(
iminor
(
inode
))))
{
retval
=
-
ENODEV
;
...
...
@@ -108,6 +110,8 @@ static int serio_raw_open(struct inode *inode, struct file *file)
out:
mutex_unlock
(
&
serio_raw_mutex
);
out_bkl:
unlock_kernel
();
return
retval
;
}
...
...
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