- fixing resize -m bug (#519131)
This commit is contained in:
parent
7659ab26e1
commit
b333384188
51
e2fsprogs-resize-minimum-fix.patch
Normal file
51
e2fsprogs-resize-minimum-fix.patch
Normal file
@ -0,0 +1,51 @@
|
||||
---
|
||||
resize/resize2fs.c | 20 +++++++++++++++++---
|
||||
1 files changed, 17 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/resize/resize2fs.c b/resize/resize2fs.c
|
||||
index c0b00b6..648e1f9 100644
|
||||
--- a/resize/resize2fs.c
|
||||
+++ b/resize/resize2fs.c
|
||||
@@ -1900,6 +1900,8 @@ blk_t calculate_minimum_resize_size(ext2_filsys fs)
|
||||
blk_t inode_count, blks_needed, groups, data_blocks;
|
||||
blk_t grp, data_needed, last_start;
|
||||
int overhead = 0, num_of_superblocks = 0;
|
||||
+ int extra_groups = 0;
|
||||
+ int flexbg_size = 1 << fs->super->s_log_groups_per_flex;
|
||||
|
||||
/*
|
||||
* first figure out how many group descriptors we need to
|
||||
@@ -1934,11 +1936,9 @@ blk_t calculate_minimum_resize_size(ext2_filsys fs)
|
||||
* of inode tables of slack space so the resize
|
||||
* operation can be guaranteed to finish.
|
||||
*/
|
||||
- int flexbg_size = 1 << fs->super->s_log_groups_per_flex;
|
||||
- int extra_groups;
|
||||
-
|
||||
extra_groups = flexbg_size - (groups & (flexbg_size - 1));
|
||||
data_needed += META_OVERHEAD(fs) * extra_groups;
|
||||
+ extra_groups = groups % flexbg_size;
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2002,6 +2002,20 @@ blk_t calculate_minimum_resize_size(ext2_filsys fs)
|
||||
}
|
||||
|
||||
groups += extra_grps;
|
||||
+ extra_groups += extra_grps;
|
||||
+ if (fs->super->s_feature_incompat
|
||||
+ & EXT4_FEATURE_INCOMPAT_FLEX_BG
|
||||
+ && extra_groups > flexbg_size) {
|
||||
+ /*
|
||||
+ * For ext4 we need to allow for up to a flex_bg worth
|
||||
+ * of inode tables of slack space so the resize
|
||||
+ * operation can be guaranteed to finish.
|
||||
+ */
|
||||
+ extra_groups = flexbg_size -
|
||||
+ (groups & (flexbg_size - 1));
|
||||
+ data_needed += META_OVERHEAD(fs) * extra_groups;
|
||||
+ extra_groups = groups % flexbg_size;
|
||||
+ }
|
||||
}
|
||||
|
||||
/* now for the fun voodoo */
|
@ -4,7 +4,7 @@
|
||||
Summary: Utilities for managing ext2, ext3, and ext4 filesystems
|
||||
Name: e2fsprogs
|
||||
Version: 1.41.9
|
||||
Release: 1%{?dist}
|
||||
Release: 2%{?dist}
|
||||
|
||||
# License tags based on COPYING file distinctions for various components
|
||||
License: GPLv2
|
||||
@ -14,6 +14,7 @@ Source1: ext2_types-wrapper.h
|
||||
|
||||
Patch2: e2fsprogs-1.40.4-sb_feature_check_ignore.patch
|
||||
Patch3: e2fsprogs-1.41.9-defrag.patch
|
||||
Patch4: e2fsprogs-resize-minimum-fix.patch
|
||||
|
||||
Url: http://e2fsprogs.sourceforge.net/
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
@ -141,6 +142,7 @@ It was originally inspired by the Multics SubSystem library.
|
||||
%patch2 -p1 -b .featurecheck
|
||||
# defrag command for testing, from non-release branch
|
||||
%patch3 -p1 -b .defrag
|
||||
%patch4 -p1 -b .resize
|
||||
|
||||
%build
|
||||
%configure --enable-elf-shlibs --enable-nls --disable-uuidd --disable-fsck \
|
||||
@ -301,6 +303,9 @@ exit 0
|
||||
%{_libdir}/pkgconfig/ss.pc
|
||||
|
||||
%changelog
|
||||
* Thu Sep 10 2009 Josef Bacik <josef@toxicpanda.com> 1.41.9-2
|
||||
- Fix resize -m bug with flexbg (#519131)
|
||||
|
||||
* Sun Aug 23 2009 Eric Sandeen <sandeen@redhat.com> 1.41.9-1
|
||||
- New upstream release
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user