summarylogtreecommitdiffstats
path: root/kernel-5.14-backport.patch
diff options
context:
space:
mode:
Diffstat (limited to 'kernel-5.14-backport.patch')
-rw-r--r--kernel-5.14-backport.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/kernel-5.14-backport.patch b/kernel-5.14-backport.patch
deleted file mode 100644
index a2d303b4cdbd..000000000000
--- a/kernel-5.14-backport.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/file.c
-+++ b/file.c
-@@ -1034,10 +1034,10 @@
- size_t cp, tail = PAGE_SIZE - off;
-
- page = pages[ip];
-- cp = copy_page_from_iter_atomic(page, off,
-- min(tail, bytes), from);
-+ cp = iov_iter_copy_from_user_atomic(page, from, off,
-+ min(tail, bytes));
- flush_dcache_page(page);
--
-+ iov_iter_advance(from, cp);
- copied += cp;
- bytes -= cp;
- if (!bytes || !cp)