aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/incore.h
diff options
context:
space:
mode:
authorBob Peterson <rpeterso@redhat.com>2008-01-28 23:31:39 -0500
committerSteven Whitehouse <swhiteho@redhat.com>2008-03-31 05:40:13 -0400
commit29d38cd16358dcaef4a6c50866ecee28025b481a (patch)
treee8694d79f6c422aa68af5c493f8b761c7eff5515 /fs/gfs2/incore.h
parent42d52e3818751633656fb90df1bd5cb5362fa8cc (diff)
[GFS2] Get rid of gl_waiters2
This patch reduces memory by replacing the int variable gl_waiters2 by a single bit in the gl_flags. Signed-off-by: Bob Peterson <rpeterso@redhat.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/incore.h')
-rw-r--r--fs/gfs2/incore.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/gfs2/incore.h b/fs/gfs2/incore.h
index 39bab7b213e9..fe14f6a417b5 100644
--- a/fs/gfs2/incore.h
+++ b/fs/gfs2/incore.h
@@ -1,6 +1,6 @@
1/* 1/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. 2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved. 3 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
4 * 4 *
5 * This copyrighted material is made available to anyone wishing to use, 5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions 6 * modify, copy, or redistribute it subject to the terms and conditions
@@ -167,6 +167,7 @@ enum {
167 GLF_DIRTY = 5, 167 GLF_DIRTY = 5,
168 GLF_DEMOTE_IN_PROGRESS = 6, 168 GLF_DEMOTE_IN_PROGRESS = 6,
169 GLF_LFLUSH = 7, 169 GLF_LFLUSH = 7,
170 GLF_WAITERS2 = 8,
170}; 171};
171 172
172struct gfs2_glock { 173struct gfs2_glock {
@@ -186,7 +187,6 @@ struct gfs2_glock {
186 struct list_head gl_holders; 187 struct list_head gl_holders;
187 struct list_head gl_waiters1; /* HIF_MUTEX */ 188 struct list_head gl_waiters1; /* HIF_MUTEX */
188 struct list_head gl_waiters3; /* HIF_PROMOTE */ 189 struct list_head gl_waiters3; /* HIF_PROMOTE */
189 int gl_waiters2; /* GIF_DEMOTE */
190 190
191 const struct gfs2_glock_operations *gl_ops; 191 const struct gfs2_glock_operations *gl_ops;
192 192