diff options
| author | Fabio M. De Francesco <[email protected]> | 2022-04-25 17:57:53 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2022-04-26 10:51:31 +0000 |
| commit | 1d625960e41907af706f573a3cd097595a0ade63 (patch) | |
| tree | 8e5a08d2d6f7ff7e3def7d8be254b6f581075aae /drivers/android/binder_alloc.c | |
| parent | binder: Use memset_page() in binder_alloc_clear_buf() (diff) | |
| download | kernel-1d625960e41907af706f573a3cd097595a0ade63.tar.gz kernel-1d625960e41907af706f573a3cd097595a0ade63.zip | |
binder: Use kmap_local_page() in binder_alloc_copy_user_to_buffer()
The use of kmap() is being deprecated in favor of kmap_local_page()
where it is feasible. With kmap_local_page(), the mapping is per
thread, CPU local and not globally visible.
binder_alloc_copy_user_to_buffer() is a function where the use of
kmap_local_page() in place of kmap() is correctly suited because
the mapping is local to the thread.
Therefore, use kmap_local_page() / kunmap_local().
Cc: Christophe JAILLET <[email protected]>
Acked-by: Todd Kjos <[email protected]>
Signed-off-by: Fabio M. De Francesco <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/android/binder_alloc.c')
| -rw-r--r-- | drivers/android/binder_alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/android/binder_alloc.c b/drivers/android/binder_alloc.c index 0b3f2f569053..0875c463c002 100644 --- a/drivers/android/binder_alloc.c +++ b/drivers/android/binder_alloc.c @@ -1217,9 +1217,9 @@ binder_alloc_copy_user_to_buffer(struct binder_alloc *alloc, page = binder_alloc_get_page(alloc, buffer, buffer_offset, &pgoff); size = min_t(size_t, bytes, PAGE_SIZE - pgoff); - kptr = kmap(page) + pgoff; + kptr = kmap_local_page(page) + pgoff; ret = copy_from_user(kptr, from, size); - kunmap(page); + kunmap_local(kptr); if (ret) return bytes - size + ret; bytes -= size; |
