Update of /cvsroot/linux-mips/linux/include/asm-mips64
In directory usw-pr-cvs1:/tmp/cvs-serv14345
Modified Files:
uaccess.h
Log Message:
Synced up.
Index: uaccess.h
===================================================================
RCS file: /cvsroot/linux-mips/linux/include/asm-mips64/uaccess.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** uaccess.h 2001/07/20 17:49:15 1.2
--- uaccess.h 2001/09/04 16:17:22 1.3
***************
*** 57,61 ****
__access_ok(((unsigned long)(addr)),(size),__access_mask)
! extern inline int verify_area(int type, const void * addr, unsigned long size)
{
return access_ok(type,addr,size) ? 0 : -EFAULT;
--- 57,61 ----
__access_ok(((unsigned long)(addr)),(size),__access_mask)
! static inline int verify_area(int type, const void * addr, unsigned long size)
{
return access_ok(type,addr,size) ? 0 : -EFAULT;
***************
*** 352,356 ****
* buffer filled, else strlen.
*/
! extern inline long
__strncpy_from_user(char *__to, const char *__from, long __len)
{
--- 352,356 ----
* buffer filled, else strlen.
*/
! static inline long
__strncpy_from_user(char *__to, const char *__from, long __len)
{
***************
*** 370,374 ****
}
! extern inline long
strncpy_from_user(char *__to, const char *__from, long __len)
{
--- 370,374 ----
}
! static inline long
strncpy_from_user(char *__to, const char *__from, long __len)
{
***************
*** 389,393 ****
/* Returns: 0 if bad, string length+1 (memory size) of string if ok */
! extern inline long __strlen_user(const char *s)
{
long res;
--- 389,393 ----
/* Returns: 0 if bad, string length+1 (memory size) of string if ok */
! static inline long __strlen_user(const char *s)
{
long res;
***************
*** 404,408 ****
}
! extern inline long strlen_user(const char *s)
{
long res;
--- 404,408 ----
}
! static inline long strlen_user(const char *s)
{
long res;
***************
*** 420,424 ****
/* Returns: 0 if bad, string length+1 (memory size) of string if ok */
! extern inline long __strnlen_user(const char *s, long n)
{
long res;
--- 420,424 ----
/* Returns: 0 if bad, string length+1 (memory size) of string if ok */
! static inline long __strnlen_user(const char *s, long n)
{
long res;
***************
*** 436,440 ****
}
! extern inline long strnlen_user(const char *s, long n)
{
long res;
--- 436,440 ----
}
! static inline long strnlen_user(const char *s, long n)
{
long res;
|