aboutsummaryrefslogtreecommitdiff
path: root/arch/arm64/lib/uaccess_flushcache.c
diff options
context:
space:
mode:
authorFuad Tabba <[email protected]>2021-05-24 09:29:57 +0100
committerWill Deacon <[email protected]>2021-05-25 19:27:49 +0100
commitf749448edb9c98bece0aeec5536260a8794af24b (patch)
treeee4656c05b492eec7b5ada9e383a4d915ce5b351 /arch/arm64/lib/uaccess_flushcache.c
parent1f42faf1d25de2ae239f322fda8af1c92c20e953 (diff)
arm64: __clean_dcache_area_pop to take end parameter instead of size
To be consistent with other functions with similar names and functionality in cacheflush.h, cache.S, and cachetlb.rst, change to specify the range in terms of start and end, as opposed to start and size. No functional change intended. Reported-by: Will Deacon <[email protected]> Acked-by: Mark Rutland <[email protected]> Signed-off-by: Fuad Tabba <[email protected]> Reviewed-by: Ard Biesheuvel <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Will Deacon <[email protected]>
Diffstat (limited to 'arch/arm64/lib/uaccess_flushcache.c')
-rw-r--r--arch/arm64/lib/uaccess_flushcache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/lib/uaccess_flushcache.c b/arch/arm64/lib/uaccess_flushcache.c
index c83bb5a4aad2..62ea989effe8 100644
--- a/arch/arm64/lib/uaccess_flushcache.c
+++ b/arch/arm64/lib/uaccess_flushcache.c
@@ -15,7 +15,7 @@ void memcpy_flushcache(void *dst, const void *src, size_t cnt)
* barrier to order the cache maintenance against the memcpy.
*/
memcpy(dst, src, cnt);
- __clean_dcache_area_pop(dst, cnt);
+ __clean_dcache_area_pop((unsigned long)dst, (unsigned long)dst + cnt);
}
EXPORT_SYMBOL_GPL(memcpy_flushcache);
@@ -33,6 +33,6 @@ unsigned long __copy_user_flushcache(void *to, const void __user *from,
rc = raw_copy_from_user(to, from, n);
/* See above */
- __clean_dcache_area_pop(to, n - rc);
+ __clean_dcache_area_pop((unsigned long)to, (unsigned long)to + n - rc);
return rc;
}