* [Cluster-devel] [fsck.gfs2 PATCH] fsck.gfs2: Speed up function bitmap_type
[not found] <1974922372.11077971.1468499112017.JavaMail.zimbra@redhat.com>
@ 2016-07-14 12:32 ` Bob Peterson
0 siblings, 0 replies; only message in thread
From: Bob Peterson @ 2016-07-14 12:32 UTC (permalink / raw)
To: cluster-devel.redhat.com
Hi,
Here's another patch that speeds up the performance of fsck.gfs2.
This one was also posted as part of a larger set on 22 June.
On my 15TB file system which is 80% full, the previous two patches I
posted made pass1 go from 15h52m to 14h23m. This patch makes pass1 go
from 14h23m to 13h35m27s, a savings of 47 minutes: another 6 percent
speedup from the previous set.
Patch description:
This patch speeds up fsck.gfs2 by allowing function bitmap_type to
remember the last rgrp it used for the next lookup.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
---
diff --git a/gfs2/fsck/util.h b/gfs2/fsck/util.h
index d93b65d..0649fec 100644
--- a/gfs2/fsck/util.h
+++ b/gfs2/fsck/util.h
@@ -70,8 +70,14 @@ static inline void link1_destroy(struct gfs2_bmap *bmap)
static inline int bitmap_type(struct gfs2_sbd *sdp, uint64_t bblock)
{
struct rgrp_tree *rgd;
+ static struct rgrp_tree *prevrgd = NULL;
- rgd = gfs2_blk2rgrpd(sdp, bblock);
+ if (prevrgd && rgrp_contains_block(prevrgd, bblock))
+ rgd = prevrgd;
+ else {
+ rgd = gfs2_blk2rgrpd(sdp, bblock);
+ prevrgd = rgd;
+ }
return lgfs2_get_bitmap(sdp, bblock, rgd);
}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2016-07-14 12:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1974922372.11077971.1468499112017.JavaMail.zimbra@redhat.com>
2016-07-14 12:32 ` [Cluster-devel] [fsck.gfs2 PATCH] fsck.gfs2: Speed up function bitmap_type Bob Peterson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).