* [Cluster-devel] [PATCH] GFS2: force a log flush when invalidating the rindex glock
@ 2011-06-13 19:27 Benjamin Marzinski
2011-06-14 9:06 ` Steven Whitehouse
0 siblings, 1 reply; 2+ messages in thread
From: Benjamin Marzinski @ 2011-06-13 19:27 UTC (permalink / raw)
To: cluster-devel.redhat.com
Right now, there is nothing that forces the log to get flushed when a node
drops its rindex glock so that another node can grow the filesystem. If the
log doesn't get flushed, GFS2 can corrupt the sd_log_le_rg list in the
following way.
A node puts an rgd on the list in rg_lo_add(), and then the rindex glock is
dropped so the other node can grow the filesystem. When the node reacquires the
rindex glock, that rgd gets deleted in clear_rgrpdi() before ever being
removed from the list by gfs2_log_flush().
This code simply forces a log flush when the rindex glock is invalidated,
solving the problem.
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
---
fs/gfs2/glops.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
Index: gfs2-2.6-nmw/fs/gfs2/glops.c
===================================================================
--- gfs2-2.6-nmw.orig/fs/gfs2/glops.c
+++ gfs2-2.6-nmw/fs/gfs2/glops.c
@@ -221,8 +221,10 @@ static void inode_go_inval(struct gfs2_g
}
}
- if (ip == GFS2_I(gl->gl_sbd->sd_rindex))
+ if (ip == GFS2_I(gl->gl_sbd->sd_rindex)) {
+ gfs2_log_flush(gl->gl_sbd, NULL);
gl->gl_sbd->sd_rindex_uptodate = 0;
+ }
if (ip && S_ISREG(ip->i_inode.i_mode))
truncate_inode_pages(ip->i_inode.i_mapping, 0);
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [Cluster-devel] [PATCH] GFS2: force a log flush when invalidating the rindex glock
2011-06-13 19:27 [Cluster-devel] [PATCH] GFS2: force a log flush when invalidating the rindex glock Benjamin Marzinski
@ 2011-06-14 9:06 ` Steven Whitehouse
0 siblings, 0 replies; 2+ messages in thread
From: Steven Whitehouse @ 2011-06-14 9:06 UTC (permalink / raw)
To: cluster-devel.redhat.com
Hi,
On Mon, 2011-06-13 at 14:27 -0500, Benjamin Marzinski wrote:
> Right now, there is nothing that forces the log to get flushed when a node
> drops its rindex glock so that another node can grow the filesystem. If the
> log doesn't get flushed, GFS2 can corrupt the sd_log_le_rg list in the
> following way.
>
> A node puts an rgd on the list in rg_lo_add(), and then the rindex glock is
> dropped so the other node can grow the filesystem. When the node reacquires the
> rindex glock, that rgd gets deleted in clear_rgrpdi() before ever being
> removed from the list by gfs2_log_flush().
>
> This code simply forces a log flush when the rindex glock is invalidated,
> solving the problem.
>
> Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
> ---
> fs/gfs2/glops.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> Index: gfs2-2.6-nmw/fs/gfs2/glops.c
> ===================================================================
> --- gfs2-2.6-nmw.orig/fs/gfs2/glops.c
> +++ gfs2-2.6-nmw/fs/gfs2/glops.c
> @@ -221,8 +221,10 @@ static void inode_go_inval(struct gfs2_g
> }
> }
>
> - if (ip == GFS2_I(gl->gl_sbd->sd_rindex))
> + if (ip == GFS2_I(gl->gl_sbd->sd_rindex)) {
> + gfs2_log_flush(gl->gl_sbd, NULL);
> gl->gl_sbd->sd_rindex_uptodate = 0;
> + }
> if (ip && S_ISREG(ip->i_inode.i_mode))
> truncate_inode_pages(ip->i_inode.i_mapping, 0);
> }
>
Now in the -nmw git tree. Thanks,
Steve.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-06-14 9:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-13 19:27 [Cluster-devel] [PATCH] GFS2: force a log flush when invalidating the rindex glock Benjamin Marzinski
2011-06-14 9:06 ` Steven Whitehouse
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).