[PATCH] btrfs/extent_io.c: cleanup the comment for clear_state_bit

2012-03-31 Thread Wang Sheng-Hui
No 'delete' arg is used for clear_state_bit anymore. Cleanup the comment. Signed-off-by: Wang Sheng-Hui shh...@gmail.com --- fs/btrfs/extent_io.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c index 2862454..b67814c 100644

[PATCH] btrfs/extent_io.c: return -ENOMEM instead of BUG_ON on allocation failure in set_extent_bit if __GFP_WAIT is set in the mask

2012-03-31 Thread Wang Sheng-Hui
If __GFP_WAIT is set in the mask, set_extent_bit should return -ENOMEM to its caller to decide what to do on allocation failure, instead of BUG_ON. Signed-off-by: Wang Sheng-Hui shh...@gmail.com --- fs/btrfs/extent_io.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git

Re: [PATCH 1/3][RESEND] 251: fix cp -axT problem

2012-03-31 Thread Christoph Hellwig
Thanks, applied. -- To unsubscribe from this list: send the line unsubscribe linux-btrfs in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH 2/3][RESEND] 218: support btrfs

2012-03-31 Thread Christoph Hellwig
On Mon, Feb 06, 2012 at 04:27:48PM +0800, Liu Bo wrote: Btrfs progs has a defragment tool, so we can test 218 on btrfs now. Thanks, applied. -- To unsubscribe from this list: send the line unsubscribe linux-btrfs in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [PATCH 3/3 v3] add btrfs online defragment test

2012-03-31 Thread Christoph Hellwig
Thanks, applied. -- To unsubscribe from this list: send the line unsubscribe linux-btrfs in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: btrfs-convert processing time

2012-03-31 Thread Hubert Kario
On Friday 30 of March 2012 21:23:52 Olivier Bonvalet wrote: Le 22/02/2012 17:55, Olivier Bonvalet a écrit : So, the btrfs-convert for the smaller drive is done... after near 5 days. Which stats can I give you ? It's a 340GB LVM block device, and btrfs filesystem df /backup/ say that :

[PATCH] btrfs/extent_io.c: remove the useless assignment to entry in tree_insert

2012-03-31 Thread Wang Sheng-Hui
In tree_insert, entry is used in the loop only, and is useless out of the loop. Remove the useless assignment after the loop. Signed-off-by: Wang Sheng-Hui shh...@gmail.com --- fs/btrfs/extent_io.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/fs/btrfs/extent_io.c