[Cluster-devel] [GFS2 PATCH] GFS2: Don't bother trying to add rgrps to the lru list

Bob Peterson rpeterso at redhat.com
Wed Jul 26 15:26:48 UTC 2017


Hi,

This patch removes a call to gfs2_glock_add_to_lru from function
gfs2_clear_rgrpd, which is called when GFS2 is removing all the
rgrps from memory. The call is just a waste of time because as soon
as it adds it to the lru_list, the subsequent call to gfs2_glock_put
takes it back off again. It doesn't make sense for the rgrps to ever
be on the lru list anyway because gfs2_rgrp_glops doesn't even have
the GLOF_LRU bit set (by design).

Signed-off-by: Bob Peterson <rpeterso at redhat.com>
---
 fs/gfs2/rgrp.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/fs/gfs2/rgrp.c b/fs/gfs2/rgrp.c
index 836e38ba5d0a..29fbeee36fa6 100644
--- a/fs/gfs2/rgrp.c
+++ b/fs/gfs2/rgrp.c
@@ -706,7 +706,6 @@ void gfs2_clear_rgrpd(struct gfs2_sbd *sdp)
 
 		if (gl) {
 			glock_set_object(gl, NULL);
-			gfs2_glock_add_to_lru(gl);
 			gfs2_glock_put(gl);
 		}
 




More information about the Cluster-devel mailing list