aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/incore.h
diff options
context:
space:
mode:
authorBob Peterson <rpeterso@redhat.com>2015-07-24 09:45:43 -0500
committerBob Peterson <rpeterso@redhat.com>2015-12-14 12:19:24 -0600
commitb58bf407ca4669a2dfcc00f5888ee719d9c34150 (patch)
tree359fd1f15869b180a4f7775e6e0c45e565d59bb8 /fs/gfs2/incore.h
parenta097dc7e24cba7980bc5e2df461a4ef228e97e59 (diff)
downloadlinux-b58bf407ca4669a2dfcc00f5888ee719d9c34150.tar.gz
GFS2: Reduce size of incore inode
This patch makes no functional changes. Its goal is to reduce the size of the gfs2 inode in memory by rearranging structures and changing the size of some variables within the structure. Signed-off-by: Bob Peterson <rpeterso@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 25d0f12aaec5a..921304e1d785c 100644
--- a/fs/gfs2/incore.h
+++ b/fs/gfs2/incore.h
@@ -259,8 +259,8 @@ struct gfs2_holder {
struct gfs2_glock *gh_gl;
struct pid *gh_owner_pid;
- unsigned int gh_state;
- unsigned gh_flags;
+ u16 gh_flags;
+ u16 gh_state;
int gh_error;
unsigned long gh_iflags; /* HIF_... */