Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 39385
b: refs/heads/master
c: b971018
h: refs/heads/master
i:
  39383: af4a53b
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed Oct 11, 2006
1 parent 8edc9d4 commit fd64f58
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4b4fcaa1a9eec90b44b66a67af6e130349ba008e
refs/heads/master: b971018bae94bb43ae2402f884684ad69e85f931
16 changes: 8 additions & 8 deletions trunk/include/asm-m68k/uaccess.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ asm volatile ("\n" \
break; \
case 8: \
{ \
const void *__pu_ptr = (ptr); \
const void __user *__pu_ptr = (ptr); \
asm volatile ("\n" \
"1: moves.l %2,(%1)+\n" \
"2: moves.l %R2,(%1)\n" \
Expand Down Expand Up @@ -125,7 +125,7 @@ asm volatile ("\n" \
" .previous" \
: "+d" (res), "=&" #reg (__gu_val) \
: "m" (*(ptr)), "i" (err)); \
(x) = (typeof(*(ptr)))(long)__gu_val; \
(x) = (typeof(*(ptr)))(unsigned long)__gu_val; \
})

#define __get_user(x, ptr) \
Expand Down Expand Up @@ -221,16 +221,16 @@ __constant_copy_from_user(void *to, const void __user *from, unsigned long n)

switch (n) {
case 1:
__get_user_asm(res, *(u8 *)to, (u8 *)from, u8, b, d, 1);
__get_user_asm(res, *(u8 *)to, (u8 __user *)from, u8, b, d, 1);
break;
case 2:
__get_user_asm(res, *(u16 *)to, (u16 *)from, u16, w, d, 2);
__get_user_asm(res, *(u16 *)to, (u16 __user *)from, u16, w, d, 2);
break;
case 3:
__constant_copy_from_user_asm(res, to, from, tmp, 3, w, b,);
break;
case 4:
__get_user_asm(res, *(u32 *)to, (u32 *)from, u32, l, r, 4);
__get_user_asm(res, *(u32 *)to, (u32 __user *)from, u32, l, r, 4);
break;
case 5:
__constant_copy_from_user_asm(res, to, from, tmp, 5, l, b,);
Expand Down Expand Up @@ -302,16 +302,16 @@ __constant_copy_to_user(void __user *to, const void *from, unsigned long n)

switch (n) {
case 1:
__put_user_asm(res, *(u8 *)from, (u8 *)to, b, d, 1);
__put_user_asm(res, *(u8 *)from, (u8 __user *)to, b, d, 1);
break;
case 2:
__put_user_asm(res, *(u16 *)from, (u16 *)to, w, d, 2);
__put_user_asm(res, *(u16 *)from, (u16 __user *)to, w, d, 2);
break;
case 3:
__constant_copy_to_user_asm(res, to, from, tmp, 3, w, b,);
break;
case 4:
__put_user_asm(res, *(u32 *)from, (u32 *)to, l, r, 4);
__put_user_asm(res, *(u32 *)from, (u32 __user *)to, l, r, 4);
break;
case 5:
__constant_copy_to_user_asm(res, to, from, tmp, 5, l, b,);
Expand Down

0 comments on commit fd64f58

Please sign in to comment.