Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 76101
b: refs/heads/master
c: 54af623
h: refs/heads/master
i:
  76099: 42946cb
v: v3
  • Loading branch information
Nick Piggin authored and Dave Kleikamp committed Jan 3, 2008
1 parent 236ea4d commit c64ba8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 67e6682f18b3bf812a994ae027ff87174a297ae8
refs/heads/master: 54af6233d1cb84cdfaa6ea44ea0db0bcf518baac
4 changes: 2 additions & 2 deletions trunk/fs/jfs/jfs_metapage.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ static struct {
#endif

#define metapage_locked(mp) test_bit(META_locked, &(mp)->flag)
#define trylock_metapage(mp) test_and_set_bit(META_locked, &(mp)->flag)
#define trylock_metapage(mp) test_and_set_bit_lock(META_locked, &(mp)->flag)

static inline void unlock_metapage(struct metapage *mp)
{
clear_bit(META_locked, &mp->flag);
clear_bit_unlock(META_locked, &mp->flag);
wake_up(&mp->wait);
}

Expand Down

0 comments on commit c64ba8d

Please sign in to comment.