rwsem-spinlock.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 count is 0 then there are no active readers or writers
  16. * - if count is +ve then that is the number of active readers
  17. * - if count 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 count;
  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 */