Commit d9a42b53 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Linus Torvalds

mm: use kmap_local_page in memzero_page

The commit message introducing the global memzero_page explicitly
mentions switching to kmap_local_page in the commit log but doesn't
actually do that.

Link: https://lkml.kernel.org/r/20210713055231.137602-3-hch@lst.de
Fixes: 28961998 ("iov_iter: lift memzero_page() to highmem.h")
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarChaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Reviewed-by: default avatarIra Weiny <ira.weiny@intel.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 8dad53a1
...@@ -324,10 +324,10 @@ static inline void memcpy_to_page(struct page *page, size_t offset, ...@@ -324,10 +324,10 @@ static inline void memcpy_to_page(struct page *page, size_t offset,
static inline void memzero_page(struct page *page, size_t offset, size_t len) static inline void memzero_page(struct page *page, size_t offset, size_t len)
{ {
char *addr = kmap_atomic(page); char *addr = kmap_local_page(page);
memset(addr + offset, 0, len); memset(addr + offset, 0, len);
flush_dcache_page(page); flush_dcache_page(page);
kunmap_atomic(addr); kunmap_local(addr);
} }
#endif /* _LINUX_HIGHMEM_H */ #endif /* _LINUX_HIGHMEM_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment