uaccess.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 <linux/thread_info.h>
  15. #include <linux/errno.h>
  16. #include <asm/memory.h>
  17. #include <asm/system.h>
  18. #define __copy_from_user __copy_from_user
  19. #define __copy_to_user __copy_to_user
  20. #define __strncpy_from_user __strncpy_from_user
  21. #define __strnlen_user __strnlen_user
  22. #define __clear_user __clear_user
  23. #define __kernel_ok (segment_eq(get_fs(), KERNEL_DS))
  24. #define __user_ok(addr, size) (((size) <= TASK_SIZE) \
  25. && ((addr) <= TASK_SIZE - (size)))
  26. #define __access_ok(addr, size) (__kernel_ok || __user_ok((addr), (size)))
  27. extern unsigned long __must_check
  28. __copy_from_user(void *to, const void __user *from, unsigned long n);
  29. extern unsigned long __must_check
  30. __copy_to_user(void __user *to, const void *from, unsigned long n);
  31. extern unsigned long __must_check
  32. __clear_user(void __user *addr, unsigned long n);
  33. extern unsigned long __must_check
  34. __strncpy_from_user(char *to, const char __user *from, unsigned long count);
  35. extern unsigned long
  36. __strnlen_user(const char __user *s, long n);
  37. #include <asm-generic/uaccess.h>
  38. extern int fixup_exception(struct pt_regs *regs);
  39. #endif /* __UNICORE_UACCESS_H__ */