login
Header Space

 
 

Re: [Btrfs-devel] [ANNOUNCE] Btrfs v0.10 (online growing/shrinking, ext3 conversion, and more)

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Christian Hesse <mail@...>
Cc: Chris mason <chris.mason@...>, <btrfs-devel@...>, <linux-fsdevel@...>
Date: Monday, January 21, 2008 - 5:15 am

2008/1/21, Christian Hesse <mail@earthworm.de>:

Please try this dirty patch.  I think it can solve your problem.

Regards
YZ
---
diff -r ac53d7df4c11 super.c
--- a/super.c	Thu Jan 17 12:58:00 2008 -0500
+++ b/super.c	Mon Jan 21 17:10:00 2008 +0800
@@ -423,6 +423,18 @@ static struct file_system_type btrfs_fs_
 	.fs_flags	= FS_REQUIRES_DEV,
 };

+static void btrfs_write_super_lockfs(struct super_block *sb)
+{
+	struct btrfs_root *root = btrfs_sb(sb);
+	btrfs_transaction_flush_work(root);
+}
+
+static void btrfs_unlockfs(struct super_block *sb)
+{
+	struct btrfs_root *root = btrfs_sb(sb);
+	btrfs_transaction_queue_work(root, HZ * 30);
+}
+
 static struct super_operations btrfs_super_ops = {
 	.delete_inode	= btrfs_delete_inode,
 	.put_inode	= btrfs_put_inode,
@@ -435,6 +447,8 @@ static struct super_operations btrfs_sup
 	.alloc_inode	= btrfs_alloc_inode,
 	.destroy_inode	= btrfs_destroy_inode,
 	.statfs		= btrfs_statfs,
+	.write_super_lockfs = btrfs_write_super_lockfs,
+	.unlockfs 	= btrfs_unlockfs,
 };

 static int __init init_btrfs_fs(void)
-
To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Re: [Btrfs-devel] [ANNOUNCE] Btrfs v0.10 (online growing/shr..., Yan Zheng, (Mon Jan 21, 5:15 am)
speck-geostationary