- 论坛徽章:
- 0
|
本帖最后由 harmony2013 于 2013-09-05 14:09 编辑
源代码 2.6.32
G:\linux-2.6.32\arch\x86\include\asm\spinlock.h
- static inline int __raw_read_trylock(raw_rwlock_t *lock)
- {
- atomic_t *count = (atomic_t *)lock;
- if (atomic_dec_return(count) >= 0)
- return 1;
- atomic_inc(count);
- return 0;
- }
- static inline int __raw_write_trylock(raw_rwlock_t *lock)
- {
- atomic_t *count = (atomic_t *)lock;
- if (atomic_sub_and_test(RW_LOCK_BIAS, count))
- return 1;
- atomic_add(RW_LOCK_BIAS, count);
- return 0;
- }
复制代码 RW_LOCK_BIAS 为 0x0100 0000
如果写者获得lock, 那么count 位 0x0200 0000
此时,有个疑问
此时读者atomic_dec_return(count) >= 0 ,读者仍然可以获得锁啊。
很多资料说,这个写者获得锁的时候,count为负数,不明白是怎么来的。
因为atomic_add(RW_LOCK_BIAS, count); 会导致结果为0x0200 0000,而不是0x8000 0000 (负数)
如果是仅仅想表示读者过多,比如多于 0x0100 0000个。那也不对啊,因为有写者的时候,仍然可以读。
求解!
thanks. |
|