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:
committed by
Linus Torvalds
parent
4670df831c
commit
369b8f5a70
@@ -314,7 +314,7 @@ __xip_file_write(struct file *filp, const char __user *buf,
|
|||||||
fault_in_pages_readable(buf, bytes);
|
fault_in_pages_readable(buf, bytes);
|
||||||
kaddr = kmap_atomic(page, KM_USER0);
|
kaddr = kmap_atomic(page, KM_USER0);
|
||||||
copied = bytes -
|
copied = bytes -
|
||||||
__copy_from_user_inatomic_nocache(kaddr, buf, bytes);
|
__copy_from_user_inatomic_nocache(kaddr + offset, buf, bytes);
|
||||||
kunmap_atomic(kaddr, KM_USER0);
|
kunmap_atomic(kaddr, KM_USER0);
|
||||||
flush_dcache_page(page);
|
flush_dcache_page(page);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user