diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2007-11-02 09:14:31 +0000 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2008-01-25 08:07:44 +0000 |
commit | e589665eb97b297412fb16b4c1737a01a91db903 (patch) | |
tree | 139a302a47bda6241d40a61bec1d7239de0e7108 /fs/gfs2/incore.h | |
parent | 3042a2ccd68d2b609d283219e51cba363aa35c1d (diff) | |
download | linux-e589665eb97b297412fb16b4c1737a01a91db903.tar.gz linux-e589665eb97b297412fb16b4c1737a01a91db903.tar.bz2 linux-e589665eb97b297412fb16b4c1737a01a91db903.zip |
[GFS2] Remove flags no longer required
The HIF_MUTEX and HIF_PROMOTE flags were set on the glock holders
depending upon which of the two waiters lists they were going to
be queued upon. They were then tested when the holders were taken
off the lists to ensure that the right type of holder was being
dequeued.
Since we are already using separate lists, there doesn't seem a
lot of point having these flags as well, and since setting them
and testing them is in the fast path for locking and unlocking
glock, this patch removes them.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/incore.h')
-rw-r--r-- | fs/gfs2/incore.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/gfs2/incore.h b/fs/gfs2/incore.h index 089dba412cc0..478023e9fda6 100644 --- a/fs/gfs2/incore.h +++ b/fs/gfs2/incore.h @@ -141,10 +141,6 @@ struct gfs2_glock_operations { }; enum { - /* Actions */ - HIF_MUTEX = 0, - HIF_PROMOTE = 1, - /* States */ HIF_HOLDER = 6, HIF_FIRST = 7, |