diff options
author | Bob Peterson <rpeterso@redhat.com> | 2015-07-16 08:28:04 -0500 |
---|---|---|
committer | Bob Peterson <rpeterso@redhat.com> | 2015-12-14 12:16:38 -0600 |
commit | a097dc7e24cba7980bc5e2df461a4ef228e97e59 (patch) | |
tree | bfe9075d7d759fe136d540cea595dfbc4c81f361 /fs/gfs2/util.c | |
parent | b54e9a0b92d44843f6719ae22b0f6daf5b9b23b4 (diff) | |
download | linux-rpi-a097dc7e24cba7980bc5e2df461a4ef228e97e59.tar.gz linux-rpi-a097dc7e24cba7980bc5e2df461a4ef228e97e59.tar.bz2 linux-rpi-a097dc7e24cba7980bc5e2df461a4ef228e97e59.zip |
GFS2: Make rgrp reservations part of the gfs2_inode structure
Before this patch, multi-block reservation structures were allocated
from a special slab. This patch folds the structure into the gfs2_inode
structure. The disadvantage is that the gfs2_inode needs more memory,
even when a file is opened read-only. The advantages are: (a) we don't
need the special slab and the extra time it takes to allocate and
deallocate from it. (b) we no longer need to worry that the structure
exists for things like quota management. (c) This also allows us to
remove the calls to get_write_access and put_write_access since we
know the structure will exist.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Diffstat (limited to 'fs/gfs2/util.c')
-rw-r--r-- | fs/gfs2/util.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/gfs2/util.c b/fs/gfs2/util.c index 3b4819d8bdd6..cf645835710f 100644 --- a/fs/gfs2/util.c +++ b/fs/gfs2/util.c @@ -28,7 +28,6 @@ struct kmem_cache *gfs2_bufdata_cachep __read_mostly; struct kmem_cache *gfs2_rgrpd_cachep __read_mostly; struct kmem_cache *gfs2_quotad_cachep __read_mostly; struct kmem_cache *gfs2_qadata_cachep __read_mostly; -struct kmem_cache *gfs2_rsrv_cachep __read_mostly; mempool_t *gfs2_page_pool __read_mostly; void gfs2_assert_i(struct gfs2_sbd *sdp) |