mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-01 16:14:13 +08:00
mm: fix XIP file writes
Writing to XIP files at a non-page-aligned offset results in data corruption because the writes were always sent to the start of the page. Signed-off-by: Nick Piggin <npiggin@suse.de> Cc: Christian Borntraeger <borntraeger@de.ibm.com> Acked-by: Carsten Otte <cotte@de.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
4670df831c
commit
369b8f5a70
@ -314,7 +314,7 @@ __xip_file_write(struct file *filp, const char __user *buf,
|
||||
fault_in_pages_readable(buf, bytes);
|
||||
kaddr = kmap_atomic(page, KM_USER0);
|
||||
copied = bytes -
|
||||
__copy_from_user_inatomic_nocache(kaddr, buf, bytes);
|
||||
__copy_from_user_inatomic_nocache(kaddr + offset, buf, bytes);
|
||||
kunmap_atomic(kaddr, KM_USER0);
|
||||
flush_dcache_page(page);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user