diff options
Diffstat (limited to '0001-readfile-implement-readfile-syscall.patch')
-rw-r--r-- | 0001-readfile-implement-readfile-syscall.patch | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/0001-readfile-implement-readfile-syscall.patch b/0001-readfile-implement-readfile-syscall.patch index bf966a945243fd..3c231178ee635e 100644 --- a/0001-readfile-implement-readfile-syscall.patch +++ b/0001-readfile-implement-readfile-syscall.patch @@ -1,4 +1,4 @@ -From 0b91def003b129b2f80bb374ad0a5aaf391bff03 Mon Sep 17 00:00:00 2001 +From 81ede03c890891a967dad69370fcf821c4c283fc Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Date: Sun, 24 May 2020 12:37:15 +0200 Subject: [PATCH 1/4] readfile: implement readfile syscall @@ -15,14 +15,12 @@ overhead. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> --- - fs/open.c | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ + fs/open.c | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) -diff --git a/fs/open.c b/fs/open.c -index 9af548fb841b..b411c2b3ebd6 100644 --- a/fs/open.c +++ b/fs/open.c -@@ -1381,3 +1381,53 @@ int stream_open(struct inode *inode, struct file *filp) +@@ -1385,3 +1385,53 @@ int stream_open(struct inode *inode, str } EXPORT_SYMBOL(stream_open); @@ -76,6 +74,3 @@ index 9af548fb841b..b411c2b3ebd6 100644 + + return retval; +} --- -2.29.2 - |