From d463c626403280538c5f52d19f05ae61f2a835d58228d96afaf2fff8fe819381 Mon Sep 17 00:00:00 2001 From: Jan Kara Date: Mon, 20 Jun 2011 13:08:27 +0000 Subject: [PATCH 1/2] Accepting request 74185 from home:michal-m:branches:filesystems - updated to 3.1.5 - Polish translation update, thanks to Jakub Bogusz - xfs_repair now warns if running in low memory mode - Phase 2 of xfs_repair is now multithreaded - xfs_quota no longer attempts to get quota information if not enabled - Inode flags are now properly validated by xfs_repair - Metadump now obfuscates all file names reliably - xfs_io now supports the "fiemap" command, a more generic form of the "bmap" command - xfs_io now supports the "fpunch" command, as well as a "-p" flag to the "fallocate command. Both implement hole punching. Thanks to Josef Bacik - A number of other bug fixes thanks to Ajeet Yadav OBS-URL: https://build.opensuse.org/request/show/74185 OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=11 --- xfsprogs-3.1.4.tar.bz2 | 3 --- xfsprogs-3.1.5.tar.gz | 3 +++ xfsprogs.changes | 18 ++++++++++++++++++ xfsprogs.spec | 4 ++-- 4 files changed, 23 insertions(+), 5 deletions(-) delete mode 100644 xfsprogs-3.1.4.tar.bz2 create mode 100644 xfsprogs-3.1.5.tar.gz diff --git a/xfsprogs-3.1.4.tar.bz2 b/xfsprogs-3.1.4.tar.bz2 deleted file mode 100644 index 50b2976..0000000 --- a/xfsprogs-3.1.4.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b04a9d63db2ccf2f977ffe7bdd9fba05ee6279263a1f503f4a2321abb60fe764 -size 1079878 diff --git a/xfsprogs-3.1.5.tar.gz b/xfsprogs-3.1.5.tar.gz new file mode 100644 index 0000000..f4d68fe --- /dev/null +++ b/xfsprogs-3.1.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13347de43203c4575bca7a72efb344c7caf8a86fa216bbd69bf1980f2fb2f37f +size 1403198 diff --git a/xfsprogs.changes b/xfsprogs.changes index 8c2cff3..8e6868a 100644 --- a/xfsprogs.changes +++ b/xfsprogs.changes @@ -1,3 +1,21 @@ +------------------------------------------------------------------- +Mon Jun 20 11:21:03 UTC 2011 - mmarek@novell.com + +- updated to 3.1.5 + - Polish translation update, thanks to Jakub Bogusz + - xfs_repair now warns if running in low memory mode + - Phase 2 of xfs_repair is now multithreaded + - xfs_quota no longer attempts to get quota information if not + enabled + - Inode flags are now properly validated by xfs_repair + - Metadump now obfuscates all file names reliably + - xfs_io now supports the "fiemap" command, a more generic form + of the "bmap" command + - xfs_io now supports the "fpunch" command, as well as a "-p" + flag to the "fallocate command. Both implement hole punching. + Thanks to Josef Bacik + - A number of other bug fixes thanks to Ajeet Yadav + ------------------------------------------------------------------- Wed Dec 15 01:36:53 CET 2010 - ro@suse.de diff --git a/xfsprogs.spec b/xfsprogs.spec index fcb433d..70e09df 100644 --- a/xfsprogs.spec +++ b/xfsprogs.spec @@ -20,7 +20,7 @@ Name: xfsprogs BuildRequires: e2fsprogs-devel -Version: 3.1.4 +Version: 3.1.5 Release: 1 %if 0%{?suse_version} >= 1010 # hint for ZYPP @@ -31,7 +31,7 @@ Group: System/Filesystems License: GPLv2+ Url: http://oss.sgi.com/projects/xfs/ Summary: Utilities for managing the XFS file system -Source0: xfsprogs-%{version}.tar.bz2 +Source0: xfsprogs-%{version}.tar.gz Patch0: xfsprogs-docdir.diff Patch1: xfsprogs-ppc64.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build From 5076c9d6a0b6fadd3bf9aa0073268650bdd36edf7a74c0b9dd5213cd1b1a7b87 Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Sat, 15 Oct 2011 05:09:26 +0000 Subject: [PATCH 2/2] Accepting request 87879 from home:dsterba:branches:filesystems - updated to 3.1.6 - Re-synch of the header and libxfs files with the kernel code as of Linux 2.6.37, including reviving xfs_repair radix tree code. - Fix a xfs_repair phase 4 hang, thanks to Ajeet Yadav. - Subcommand names within various programs are no longer translated/localized, thanks to Arkadiusz Mi?kiewicz. - Build system fixes, thanks to Ted Ts'o. - Updates to teh xfs_info(8)/xfs_growfs(8) man page, thanks to Roman Ovchinnikov. - xfs_quota "df" no longer reports values twice what they should have been for project quotas. - mkfs.xfs now requires that sub-options are non-empty strings; thanks to Chris Pearson for reporting. - Better handling of short reads in libxfs. - xfs_quota now prints "N/A" rather than a large number for the quota file inode number for disabled quota types. - Bogus (unrelated) mount point entries no longer cause xfs_growfs, xfs_quota, and xfs_io to quit early. - xfs_repair no longer fails when the sector size of an underlying device is larger than the sector size in a hosted filesystem image. - Various other internal improvements, including refactoring and eliminating more build warnings. OBS-URL: https://build.opensuse.org/request/show/87879 OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=12 --- xfsprogs-3.1.5.tar.gz | 3 --- xfsprogs-3.1.6.tar.gz | 3 +++ xfsprogs.changes | 28 ++++++++++++++++++++++++++++ xfsprogs.spec | 6 +++--- 4 files changed, 34 insertions(+), 6 deletions(-) delete mode 100644 xfsprogs-3.1.5.tar.gz create mode 100644 xfsprogs-3.1.6.tar.gz diff --git a/xfsprogs-3.1.5.tar.gz b/xfsprogs-3.1.5.tar.gz deleted file mode 100644 index f4d68fe..0000000 --- a/xfsprogs-3.1.5.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:13347de43203c4575bca7a72efb344c7caf8a86fa216bbd69bf1980f2fb2f37f -size 1403198 diff --git a/xfsprogs-3.1.6.tar.gz b/xfsprogs-3.1.6.tar.gz new file mode 100644 index 0000000..a2db10c --- /dev/null +++ b/xfsprogs-3.1.6.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66874783bc3c48fc131a46c2ee1efad2f0a841165c2d99c75f5b5ec41112baef +size 1413251 diff --git a/xfsprogs.changes b/xfsprogs.changes index 8e6868a..d546e79 100644 --- a/xfsprogs.changes +++ b/xfsprogs.changes @@ -1,3 +1,31 @@ +------------------------------------------------------------------- +Fri Oct 14 17:15:56 CEST 2011 - dsterba@suse.cz + +- updated to 3.1.6 + - Re-synch of the header and libxfs files with the kernel + code as of Linux 2.6.37, including reviving xfs_repair + radix tree code. + - Fix a xfs_repair phase 4 hang, thanks to Ajeet Yadav. + - Subcommand names within various programs are no longer + translated/localized, thanks to Arkadiusz Mi?kiewicz. + - Build system fixes, thanks to Ted Ts'o. + - Updates to teh xfs_info(8)/xfs_growfs(8) man page, thanks + to Roman Ovchinnikov. + - xfs_quota "df" no longer reports values twice what they + should have been for project quotas. + - mkfs.xfs now requires that sub-options are non-empty + strings; thanks to Chris Pearson for reporting. + - Better handling of short reads in libxfs. + - xfs_quota now prints "N/A" rather than a large number for + the quota file inode number for disabled quota types. + - Bogus (unrelated) mount point entries no longer cause + xfs_growfs, xfs_quota, and xfs_io to quit early. + - xfs_repair no longer fails when the sector size of an + underlying device is larger than the sector size in a + hosted filesystem image. + - Various other internal improvements, including refactoring + and eliminating more build warnings. + ------------------------------------------------------------------- Mon Jun 20 11:21:03 UTC 2011 - mmarek@novell.com diff --git a/xfsprogs.spec b/xfsprogs.spec index 70e09df..4a9e722 100644 --- a/xfsprogs.spec +++ b/xfsprogs.spec @@ -1,7 +1,7 @@ # -# spec file for package xfsprogs (Version 3.1.4) +# spec file for package xfsprogs # -# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,7 +20,7 @@ Name: xfsprogs BuildRequires: e2fsprogs-devel -Version: 3.1.5 +Version: 3.1.6 Release: 1 %if 0%{?suse_version} >= 1010 # hint for ZYPP