uaccess.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * linux/arch/unicore32/include/asm/uaccess.h
  3. *
  4. * Code specific to PKUnity SoC and UniCore ISA
  5. *
  6. * Copyright (C) 2001-2010 GUAN Xue-tao
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #ifndef __UNICORE_UACCESS_H__
  13. #define __UNICORE_UACCESS_H__
  14. #include <asm/memory.h>
  15. #define __strncpy_from_user __strncpy_from_user
  16. #define __strnlen_user __strnlen_user
  17. #define __clear_user __clear_user
  18. #define __kernel_ok (uaccess_kernel())
  19. #define __user_ok(addr, size) (((size) <= TASK_SIZE) \
  20. && ((addr) <= TASK_SIZE - (size)))
  21. #define __access_ok(addr, size) (__kernel_ok || __user_ok((addr), (size)))
  22. extern unsigned long __must_check
  23. raw_copy_from_user(void *to, const void __user *from, unsigned long n);
  24. extern unsigned long __must_check
  25. raw_copy_to_user(void __user *to, const void *from, unsigned long n);
  26. extern unsigned long __must_check
  27. __clear_user(void __user *addr, unsigned long n);
  28. extern unsigned long __must_check
  29. __strncpy_from_user(char *to, const char __user *from, unsigned long count);
  30. extern unsigned long
  31. __strnlen_user(const char __user *s, long n);
  32. #define INLINE_COPY_FROM_USER
  33. #define INLINE_COPY_TO_USER
  34. #include <asm-generic/uaccess.h>
  35. #endif /* __UNICORE_UACCESS_H__ */