diff options
author | Bob Peterson <rpeterso@redhat.com> | 2015-07-24 09:45:43 -0500 |
---|---|---|
committer | Bob Peterson <rpeterso@redhat.com> | 2015-12-14 12:19:24 -0600 |
commit | b58bf407ca4669a2dfcc00f5888ee719d9c34150 (patch) | |
tree | 359fd1f15869b180a4f7775e6e0c45e565d59bb8 /fs/gfs2/file.c | |
parent | a097dc7e24cba7980bc5e2df461a4ef228e97e59 (diff) |
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/file.c')
-rw-r--r-- | fs/gfs2/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/file.c b/fs/gfs2/file.c index 3ead27d64bf0..860408053c95 100644 --- a/fs/gfs2/file.c +++ b/fs/gfs2/file.c @@ -1013,7 +1013,7 @@ static int do_flock(struct file *file, int cmd, struct file_lock *fl) struct gfs2_inode *ip = GFS2_I(file_inode(file)); struct gfs2_glock *gl; unsigned int state; - int flags; + u16 flags; int error = 0; int sleeptime; |