diff options
Diffstat (limited to 'mm')
-rw-r--r-- | mm/filemap_xip.c | 2 | ||||
-rw-r--r-- | mm/truncate.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mm/filemap_xip.c b/mm/filemap_xip.c index f874ae818ad3..0420a0292b03 100644 --- a/mm/filemap_xip.c +++ b/mm/filemap_xip.c | |||
@@ -431,7 +431,7 @@ xip_truncate_page(struct address_space *mapping, loff_t from) | |||
431 | else | 431 | else |
432 | return PTR_ERR(page); | 432 | return PTR_ERR(page); |
433 | } | 433 | } |
434 | zero_user_page(page, offset, length, KM_USER0); | 434 | zero_user(page, offset, length); |
435 | return 0; | 435 | return 0; |
436 | } | 436 | } |
437 | EXPORT_SYMBOL_GPL(xip_truncate_page); | 437 | EXPORT_SYMBOL_GPL(xip_truncate_page); |
diff --git a/mm/truncate.c b/mm/truncate.c index c3123b08ff6d..3855492f1c3a 100644 --- a/mm/truncate.c +++ b/mm/truncate.c | |||
@@ -48,7 +48,7 @@ void do_invalidatepage(struct page *page, unsigned long offset) | |||
48 | 48 | ||
49 | static inline void truncate_partial_page(struct page *page, unsigned partial) | 49 | static inline void truncate_partial_page(struct page *page, unsigned partial) |
50 | { | 50 | { |
51 | zero_user_page(page, partial, PAGE_CACHE_SIZE - partial, KM_USER0); | 51 | zero_user_segment(page, partial, PAGE_CACHE_SIZE); |
52 | if (PagePrivate(page)) | 52 | if (PagePrivate(page)) |
53 | do_invalidatepage(page, partial); | 53 | do_invalidatepage(page, partial); |
54 | } | 54 | } |