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

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'hexagon-for-linus-v4.12-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging

Pull hexagon fix from Guenter Roeck:
"This fixes a build error seen when building hexagon images.

Richard sent me an Ack, but didn't reply when asked if he wants me to
send the patch to you directly, so I figured I'd just do it"

* tag 'hexagon-for-linus-v4.12-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging:
hexagon: Use raw_copy_to_user

+2 -3
+2 -3
arch/hexagon/mm/uaccess.c
··· 37 37 long uncleared; 38 38 39 39 while (count > PAGE_SIZE) { 40 - uncleared = __copy_to_user_hexagon(dest, &empty_zero_page, 41 - PAGE_SIZE); 40 + uncleared = raw_copy_to_user(dest, &empty_zero_page, PAGE_SIZE); 42 41 if (uncleared) 43 42 return count - (PAGE_SIZE - uncleared); 44 43 count -= PAGE_SIZE; 45 44 dest += PAGE_SIZE; 46 45 } 47 46 if (count) 48 - count = __copy_to_user_hexagon(dest, &empty_zero_page, count); 47 + count = raw_copy_to_user(dest, &empty_zero_page, count); 49 48 50 49 return count; 51 50 }