aboutsummaryrefslogtreecommitdiff
path: root/fs/gfs2/incore.h
diff options
context:
space:
mode:
authorGravatar Bob Peterson <rpeterso@redhat.com> 2013-11-25 11:16:25 +0000
committerGravatar Steven Whitehouse <swhiteho@redhat.com> 2014-01-03 09:58:08 +0000
commit5ea5050cec9c02e86ceb5e707a889003f895a690 (patch)
tree782554af83cacb80322874654782709dddd4174e /fs/gfs2/incore.h
parentGFS2: Drop inadequate rgrps from the reservation tree (diff)
downloadlinux-5ea5050cec9c02e86ceb5e707a889003f895a690.tar.gz
linux-5ea5050cec9c02e86ceb5e707a889003f895a690.tar.bz2
linux-5ea5050cec9c02e86ceb5e707a889003f895a690.zip
GFS2: Implement a "rgrp has no extents longer than X" scheme
With the preceding patch, we started accepting block reservations smaller than the ideal size, which requires a lot more parsing of the bitmaps. To reduce the amount of bitmap searching, this patch implements a scheme whereby each rgrp keeps track of the point at this multi-block reservations will fail. 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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/gfs2/incore.h b/fs/gfs2/incore.h
index ba1ea67f4eeb..01328162c952 100644
--- a/fs/gfs2/incore.h
+++ b/fs/gfs2/incore.h
@@ -93,6 +93,7 @@ struct gfs2_rgrpd {
struct gfs2_rgrp_lvb *rd_rgl;
u32 rd_last_alloc;
u32 rd_flags;
+ u32 rd_extfail_pt; /* extent failure point */
#define GFS2_RDF_CHECK 0x10000000 /* check for unlinked inodes */
#define GFS2_RDF_UPTODATE 0x20000000 /* rg is up to date */
#define GFS2_RDF_ERROR 0x40000000 /* error in rg */