This source file includes following definitions.
- __clear_user_hexagon
- clear_user_hexagon
1
2
3
4
5
6
7
8
9
10
11
12 #include <linux/types.h>
13 #include <linux/uaccess.h>
14 #include <asm/pgtable.h>
15
16
17
18
19
20
21
22 __kernel_size_t __clear_user_hexagon(void __user *dest, unsigned long count)
23 {
24 long uncleared;
25
26 while (count > PAGE_SIZE) {
27 uncleared = raw_copy_to_user(dest, &empty_zero_page, PAGE_SIZE);
28 if (uncleared)
29 return count - (PAGE_SIZE - uncleared);
30 count -= PAGE_SIZE;
31 dest += PAGE_SIZE;
32 }
33 if (count)
34 count = raw_copy_to_user(dest, &empty_zero_page, count);
35
36 return count;
37 }
38
39 unsigned long clear_user_hexagon(void __user *dest, unsigned long count)
40 {
41 if (!access_ok(dest, count))
42 return count;
43 else
44 return __clear_user_hexagon(dest, count);
45 }