This commit is contained in:
parent
eaf2c6694f
commit
89d17d573e
@ -1,20 +0,0 @@
|
|||||||
--- man/man8/xfs_quota.8
|
|
||||||
+++ man/man8/xfs_quota.8
|
|
||||||
@@ -326,7 +326,7 @@
|
|
||||||
a subset of the available space in the filesystem.
|
|
||||||
.PP
|
|
||||||
A managed tree must be setup initially using the
|
|
||||||
-\f2\-c\f1 option to the \f3project\f1 command.
|
|
||||||
+\f2\-s\f1 option to the \f3project\f1 command.
|
|
||||||
The specified project name or identifier is matched to one or more trees
|
|
||||||
defined in
|
|
||||||
.IR /etc/projects ,
|
|
||||||
@@ -411,7 +411,7 @@
|
|
||||||
# mount \-o prjquota /dev/xvm/var /var
|
|
||||||
# echo 42:/var/log >> /etc/projects
|
|
||||||
# echo logfiles:42 >> /etc/projid
|
|
||||||
-# xfs_quota \-x \-c 'projects \-c logfiles' /home
|
|
||||||
+# xfs_quota \-x \-c 'project \-s logfiles' /home
|
|
||||||
# xfs_quota \-x \-c 'limit \-p bhard=1g logfiles' /home
|
|
||||||
.in -5
|
|
||||||
.fi
|
|
@ -1,11 +0,0 @@
|
|||||||
--- libxfs/xfs_ialloc_btree.c
|
|
||||||
+++ libxfs/xfs_ialloc_btree.c
|
|
||||||
@@ -234,6 +234,8 @@
|
|
||||||
*/
|
|
||||||
*bnop = nbno;
|
|
||||||
if (nbno != NULLAGBLOCK) {
|
|
||||||
+ nrec.ir_free = 0; /* make gcc happy... */
|
|
||||||
+ nrec.ir_freecount = 0;
|
|
||||||
*recp = nrec; /* INT_: struct copy */
|
|
||||||
*curp = ncur;
|
|
||||||
}
|
|
@ -1,6 +1,6 @@
|
|||||||
--- include/platform_defs.h.in
|
--- include/platform_defs.h.in
|
||||||
+++ include/platform_defs.h.in
|
+++ include/platform_defs.h.in
|
||||||
@@ -37,8 +37,13 @@
|
@@ -41,9 +41,14 @@ typedef unsigned short __u16;
|
||||||
typedef signed short __s16;
|
typedef signed short __s16;
|
||||||
typedef unsigned int __u32;
|
typedef unsigned int __u32;
|
||||||
typedef signed int __s32;
|
typedef signed int __s32;
|
||||||
@ -10,6 +10,7 @@
|
|||||||
+#else
|
+#else
|
||||||
typedef unsigned long long int __u64;
|
typedef unsigned long long int __u64;
|
||||||
typedef signed long long int __s64;
|
typedef signed long long int __s64;
|
||||||
|
#endif
|
||||||
+#endif
|
+#endif
|
||||||
|
|
||||||
typedef __u16 __be16;
|
typedef __u16 __be16;
|
@ -1,3 +1,71 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Apr 4 14:44:40 CEST 2007 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- updated to version 2.8.20
|
||||||
|
* Fix xfs_repair not detecting invalid btree root in inodes.
|
||||||
|
* Fix xfs_repair restoring corrupted superblock after repairing
|
||||||
|
it.
|
||||||
|
* Fix xfs_repair crashing on invalid quota inode values.
|
||||||
|
* Fix xfs_quota gracetime reporting.
|
||||||
|
Thanks to Utako Kusaka <utako@tnes.nec.co.jp> for this.
|
||||||
|
* Fix libxfs IO_DEBUG output.
|
||||||
|
* Instead of using AC_CHECK_TYPES which isn't supported for
|
||||||
|
older versions of autoconf, add our own type check in the
|
||||||
|
m4/package_types.m4 file for __u32. Suggested by Nathan Scott
|
||||||
|
and discovered by wookey@aleph1.co.uk.
|
||||||
|
* Fix pthread stack size setting in xfs_repair.
|
||||||
|
* Fix xfs_bmap -n option displaying a truncated extent.
|
||||||
|
* Fix xfs_io mwrite segfault. Thanks to Utako Kusaka for these
|
||||||
|
two fixes.
|
||||||
|
* Fix errors in xfs_quota(8) man page.
|
||||||
|
* <xfs/list.h> is an installed file, we cannot simply rename it,
|
||||||
|
as other applications using it (accidentally or not) may break.
|
||||||
|
The xfs_list.h name was inconsistent with everything else too.
|
||||||
|
* Fix "pointer targets in assignment differ in signedness"
|
||||||
|
warnings
|
||||||
|
* Update Debian packaging.
|
||||||
|
* Fix up two issues with xfs_db and bmap. If the data/attr fork
|
||||||
|
is local, it either infinite loops or crashes. If both are
|
||||||
|
displayed, the attrs are wrong.
|
||||||
|
* Fix up xfs_io mmap read that read from the wrong offset.
|
||||||
|
* Updated xfs_io man page.
|
||||||
|
Thanks to Utako Kusaka <utako@tnes.nec.co.jp> for the above
|
||||||
|
three fixes.
|
||||||
|
* Fix up libxfs SEGV when attempting to mount a non-XFS
|
||||||
|
filesystem. Thanks to Utako Kusaka <utako@tnes.nec.co.jp> for
|
||||||
|
this.
|
||||||
|
* Fix up xfs_repair aborting if it finds an inode with an invalid
|
||||||
|
inode type.
|
||||||
|
* Fix up default realtime extent size for large block sizes.
|
||||||
|
* Rename include/list.h to xfs_list.h so that other applications
|
||||||
|
do not accidentally use it.
|
||||||
|
* Fix up an endian problem for nlink setting in phase 7 for
|
||||||
|
xfs_repair.
|
||||||
|
* Fix up nlink checks and repairs in phase 7 for xfs_repair.
|
||||||
|
* Remove a bogus LEAFN warning for a single leaf node v2 dir.
|
||||||
|
* Fix up the ring command in xfs_db,
|
||||||
|
thanks to Utako Kusaka
|
||||||
|
* Set the blocksize on the device to the given sector
|
||||||
|
size which is _not_ necessarily 512 bytes;
|
||||||
|
idea suggested by Shailendra Tripathi.
|
||||||
|
* Fix up xfs_copy and its variable argument handling
|
||||||
|
around vfprintf; xfs_copy was seg faulting on x86_64.
|
||||||
|
* Fix v2 directory checking with holes and unreadable blocks.
|
||||||
|
* Fix a memory leak in dir2 checking.
|
||||||
|
* Update libdisk/md support to work out the stripe width
|
||||||
|
based on (# raid-disks - # parity disks) which
|
||||||
|
doesn't include any spare disks (which we mistakenly did before).
|
||||||
|
Thanks to Shailendra Tripathi's suggestions.
|
||||||
|
* Get the kernel int types of __u32 and friends from <asm/types.h>
|
||||||
|
if we can, otherwise define them ourselves.
|
||||||
|
* Multi-thread modifications to xfs_repair.
|
||||||
|
* Updated Polish translation, thanks to Jakub Bogusz.
|
||||||
|
* Change default mkfs realtime extent size setting to
|
||||||
|
perform better for buffered writes.
|
||||||
|
- added Supplements: filesystem(xfs), so that xfsprogs is installed
|
||||||
|
when an xfs filesystem is used (fate #301966)
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 25 11:33:10 CEST 2006 - mjancar@suse.cz
|
Wed Oct 25 11:33:10 CEST 2006 - mjancar@suse.cz
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package xfsprogs (Version 2.8.11_1)
|
# spec file for package xfsprogs (Version 2.8.20)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
# package are under the same license as the package itself.
|
# package are under the same license as the package itself.
|
||||||
#
|
#
|
||||||
@ -12,22 +12,21 @@
|
|||||||
|
|
||||||
Name: xfsprogs
|
Name: xfsprogs
|
||||||
BuildRequires: e2fsprogs-devel
|
BuildRequires: e2fsprogs-devel
|
||||||
Version: 2.8.11_1
|
Version: 2.8.20
|
||||||
Release: 4
|
Release: 1
|
||||||
%define ver 2.8.11-1
|
|
||||||
Conflicts: xfsdump < 2.0.0
|
Conflicts: xfsdump < 2.0.0
|
||||||
|
# hint for ZYPP
|
||||||
|
Supplements: filesystem(xfs)
|
||||||
Autoreqprov: on
|
Autoreqprov: on
|
||||||
Group: System/Filesystems
|
Group: System/Filesystems
|
||||||
License: GNU General Public License (GPL) - all versions
|
License: GNU General Public License (GPL)
|
||||||
URL: http://oss.sgi.com/projects/xfs/
|
URL: http://oss.sgi.com/projects/xfs/
|
||||||
Summary: Utilities for managing the XFS file system
|
Summary: Utilities for managing the XFS file system
|
||||||
Source0: %{name}_%{ver}.tar.bz2
|
Source0: xfsprogs_%{version}-1.tar.bz2
|
||||||
Source1: fsck.xfs
|
Source1: fsck.xfs
|
||||||
Patch0: %{name}-%{ver}-docdir.diff
|
Patch0: xfsprogs-docdir.diff
|
||||||
Patch1: %{name}-%{ver}-uninitialized.diff
|
Patch1: xfsprogs-no_la_in_root.diff
|
||||||
Patch2: %{name}-%{ver}-no_la_in_root.diff
|
Patch2: xfsprogs-ppc64.diff
|
||||||
Patch6: %{name}-%{ver}-ppc64.diff
|
|
||||||
Patch7: %{name}-%{ver}-man.diff
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -55,7 +54,7 @@ Requires: xfsprogs >= 2.0.0
|
|||||||
Conflicts: xfsprogs < 2.0.0
|
Conflicts: xfsprogs < 2.0.0
|
||||||
Autoreqprov: on
|
Autoreqprov: on
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
License: GNU General Public License (GPL) - all versions
|
License: GNU General Public License (GPL)
|
||||||
URL: http://oss.sgi.com/projects/xfs/
|
URL: http://oss.sgi.com/projects/xfs/
|
||||||
Summary: XFS Filesystem-specific Static Libraries and Headers
|
Summary: XFS Filesystem-specific Static Libraries and Headers
|
||||||
|
|
||||||
@ -74,12 +73,10 @@ Authors:
|
|||||||
SGI
|
SGI
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{name}-2.8.11
|
%setup -q
|
||||||
%patch0
|
%patch0
|
||||||
%patch1
|
%patch1
|
||||||
%patch2
|
%patch2
|
||||||
%patch6
|
|
||||||
%patch7
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{suse_update_config -f}
|
%{suse_update_config -f}
|
||||||
@ -151,7 +148,71 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%files devel -f filesdevel.rpm
|
%files devel -f filesdevel.rpm
|
||||||
%defattr(-,root,root,755)
|
%defattr(-,root,root,755)
|
||||||
|
|
||||||
%changelog -n xfsprogs
|
%changelog
|
||||||
|
* Wed Apr 04 2007 - mmarek@suse.cz
|
||||||
|
- updated to version 2.8.20
|
||||||
|
* Fix xfs_repair not detecting invalid btree root in inodes.
|
||||||
|
* Fix xfs_repair restoring corrupted superblock after repairing
|
||||||
|
it.
|
||||||
|
* Fix xfs_repair crashing on invalid quota inode values.
|
||||||
|
* Fix xfs_quota gracetime reporting.
|
||||||
|
Thanks to Utako Kusaka <utako@tnes.nec.co.jp> for this.
|
||||||
|
* Fix libxfs IO_DEBUG output.
|
||||||
|
* Instead of using AC_CHECK_TYPES which isn't supported for
|
||||||
|
older versions of autoconf, add our own type check in the
|
||||||
|
m4/package_types.m4 file for __u32. Suggested by Nathan Scott
|
||||||
|
and discovered by wookey@aleph1.co.uk.
|
||||||
|
* Fix pthread stack size setting in xfs_repair.
|
||||||
|
* Fix xfs_bmap -n option displaying a truncated extent.
|
||||||
|
* Fix xfs_io mwrite segfault. Thanks to Utako Kusaka for these
|
||||||
|
two fixes.
|
||||||
|
* Fix errors in xfs_quota(8) man page.
|
||||||
|
* <xfs/list.h> is an installed file, we cannot simply rename it,
|
||||||
|
as other applications using it (accidentally or not) may break.
|
||||||
|
The xfs_list.h name was inconsistent with everything else too.
|
||||||
|
* Fix "pointer targets in assignment differ in signedness"
|
||||||
|
warnings
|
||||||
|
* Update Debian packaging.
|
||||||
|
* Fix up two issues with xfs_db and bmap. If the data/attr fork
|
||||||
|
is local, it either infinite loops or crashes. If both are
|
||||||
|
displayed, the attrs are wrong.
|
||||||
|
* Fix up xfs_io mmap read that read from the wrong offset.
|
||||||
|
* Updated xfs_io man page.
|
||||||
|
Thanks to Utako Kusaka <utako@tnes.nec.co.jp> for the above
|
||||||
|
three fixes.
|
||||||
|
* Fix up libxfs SEGV when attempting to mount a non-XFS
|
||||||
|
filesystem. Thanks to Utako Kusaka <utako@tnes.nec.co.jp> for
|
||||||
|
this.
|
||||||
|
* Fix up xfs_repair aborting if it finds an inode with an invalid
|
||||||
|
inode type.
|
||||||
|
* Fix up default realtime extent size for large block sizes.
|
||||||
|
* Rename include/list.h to xfs_list.h so that other applications
|
||||||
|
do not accidentally use it.
|
||||||
|
* Fix up an endian problem for nlink setting in phase 7 for
|
||||||
|
xfs_repair.
|
||||||
|
* Fix up nlink checks and repairs in phase 7 for xfs_repair.
|
||||||
|
* Remove a bogus LEAFN warning for a single leaf node v2 dir.
|
||||||
|
* Fix up the ring command in xfs_db,
|
||||||
|
thanks to Utako Kusaka
|
||||||
|
* Set the blocksize on the device to the given sector
|
||||||
|
size which is _not_ necessarily 512 bytes;
|
||||||
|
idea suggested by Shailendra Tripathi.
|
||||||
|
* Fix up xfs_copy and its variable argument handling
|
||||||
|
around vfprintf; xfs_copy was seg faulting on x86_64.
|
||||||
|
* Fix v2 directory checking with holes and unreadable blocks.
|
||||||
|
* Fix a memory leak in dir2 checking.
|
||||||
|
* Update libdisk/md support to work out the stripe width
|
||||||
|
based on (# raid-disks - # parity disks) which
|
||||||
|
doesn't include any spare disks (which we mistakenly did before).
|
||||||
|
Thanks to Shailendra Tripathi's suggestions.
|
||||||
|
* Get the kernel int types of __u32 and friends from <asm/types.h>
|
||||||
|
if we can, otherwise define them ourselves.
|
||||||
|
* Multi-thread modifications to xfs_repair.
|
||||||
|
* Updated Polish translation, thanks to Jakub Bogusz.
|
||||||
|
* Change default mkfs realtime extent size setting to
|
||||||
|
perform better for buffered writes.
|
||||||
|
- added Supplements: filesystem(xfs), so that xfsprogs is installed
|
||||||
|
when an xfs filesystem is used (fate #301966)
|
||||||
* Wed Oct 25 2006 - mjancar@suse.cz
|
* Wed Oct 25 2006 - mjancar@suse.cz
|
||||||
- fix xfq_quota man page (#214590)
|
- fix xfq_quota man page (#214590)
|
||||||
* Fri Oct 20 2006 - mjancar@suse.cz
|
* Fri Oct 20 2006 - mjancar@suse.cz
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1a2f27def316bd7f6f8dbf74c1363484354d749cc13b6105cdeda8d74d9e22c4
|
|
||||||
size 732757
|
|
3
xfsprogs_2.8.20-1.tar.bz2
Normal file
3
xfsprogs_2.8.20-1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:533c6332b5680cb8b8332f81ab31cfa37ff08c60830258dec94b569934fde480
|
||||||
|
size 765634
|
Loading…
Reference in New Issue
Block a user