Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'for-linus' of git://git.armlinux.org.uk/~rmk/linux-arm

Pull ARM fix from Russell King:
"Just one fix for now to eliminate a KASAN false positive"

* tag 'for-linus' of git://git.armlinux.org.uk/~rmk/linux-arm:
ARM: 9290/1: uaccess: Fix KASAN false-positives

+2 -2
+2 -2
arch/arm/lib/uaccess_with_memcpy.c
··· 116 116 tocopy = n; 117 117 118 118 ua_flags = uaccess_save_and_enable(); 119 - memcpy((void *)to, from, tocopy); 119 + __memcpy((void *)to, from, tocopy); 120 120 uaccess_restore(ua_flags); 121 121 to += tocopy; 122 122 from += tocopy; ··· 178 178 tocopy = n; 179 179 180 180 ua_flags = uaccess_save_and_enable(); 181 - memset((void *)addr, 0, tocopy); 181 + __memset((void *)addr, 0, tocopy); 182 182 uaccess_restore(ua_flags); 183 183 addr += tocopy; 184 184 n -= tocopy;