Mailinglist Archive: yast-commit (525 mails)

< Previous Next >
[yast-commit] r61189 - in /branches/SuSE-Code-11-SP1-Branch/kdump: VERSION package/yast2-kdump.changes src/Kdump.ycp
  • From: juhliarik@xxxxxxxxxxxxxxxx
  • Date: Tue, 09 Mar 2010 10:00:34 -0000
  • Message-id: <E1NowEs-0001p6-4q@xxxxxxxxxxxxxxxx>
Author: juhliarik
Date: Tue Mar 9 11:00:33 2010
New Revision: 61189

URL: http://svn.opensuse.org/viewcvs/yast?rev=61189&view=rev
Log:
added fix for allocating memory bnc#578590

Modified:
branches/SuSE-Code-11-SP1-Branch/kdump/VERSION
branches/SuSE-Code-11-SP1-Branch/kdump/package/yast2-kdump.changes
branches/SuSE-Code-11-SP1-Branch/kdump/src/Kdump.ycp

Modified: branches/SuSE-Code-11-SP1-Branch/kdump/VERSION
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP1-Branch/kdump/VERSION?rev=61189&r1=61188&r2=61189&view=diff
==============================================================================
--- branches/SuSE-Code-11-SP1-Branch/kdump/VERSION (original)
+++ branches/SuSE-Code-11-SP1-Branch/kdump/VERSION Tue Mar 9 11:00:33 2010
@@ -1 +1 @@
-2.17.19
+2.17.20

Modified: branches/SuSE-Code-11-SP1-Branch/kdump/package/yast2-kdump.changes
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP1-Branch/kdump/package/yast2-kdump.changes?rev=61189&r1=61188&r2=61189&view=diff
==============================================================================
--- branches/SuSE-Code-11-SP1-Branch/kdump/package/yast2-kdump.changes
(original)
+++ branches/SuSE-Code-11-SP1-Branch/kdump/package/yast2-kdump.changes Tue Mar
9 11:00:33 2010
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Tue Mar 9 10:52:22 CET 2010 - juhliarik@xxxxxxx
+
+- added fix for allocating memory (bnc#578590)
+- 2.17.20
+
+-------------------------------------------------------------------
Thu Mar 4 15:20:25 CET 2010 - juhliarik@xxxxxxx

- added missing help text for "Number of old dumps" (bnc#584586)

Modified: branches/SuSE-Code-11-SP1-Branch/kdump/src/Kdump.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP1-Branch/kdump/src/Kdump.ycp?rev=61189&r1=61188&r2=61189&view=diff
==============================================================================
--- branches/SuSE-Code-11-SP1-Branch/kdump/src/Kdump.ycp (original)
+++ branches/SuSE-Code-11-SP1-Branch/kdump/src/Kdump.ycp Tue Mar 9 11:00:33
2010
@@ -753,12 +753,13 @@
alocated_memory = tostring(al_mem);
}
// bnc #446480 - Fine-tune kdump memory proposal
+ // bnc #578590 -"out of memory" error occurs when doing kdump on machine
superdome
if ((Arch::ia64()) && (total_memory >= 1024))
{
integer total_memory_gigabyte = total_memory/1024;
- if ((total_memory_gigabyte >= 1) && (total_memory_gigabyte <12))
+ if ((total_memory_gigabyte >= 1) && (total_memory_gigabyte <8))
alocated_memory = "256";
- else if ((total_memory_gigabyte >= 12) && (total_memory_gigabyte <128))
+ else if ((total_memory_gigabyte >= 8) && (total_memory_gigabyte <128))
alocated_memory = "512";
else if ((total_memory_gigabyte >= 128) && (total_memory_gigabyte
<256))
alocated_memory = "768";

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

< Previous Next >
This Thread
  • No further messages