mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-22 23:04:43 +00:00
fs: rename buffer trylock
Like the page lock change, this also requires name change, so convert the raw test_and_set bitop to a trylock. Signed-off-by: Nick Piggin <npiggin@suse.de> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
529ae9aaa0
commit
ca5de404ff
9 changed files with 17 additions and 13 deletions
|
@ -115,7 +115,6 @@ BUFFER_FNS(Uptodate, uptodate)
|
|||
BUFFER_FNS(Dirty, dirty)
|
||||
TAS_BUFFER_FNS(Dirty, dirty)
|
||||
BUFFER_FNS(Lock, locked)
|
||||
TAS_BUFFER_FNS(Lock, locked)
|
||||
BUFFER_FNS(Req, req)
|
||||
TAS_BUFFER_FNS(Req, req)
|
||||
BUFFER_FNS(Mapped, mapped)
|
||||
|
@ -321,10 +320,15 @@ static inline void wait_on_buffer(struct buffer_head *bh)
|
|||
__wait_on_buffer(bh);
|
||||
}
|
||||
|
||||
static inline int trylock_buffer(struct buffer_head *bh)
|
||||
{
|
||||
return likely(!test_and_set_bit(BH_Lock, &bh->b_state));
|
||||
}
|
||||
|
||||
static inline void lock_buffer(struct buffer_head *bh)
|
||||
{
|
||||
might_sleep();
|
||||
if (test_set_buffer_locked(bh))
|
||||
if (!trylock_buffer(bh))
|
||||
__lock_buffer(bh);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue