提交 88bcb0f6 编写于 作者: Q Qing Zhang 提交者: Hongchen Zhang

LoongArch: Requires __force attributes for any casts

mainline inclusion
from mainline-v6.0-rc1
commit 5e8be07c
category: feature
bugzilla: https://gitee.com/openeuler/kernel/issues/I5OHOB
CVE: NA

--------------------------------

This fix a warning when "make C=2":
arch/loongarch/kernel/ptrace.c: note: in included file (through include/linux/uaccess.h, include/linux/sched/task.h, include/linux/sched/signal.h, include/linux/ptrace.h, include/linux/audit.h):
./arch/loongarch/include/asm/uaccess.h:232:32: warning: incorrect type in argument 2 (different address spaces)
./arch/loongarch/include/asm/uaccess.h:232:32:    expected void const *from
./arch/loongarch/include/asm/uaccess.h:232:32:    got void const [noderef] __user *from
Reported-by: Nkernel test robot <lkp@intel.com>
Signed-off-by: NQing Zhang <zhangqing@loongson.cn>
Signed-off-by: NHuacai Chen <chenhuacai@loongson.cn>
上级 b4fb88d6
...@@ -273,13 +273,13 @@ extern unsigned long __copy_user(void *to, const void *from, __kernel_size_t n); ...@@ -273,13 +273,13 @@ extern unsigned long __copy_user(void *to, const void *from, __kernel_size_t n);
static inline unsigned long __must_check static inline unsigned long __must_check
raw_copy_from_user(void *to, const void __user *from, unsigned long n) raw_copy_from_user(void *to, const void __user *from, unsigned long n)
{ {
return __copy_user(to, from, n); return __copy_user(to, (__force const void *)from, n);
} }
static inline unsigned long __must_check static inline unsigned long __must_check
raw_copy_to_user(void __user *to, const void *from, unsigned long n) raw_copy_to_user(void __user *to, const void *from, unsigned long n)
{ {
return __copy_user(to, from, n); return __copy_user((__force void *)to, from, n);
} }
#define INLINE_COPY_FROM_USER #define INLINE_COPY_FROM_USER
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册