Mailinglist Archive: opensuse-commit (1644 mails)

< Previous Next >
commit powerpc-utils
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Mon, 06 Oct 2008 18:08:04 +0200
  • Message-id: <20081006160805.8375167816D@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package powerpc-utils
checked in at Mon Oct 6 18:08:04 CEST 2008.


--------
--- arch/ppc/powerpc-utils/powerpc-utils.changes 2008-09-30
08:55:19.000000000 +0200
+++ /mounts/work_src_done/STABLE/powerpc-utils/powerpc-utils.changes
2008-10-06 09:09:04.000000000 +0200
@@ -1,0 +2,10 @@
+Mon Oct 6 08:59:00 CEST 2008 - sassmann@xxxxxxx
+
+- update powerpc-utils-papr to 1.1.3 (bnc#430790)
+ * Corrected string length calculation in of_to_full_path()
+ * Removed call to release_lmb() during recovery of memory add.
+ In certain cases this can leead to an oops becasue we try to
+ remove non-existant lmbs.
+- remove patch powerpc-utils-papr.lsslot.patch (upstream)
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
powerpc-utils-papr-1.1.2.tar.bz2
powerpc-utils-papr.lsslot.patch

New:
----
powerpc-utils-papr-1.1.3.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ powerpc-utils.spec ++++++
--- /var/tmp/diff_new_pack.fC3502/_old 2008-10-06 18:05:42.000000000 +0200
+++ /var/tmp/diff_new_pack.fC3502/_new 2008-10-06 18:05:42.000000000 +0200
@@ -25,14 +25,14 @@
Obsoletes: ppc64-utils
Provides: ppc64-utils
Version: 1.1.1
-Release: 4
+Release: 5
License: IBM Public License
Url: http://powerpc-utils.ozlabs.org/
Group: System/Management
Summary: Utilities for PowerPC Hardware
PreReq: %insserv_prereq %fillup_prereq
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-%define papr_version 1.1.2
+%define papr_version 1.1.3
Source0: powerpc-utils-%{version}.tar.bz2
Source1: powerpc-utils-papr-%{papr_version}.tar.bz2
Patch0: powerpc-utils-nvsetenv.patch
@@ -41,7 +41,6 @@
Patch3: powerpc-utils.ofpathname.bootlist.patch
Patch4: powerpc-utils-papr.open-flag.patch
Patch5: powerpc-utils-papr.insserv-ibmvscsis.patch
-Patch6: powerpc-utils-papr.lsslot.patch
ExclusiveArch: ppc ppc64

%description
@@ -65,7 +64,6 @@
cd powerpc-utils-papr-%{papr_version}
%patch4 -p1
%patch5 -p1
-%patch6 -p1

%build
make CFLAGS="$RPM_OPT_FLAGS" %{?jobs:-j%jobs}
@@ -101,6 +99,13 @@
%config %attr (755,root,root) /etc/init.d/ibmvscsis.sh

%changelog
+* Mon Oct 06 2008 sassmann@xxxxxxx
+- update powerpc-utils-papr to 1.1.3 (bnc#430790)
+ * Corrected string length calculation in of_to_full_path()
+ * Removed call to release_lmb() during recovery of memory add.
+ In certain cases this can leead to an oops becasue we try to
+ remove non-existant lmbs.
+- remove patch powerpc-utils-papr.lsslot.patch (upstream)
* Tue Sep 30 2008 olh@xxxxxxx
- fix malloc size lsslot (bnc#430790 - LTC48583)
* Mon Sep 15 2008 olh@xxxxxxx

++++++ powerpc-utils-papr-1.1.2.tar.bz2 -> powerpc-utils-papr-1.1.3.tar.bz2
++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/powerpc-utils-papr-1.1.2/Changelog
new/powerpc-utils-papr-1.1.3/Changelog
--- old/powerpc-utils-papr-1.1.2/Changelog 2008-09-11 21:17:28.000000000
+0200
+++ new/powerpc-utils-papr-1.1.3/Changelog 2008-10-02 21:35:45.000000000
+0200
@@ -1,4 +1,19 @@
-Changelog for powerpc-utils-papr-1.1.0
+Changelog for powerpc-utils-papr-1.1.3
+======================================
+o drmgr
+ - Corrected string length calculation in of_to_full_path()
+ - Removed call to release_lmb() during recovery of memory add. In certain
+ cases this can leead to an oops becasue we try to remove non-existant
+ lmbs.
+
+Changelog for powerpc-utils-papr-1.1.2
+=======================================
+o drmgr
+ - Updated for libservicelog-1.0. There are a few API changes in the
+ latest libservicelog, and the drmgr code has dropped the dlopen()
+ of libservicelog and links directly with it.
+
+Changelog for powerpc-utils-papr-1.1.1
=======================================
o drmgr
- Add support for hotplug memory remove.
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/powerpc-utils-papr-1.1.2/cmds/drmgr/common_ofdt.c
new/powerpc-utils-papr-1.1.3/cmds/drmgr/common_ofdt.c
--- old/powerpc-utils-papr-1.1.2/cmds/drmgr/common_ofdt.c 2008-09-11
21:17:28.000000000 +0200
+++ new/powerpc-utils-papr-1.1.3/cmds/drmgr/common_ofdt.c 2008-10-02
21:35:45.000000000 +0200
@@ -177,7 +177,7 @@
return NULL;
}
} else {
- full_path_len = strlen(OFDT_BASE) + strlen(of_path) + 1;
+ full_path_len = strlen(OFDT_BASE) + strlen(of_path) + 2;
full_path = malloc(full_path_len);
if (full_path == NULL) {
err_msg("malloc failed\n");
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/powerpc-utils-papr-1.1.2/cmds/drmgr/drslot_chrp_mem.c
new/powerpc-utils-papr-1.1.3/cmds/drmgr/drslot_chrp_mem.c
--- old/powerpc-utils-papr-1.1.2/cmds/drmgr/drslot_chrp_mem.c 2008-09-11
21:17:28.000000000 +0200
+++ new/powerpc-utils-papr-1.1.3/cmds/drmgr/drslot_chrp_mem.c 2008-10-02
21:35:45.000000000 +0200
@@ -847,8 +847,8 @@
/* Roll back the operation. Is this the correct behavior? */
#if 0
set_lmb_state(lmb, OFFLINE);
-#endif
release_lmb(lmb, lmb_list);
+#endif
return 1;
}

diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/powerpc-utils-papr-1.1.2/powerpc-utils-papr.spec
new/powerpc-utils-papr-1.1.3/powerpc-utils-papr.spec
--- old/powerpc-utils-papr-1.1.2/powerpc-utils-papr.spec 2008-09-11
21:17:28.000000000 +0200
+++ new/powerpc-utils-papr-1.1.3/powerpc-utils-papr.spec 2008-10-02
21:35:45.000000000 +0200
@@ -1,5 +1,5 @@
%define name powerpc-utils-papr
-%define version 1.1.2
+%define version 1.1.3
%define release 0
Summary: Utilities for IBM powerpc PAPR platforms
Name: %{name}


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

--
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >