* [PATCH] fs/coredump: Use kmap_local_page()
@ 2021-02-03 22:33 ira.weiny
0 siblings, 0 replies; only message in thread
From: ira.weiny @ 2021-02-03 22:33 UTC (permalink / raw)
To: Alexander Viro; +Cc: Ira Weiny, Andrew Morton, linux-kernel, linux-fsdevel
From: Ira Weiny <ira.weiny@intel.com>
In dump_user_range() there is no reason for the mapping to be global.
Use kmap_local_page() rather than kmap.
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org
Cc: linux-fsdevel@vger.kernel.org
Signed-off-by: Ira Weiny <ira.weiny@intel.com>
---
fs/coredump.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/coredump.c b/fs/coredump.c
index a2f6ecc8e345..53f63e176a2a 100644
--- a/fs/coredump.c
+++ b/fs/coredump.c
@@ -894,10 +894,10 @@ int dump_user_range(struct coredump_params *cprm, unsigned long start,
*/
page = get_dump_page(addr);
if (page) {
- void *kaddr = kmap(page);
+ void *kaddr = kmap_local_page(page);
stop = !dump_emit(cprm, kaddr, PAGE_SIZE);
- kunmap(page);
+ kunmap_local(kaddr);
put_page(page);
} else {
stop = !dump_skip(cprm, PAGE_SIZE);
--
2.28.0.rc0.12.gb6a658bd00c9
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2021-02-03 22:34 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-03 22:33 [PATCH] fs/coredump: Use kmap_local_page() ira.weiny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).