/include/linux/rwsem-spinlock.h

https://github.com/airy09/android_kernel_sony_apq8064 · C Header · 45 lines · 26 code · 6 blank · 13 comment · 0 complexity · e94c7af1e012183fef218485e888031c MD5 · raw file

  1. /* rwsem-spinlock.h: fallback C implementation
  2. *
  3. * Copyright (c) 2001 David Howells (dhowells@redhat.com).
  4. * - Derived partially from ideas by Andrea Arcangeli <andrea@suse.de>
  5. * - Derived also from comments by Linus
  6. */
  7. #ifndef _LINUX_RWSEM_SPINLOCK_H
  8. #define _LINUX_RWSEM_SPINLOCK_H
  9. #ifndef _LINUX_RWSEM_H
  10. #error "please don't include linux/rwsem-spinlock.h directly, use linux/rwsem.h instead"
  11. #endif
  12. #ifdef __KERNEL__
  13. /*
  14. * the rw-semaphore definition
  15. * - if activity is 0 then there are no active readers or writers
  16. * - if activity is +ve then that is the number of active readers
  17. * - if activity is -1 then there is one active writer
  18. * - if wait_list is not empty, then there are processes waiting for the semaphore
  19. */
  20. struct rw_semaphore {
  21. __s32 activity;
  22. raw_spinlock_t wait_lock;
  23. struct list_head wait_list;
  24. #ifdef CONFIG_DEBUG_LOCK_ALLOC
  25. struct lockdep_map dep_map;
  26. #endif
  27. };
  28. #define RWSEM_UNLOCKED_VALUE 0x00000000
  29. extern void __down_read(struct rw_semaphore *sem);
  30. extern int __down_read_trylock(struct rw_semaphore *sem);
  31. extern void __down_write(struct rw_semaphore *sem);
  32. extern void __down_write_nested(struct rw_semaphore *sem, int subclass);
  33. extern int __down_write_trylock(struct rw_semaphore *sem);
  34. extern void __up_read(struct rw_semaphore *sem);
  35. extern void __up_write(struct rw_semaphore *sem);
  36. extern void __downgrade_write(struct rw_semaphore *sem);
  37. extern int rwsem_is_locked(struct rw_semaphore *sem);
  38. #endif /* __KERNEL__ */
  39. #endif /* _LINUX_RWSEM_SPINLOCK_H */