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
4da54c21
Commit
4da54c21
authored
Apr 05, 2014
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nfs: switch to iter_splice_write_file()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
96f9bc8f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
34 deletions
+2
-34
fs/nfs/file.c
fs/nfs/file.c
+1
-31
fs/nfs/internal.h
fs/nfs/internal.h
+0
-2
fs/nfs/nfs4file.c
fs/nfs/nfs4file.c
+1
-1
No files found.
fs/nfs/file.c
View file @
4da54c21
...
...
@@ -690,36 +690,6 @@ ssize_t nfs_file_write(struct kiocb *iocb, struct iov_iter *from)
}
EXPORT_SYMBOL_GPL
(
nfs_file_write
);
ssize_t
nfs_file_splice_write
(
struct
pipe_inode_info
*
pipe
,
struct
file
*
filp
,
loff_t
*
ppos
,
size_t
count
,
unsigned
int
flags
)
{
struct
inode
*
inode
=
file_inode
(
filp
);
unsigned
long
written
=
0
;
ssize_t
ret
;
dprintk
(
"NFS splice_write(%pD2, %lu@%llu)
\n
"
,
filp
,
(
unsigned
long
)
count
,
(
unsigned
long
long
)
*
ppos
);
/*
* The combination of splice and an O_APPEND destination is disallowed.
*/
ret
=
generic_file_splice_write
(
pipe
,
filp
,
ppos
,
count
,
flags
);
if
(
ret
>
0
)
written
=
ret
;
if
(
ret
>=
0
&&
nfs_need_sync_write
(
filp
,
inode
))
{
int
err
=
vfs_fsync
(
filp
,
0
);
if
(
err
<
0
)
ret
=
err
;
}
if
(
ret
>
0
)
nfs_add_stats
(
inode
,
NFSIOS_NORMALWRITTENBYTES
,
written
);
return
ret
;
}
EXPORT_SYMBOL_GPL
(
nfs_file_splice_write
);
static
int
do_getlk
(
struct
file
*
filp
,
int
cmd
,
struct
file_lock
*
fl
,
int
is_local
)
{
...
...
@@ -950,7 +920,7 @@ const struct file_operations nfs_file_operations = {
.
lock
=
nfs_lock
,
.
flock
=
nfs_flock
,
.
splice_read
=
nfs_file_splice_read
,
.
splice_write
=
nfs
_file_splice_write
,
.
splice_write
=
iter
_file_splice_write
,
.
check_flags
=
nfs_check_flags
,
.
setlease
=
nfs_setlease
,
};
...
...
fs/nfs/internal.h
View file @
4da54c21
...
...
@@ -328,8 +328,6 @@ ssize_t nfs_file_write(struct kiocb *, struct iov_iter *);
int
nfs_file_release
(
struct
inode
*
,
struct
file
*
);
int
nfs_lock
(
struct
file
*
,
int
,
struct
file_lock
*
);
int
nfs_flock
(
struct
file
*
,
int
,
struct
file_lock
*
);
ssize_t
nfs_file_splice_write
(
struct
pipe_inode_info
*
,
struct
file
*
,
loff_t
*
,
size_t
,
unsigned
int
);
int
nfs_check_flags
(
int
);
int
nfs_setlease
(
struct
file
*
,
long
,
struct
file_lock
**
);
...
...
fs/nfs/nfs4file.c
View file @
4da54c21
...
...
@@ -130,7 +130,7 @@ const struct file_operations nfs4_file_operations = {
.
lock
=
nfs_lock
,
.
flock
=
nfs_flock
,
.
splice_read
=
nfs_file_splice_read
,
.
splice_write
=
nfs
_file_splice_write
,
.
splice_write
=
iter
_file_splice_write
,
.
check_flags
=
nfs_check_flags
,
.
setlease
=
nfs_setlease
,
};
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