Displaying 3 results from an estimated 3 matches for "clear_super".
2011 Apr 20
4
[PATCH 1/5] Btrfs: fix bh leak on __btrfs_open_devices path
''bh'' is forgot to release if no error is detected
Signed-off-by: Xiao Guangrong <xiaoguangrong@cn.fujitsu.com>
---
fs/btrfs/volumes.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index 8b9fb8c..69fc902 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -631,6 +631,7 @@ static int
2012 Nov 14
0
fs/btrfs/volumes.c:1505:1: warning: label 'error_close' defined but not used
...2b82032c Yan Zheng 2008-11-17 1489 * at this point, the device is zero sized. We want to
2b82032c Yan Zheng 2008-11-17 1490 * remove it from the devices list and zero out the old super
2b82032c Yan Zheng 2008-11-17 1491 */
1f78160c Xiao Guangrong 2011-04-20 1492 if (clear_super) {
dfe25020 Chris Mason 2008-05-13 1493 /* make sure this device isn''t detected as part of
dfe25020 Chris Mason 2008-05-13 1494 * the FS anymore
dfe25020 Chris Mason 2008-05-13 1495 */
dfe25020 Chris Mason 2008-05-13 1496 memset(&disk_super->magic, 0, s...
2011 Aug 23
40
[PATCH 00/21] [RFC] Btrfs: restriper
Hello,
This patch series adds an initial implementation of restriper (it''s a
clever name for relocation framework that allows to do selective profile
changing and selective balancing with some goodies like pausing/resuming
and reporting progress to the user.
Profile changing is global (per-FS) so far, per-subvolume profiles
require some discussion and can be implemented in future.