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
c09ed2a6
Commit
c09ed2a6
authored
Jun 23, 2013
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
isapnp: switch to fixed_size_llseek()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
7233c774
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
21 deletions
+1
-21
drivers/pnp/isapnp/proc.c
drivers/pnp/isapnp/proc.c
+1
-21
No files found.
drivers/pnp/isapnp/proc.c
View file @
c09ed2a6
...
@@ -29,27 +29,7 @@ static struct proc_dir_entry *isapnp_proc_bus_dir = NULL;
...
@@ -29,27 +29,7 @@ static struct proc_dir_entry *isapnp_proc_bus_dir = NULL;
static
loff_t
isapnp_proc_bus_lseek
(
struct
file
*
file
,
loff_t
off
,
int
whence
)
static
loff_t
isapnp_proc_bus_lseek
(
struct
file
*
file
,
loff_t
off
,
int
whence
)
{
{
loff_t
new
=
-
1
;
return
fixed_size_llseek
(
file
,
off
,
whence
,
256
);
struct
inode
*
inode
=
file_inode
(
file
);
mutex_lock
(
&
inode
->
i_mutex
);
switch
(
whence
)
{
case
0
:
new
=
off
;
break
;
case
1
:
new
=
file
->
f_pos
+
off
;
break
;
case
2
:
new
=
256
+
off
;
break
;
}
if
(
new
<
0
||
new
>
256
)
new
=
-
EINVAL
;
else
file
->
f_pos
=
new
;
mutex_unlock
(
&
inode
->
i_mutex
);
return
new
;
}
}
static
ssize_t
isapnp_proc_bus_read
(
struct
file
*
file
,
char
__user
*
buf
,
static
ssize_t
isapnp_proc_bus_read
(
struct
file
*
file
,
char
__user
*
buf
,
...
...
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