|
@@ -207,7 +207,7 @@ raw_copy_from_user(void *to, const void __user *from, unsigned long n)
|
|
|
*/
|
|
*/
|
|
|
"=&r" (tmp), "+r" (to), "+r" (from)
|
|
"=&r" (tmp), "+r" (to), "+r" (from)
|
|
|
:
|
|
:
|
|
|
- : "lp_count", "lp_start", "lp_end", "memory");
|
|
|
|
|
|
|
+ : "lp_count", "memory");
|
|
|
|
|
|
|
|
return n;
|
|
return n;
|
|
|
}
|
|
}
|
|
@@ -433,7 +433,7 @@ raw_copy_to_user(void __user *to, const void *from, unsigned long n)
|
|
|
*/
|
|
*/
|
|
|
"=&r" (tmp), "+r" (to), "+r" (from)
|
|
"=&r" (tmp), "+r" (to), "+r" (from)
|
|
|
:
|
|
:
|
|
|
- : "lp_count", "lp_start", "lp_end", "memory");
|
|
|
|
|
|
|
+ : "lp_count", "memory");
|
|
|
|
|
|
|
|
return n;
|
|
return n;
|
|
|
}
|
|
}
|
|
@@ -653,7 +653,7 @@ static inline unsigned long __arc_clear_user(void __user *to, unsigned long n)
|
|
|
" .previous \n"
|
|
" .previous \n"
|
|
|
: "+r"(d_char), "+r"(res)
|
|
: "+r"(d_char), "+r"(res)
|
|
|
: "i"(0)
|
|
: "i"(0)
|
|
|
- : "lp_count", "lp_start", "lp_end", "memory");
|
|
|
|
|
|
|
+ : "lp_count", "memory");
|
|
|
|
|
|
|
|
return res;
|
|
return res;
|
|
|
}
|
|
}
|
|
@@ -686,7 +686,7 @@ __arc_strncpy_from_user(char *dst, const char __user *src, long count)
|
|
|
" .previous \n"
|
|
" .previous \n"
|
|
|
: "+r"(res), "+r"(dst), "+r"(src), "=r"(val)
|
|
: "+r"(res), "+r"(dst), "+r"(src), "=r"(val)
|
|
|
: "g"(-EFAULT), "r"(count)
|
|
: "g"(-EFAULT), "r"(count)
|
|
|
- : "lp_count", "lp_start", "lp_end", "memory");
|
|
|
|
|
|
|
+ : "lp_count", "memory");
|
|
|
|
|
|
|
|
return res;
|
|
return res;
|
|
|
}
|
|
}
|