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
914961aa
Commit
914961aa
authored
Jun 23, 2013
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tile-srom: switch to fixed_size_llseek()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
b33159b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
25 deletions
+3
-25
drivers/char/tile-srom.c
drivers/char/tile-srom.c
+3
-25
No files found.
drivers/char/tile-srom.c
View file @
914961aa
...
@@ -273,32 +273,10 @@ static ssize_t srom_write(struct file *filp, const char __user *buf,
...
@@ -273,32 +273,10 @@ static ssize_t srom_write(struct file *filp, const char __user *buf,
}
}
/* Provide our own implementation so we can use srom->total_size. */
/* Provide our own implementation so we can use srom->total_size. */
loff_t
srom_llseek
(
struct
file
*
fil
p
,
loff_t
offset
,
int
origin
)
loff_t
srom_llseek
(
struct
file
*
fil
e
,
loff_t
offset
,
int
origin
)
{
{
struct
srom_dev
*
srom
=
filp
->
private_data
;
struct
srom_dev
*
srom
=
file
->
private_data
;
return
fixed_size_llseek
(
file
,
offset
,
origin
,
srom
->
total_size
);
if
(
mutex_lock_interruptible
(
&
srom
->
lock
))
return
-
ERESTARTSYS
;
switch
(
origin
)
{
case
SEEK_END
:
offset
+=
srom
->
total_size
;
break
;
case
SEEK_CUR
:
offset
+=
filp
->
f_pos
;
break
;
}
if
(
offset
<
0
||
offset
>
srom
->
total_size
)
{
offset
=
-
EINVAL
;
}
else
{
filp
->
f_pos
=
offset
;
filp
->
f_version
=
0
;
}
mutex_unlock
(
&
srom
->
lock
);
return
offset
;
}
}
static
ssize_t
total_show
(
struct
device
*
dev
,
static
ssize_t
total_show
(
struct
device
*
dev
,
...
...
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