linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] wake up s_wait_unfrozen when ->freeze_fs fails
@ 2011-12-01  7:51 Kazuya Mio
  2011-12-06 15:20 ` Christoph Hellwig
  0 siblings, 1 reply; 3+ messages in thread
From: Kazuya Mio @ 2011-12-01  7:51 UTC (permalink / raw)
  To: linux-fsdevel

dd slept infinitely when fsfeeze failed because of EIO.
To fix this problem, if ->freeze_fs fails, freeze_super() wakes up
the tasks waiting for the filesystem to become unfrozen.

When s_frozen isn't SB_UNFROZEN in __generic_file_aio_write(),
the function sleeps until FITHAW ioctl wakes up s_wait_unfrozen.

However, if ->freeze_fs fails, s_frozen is set to SB_UNFROZEN and then
freeze_super() returns an error number. In this case, FITHAW ioctl returns
EINVAL because s_frozen is already SB_UNFROZEN. There is no way to wake up
s_wait_unfrozen, so __generic_file_aio_write() sleeps infinitely.

Signed-off-by: Kazuya Mio <k-mio@sx.jp.nec.com>
---
 fs/super.c |    2 ++
 1 file changed, 2 insertions(+)
diff --git a/fs/super.c b/fs/super.c
index 3f56a26..04c7db5 100644
--- a/fs/super.c
+++ b/fs/super.c
@@ -1161,6 +1161,8 @@ int freeze_super(struct super_block *sb)
 			printk(KERN_ERR
 				"VFS:Filesystem freeze failed\n");
 			sb->s_frozen = SB_UNFROZEN;
+			smp_wmb();
+			wake_up(&sb->s_wait_unfrozen);
 			deactivate_locked_super(sb);
 			return ret;
 		}

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-12-12  0:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-01  7:51 [PATCH] wake up s_wait_unfrozen when ->freeze_fs fails Kazuya Mio
2011-12-06 15:20 ` Christoph Hellwig
2011-12-12  0:42   ` Kazuya Mio

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).