From: Nathan Scott Date: Mon, 5 Apr 2004 02:33:16 +0000 (+0000) Subject: Add in missing sb_feature2 field into endian conversion table. Fix from Chris Pascoe... X-Git-Tag: v2.7.0~115 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2999b9c19c6b25471db0a206e4c487e99a73f0dc;p=thirdparty%2Fxfsprogs-dev.git Add in missing sb_feature2 field into endian conversion table. Fix from Chris Pascoe, and means v2 log filesystems are not created broken now by mkfs. --- diff --git a/VERSION b/VERSION index 495b062fc..4fedc4dde 100644 --- a/VERSION +++ b/VERSION @@ -3,5 +3,5 @@ # PKG_MAJOR=2 PKG_MINOR=6 -PKG_REVISION=9 +PKG_REVISION=10 PKG_BUILD=1 diff --git a/debian/changelog b/debian/changelog index 97b2c5caa..049be343b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,8 @@ -xfsprogs (2.6.9-1) unstable; urgency=low +xfsprogs (2.6.10-1) unstable; urgency=low * New upstream release. - -- Nathan Scott Sat, 27 Mar 2004 10:50:11 +1100 + -- Nathan Scott Mon, 05 Apr 2004 12:08:19 +1000 xfsprogs (2.6.5-1) unstable; urgency=low diff --git a/doc/CHANGES b/doc/CHANGES index 4648c6982..b8aa080c7 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,3 +1,14 @@ +xfsprogs-2.6.10 (05 April 2003) + - Fix botch in recent addition of new superblock field + (features2) which could result in filesystems with v2 + logs being created with invalid superblock fields. + Thanks to Chris Pascoe for this fix. + - Fix error when forcing a too-large v2 log stripe size + back to 32K. Thanks to Chris Pascoe for this fix too. + - Fix xfs_copy -d option so that it really does create a + duplicate filesystem (the log is duplicated too now in + that case, whereas previously a fresh log was created). + xfsprogs-2.6.9 (26 March 2003) - Update HFILES in xfsprogs/io/Makefile to package io/io.h diff --git a/libxfs/xfs_mount.c b/libxfs/xfs_mount.c index 4f471ff9a..32035c7e0 100644 --- a/libxfs/xfs_mount.c +++ b/libxfs/xfs_mount.c @@ -152,6 +152,7 @@ static struct { { offsetof(xfs_sb_t, sb_logsectlog), 0 }, { offsetof(xfs_sb_t, sb_logsectsize),0 }, { offsetof(xfs_sb_t, sb_logsunit), 0 }, + { offsetof(xfs_sb_t, sb_features2), 0 }, { sizeof(xfs_sb_t), 0 } };