From: Nathan Scott Date: Thu, 18 May 2006 15:53:34 +0000 (+0000) Subject: Bump xfsprogs version to 2.8.x, fix some minor build issues. X-Git-Tag: v2.8.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=25d246df2e758d6f9da81cc87bebee6fccf94ce6;p=thirdparty%2Fxfsprogs-dev.git Bump xfsprogs version to 2.8.x, fix some minor build issues. Merge of master-melb:xfs-cmds:25970a by kenmcd. --- diff --git a/VERSION b/VERSION index f3b44c7cd..d2b5331a4 100644 --- a/VERSION +++ b/VERSION @@ -2,6 +2,6 @@ # This file is used by configure to get version information # PKG_MAJOR=2 -PKG_MINOR=7 -PKG_REVISION=18 +PKG_MINOR=8 +PKG_REVISION=0 PKG_BUILD=1 diff --git a/debian/changelog b/debian/changelog index 3d6a16b66..71f2d5968 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xfsprogs (2.8.0-1) unstable; urgency=low + + * New upstream release. + + -- Nathan Scott Thu, 18 May 2006 16:27:47 +1000 + xfsprogs (2.7.16-1) unstable; urgency=low * New upstream release. diff --git a/doc/CHANGES b/doc/CHANGES index 0d03a6611..c683cf620 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,9 +1,14 @@ -[cvs] +xfsprogs-2.8.0 (18 May 2006) + - Initial pass at user space caching, ultimately provides + a starting point for a faster, parallel version of repair. + - Fix several inode/buffer reference counting issues. + - Fix compiler warnings, and builds on certain glibc versions + having issues with the device major() macro. - Added code to xfs_db and xfs_admin to allow conversion from version 1 to version 2 logs. xfsprogs-2.7.18 (16 May 2006) - - Fixed a case where xfs_repair was reporting a valid used + - Fixed a case where xfs_repair was reporting a valid used block as a duplicate during phase 4. - Fixed a case where xfs_repair could incorrectly flag extent b+tree nodes as corrupt. diff --git a/include/linux.h b/include/linux.h index e6dc58ff0..62b8e58d9 100644 --- a/include/linux.h +++ b/include/linux.h @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include diff --git a/libxfs/init.c b/libxfs/init.c index b5ae26edc..acee677d0 100644 --- a/libxfs/init.c +++ b/libxfs/init.c @@ -81,6 +81,7 @@ libxfs_device_to_fd(dev_t device) fprintf(stderr, _("%s: %s: device %lld is not open\n"), progname, __FUNCTION__, (long long)device); exit(1); + /* NOTREACHED */ } /* libxfs_device_open: @@ -141,6 +142,7 @@ libxfs_device_open(char *path, int creat, int xflags, int setblksize) fprintf(stderr, _("%s: %s: too many open devices\n"), progname, __FUNCTION__); exit(1); + /* NOTREACHED */ } void