Hello community, here is the log from the commit of package xfsprogs for openSUSE:Factory checked in at 2013-05-16 16:25:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xfsprogs (Old) and /work/SRC/openSUSE:Factory/.xfsprogs.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xfsprogs" Changes: -------- --- /work/SRC/openSUSE:Factory/xfsprogs/xfsprogs.changes 2012-10-11 11:38:20.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.xfsprogs.new/xfsprogs.changes 2013-05-16 16:25:34.000000000 +0200 @@ -1,0 +2,47 @@ +Wed May 15 18:44:22 UTC 2013 - [email protected] + +- Added patch xfsprogs-avoid-no-return-in-nonvoid-warning.diff to silence + (bogus) compiler warnings. + +------------------------------------------------------------------- +Wed May 15 13:30:46 UTC 2013 - [email protected] + +- Updated to 3.1.11 + - Support for relative paths in xfs_quota thanks to Satoru Takeuchi. + - mkfs.xfs will always go into multidisk mode when filesystem + geometry is specified on the command line. + - Document all commands in xfs_io. + - Remove setfl command from xfs_io. + - xfs_metadump will obfuscate symlinks by path component. + - mkfs.xfs no longer accepts geometry settings smaller than the + physical sector size. + - xfs_logprint now supports multiply-logged inode fields and + handles continued inode transactions correctly. + - kill XLOG_SET + - Update release scripts to use git archive to address a + missing source file reported by Arkadiusz Mi?kiewicz + - Fix a build error with -Werror=format-security, reported + by Arkadiusz Mi?kiewicz + - mkfs.xfs no longer attempts to discard when -N option is used. + - Update 'make deb' to use tarball + - Sync up with log reservation changes in the kernel. + - Fix possible unallocated memory access in fiemap. + - Guard against string overflow in path_to_fspath. + - Fix setup_cursor array allocation. + - Fix free of unintialized pointer in xfs_acl_valid error path. + - Guard against path string overflows. + - Check strdup results properly in initallfs(). + - Fix attribute no_change_count logic. + - Remove extraneous close() in fsrallfs(). + - xfs_repair now skips the freelist scan of a corrupt agf + when in no-modify mode. + - xfs_db now skips freelist scans of corrupt agfs. + - Remove unconditional ASSERT(0) in xfs_repair. + - Reduce bb_numrecs in bno/cnt btrees when log consumes all agf space. + - Add depraction message for xfs_check. + - xfs_quota allow user or group names beginning with digits reported by + James Carter. + - Fix manpages and usage() spelling, errors and omissions. + ... + +------------------------------------------------------------------- Old: ---- xfsprogs-3.1.6.tar.gz New: ---- xfsprogs-3.1.11.tar.gz xfsprogs-avoid-no-return-in-nonvoid-warning.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xfsprogs.spec ++++++ --- /var/tmp/diff_new_pack.2VgQ2Z/_old 2013-05-16 16:25:35.000000000 +0200 +++ /var/tmp/diff_new_pack.2VgQ2Z/_new 2013-05-16 16:25:35.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package xfsprogs # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 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 @@ -27,7 +27,7 @@ %else BuildRequires: libuuid-devel %endif -Version: 3.1.6 +Version: 3.1.11 Release: 0 %if 0%{?suse_version} >= 1010 # hint for ZYPP @@ -40,6 +40,7 @@ Source0: xfsprogs-%{version}.tar.gz Patch0: xfsprogs-docdir.diff Patch1: xfsprogs-ppc64.diff +Patch2: xfsprogs-avoid-no-return-in-nonvoid-warning.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -75,6 +76,7 @@ %patch0 %endif %patch1 +%patch2 %build export OPTIMIZER="-fPIC" ++++++ xfsprogs-3.1.6.tar.gz -> xfsprogs-3.1.11.tar.gz ++++++ ++++ 53306 lines of diff (skipped) ++++++ xfsprogs-avoid-no-return-in-nonvoid-warning.diff ++++++ Index: xfsprogs-3.1.11/repair/incore_ino.c =================================================================== --- repair/incore_ino.c +++ repair/incore_ino.c @@ -166,6 +166,7 @@ __uint32_t num_inode_references(struct i return irec->ino_un.ex_data->counted_nlinks.un32[ino_offset]; default: ASSERT(0); + return 0; /* Avoid compiler warning */ } } @@ -206,6 +207,7 @@ __uint32_t get_inode_disk_nlinks(struct return irec->disk_nlinks.un32[ino_offset]; default: ASSERT(0); + return 0; /* Avoid compiler warning */ } } -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
