diff mbox series

[2/3] proc: wire up generic_file_splice_read for iter ops

Message ID 20201029100950.46668-3-hch@lst.de (mailing list archive)
State New, archived
Headers show
Series [1/3] seq_file: add seq_read_iter | expand

Commit Message

Christoph Hellwig Oct. 29, 2020, 10:09 a.m. UTC
Wire up generic_file_splice_read for the iter based proxy ops, so
that splice reads from them work.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 fs/proc/inode.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Greg KH Oct. 29, 2020, 10:32 a.m. UTC | #1
On Thu, Oct 29, 2020 at 11:09:49AM +0100, Christoph Hellwig wrote:
> Wire up generic_file_splice_read for the iter based proxy ops, so
> that splice reads from them work.
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
>  fs/proc/inode.c | 2 ++
>  1 file changed, 2 insertions(+)

Tested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
diff mbox series

Patch

diff --git a/fs/proc/inode.c b/fs/proc/inode.c
index 58c075e2a452d6..bde6b6f69852d2 100644
--- a/fs/proc/inode.c
+++ b/fs/proc/inode.c
@@ -597,6 +597,7 @@  static const struct file_operations proc_iter_file_ops = {
 	.llseek		= proc_reg_llseek,
 	.read_iter	= proc_reg_read_iter,
 	.write		= proc_reg_write,
+	.splice_read	= generic_file_splice_read,
 	.poll		= proc_reg_poll,
 	.unlocked_ioctl	= proc_reg_unlocked_ioctl,
 	.mmap		= proc_reg_mmap,
@@ -622,6 +623,7 @@  static const struct file_operations proc_reg_file_ops_compat = {
 static const struct file_operations proc_iter_file_ops_compat = {
 	.llseek		= proc_reg_llseek,
 	.read_iter	= proc_reg_read_iter,
+	.splice_read	= generic_file_splice_read,
 	.write		= proc_reg_write,
 	.poll		= proc_reg_poll,
 	.unlocked_ioctl	= proc_reg_unlocked_ioctl,