[Pkg-virtualbox-commits] r362 - in tags: . 1.6.2-dfsg-7/debian 1.6.2-dfsg-7/debian/patches

meskes at alioth.debian.org meskes at alioth.debian.org
Fri Oct 3 16:30:47 UTC 2008


Author: meskes
Date: 2008-10-03 16:30:47 +0000 (Fri, 03 Oct 2008)
New Revision: 362

Added:
   tags/1.6.2-dfsg-7/
   tags/1.6.2-dfsg-7/debian/patches/15-rate-limit-PATM-messages.dpatch
Modified:
   tags/1.6.2-dfsg-7/debian/changelog
   tags/1.6.2-dfsg-7/debian/patches/00list
Log:
Started preparing a 1.6.2-dfsg-7 for Lenny.



Copied: tags/1.6.2-dfsg-7 (from rev 357, tags/1.6.2-dfsg-6)

Modified: tags/1.6.2-dfsg-7/debian/changelog
===================================================================
--- tags/1.6.2-dfsg-6/debian/changelog	2008-09-22 12:32:19 UTC (rev 357)
+++ tags/1.6.2-dfsg-7/debian/changelog	2008-10-03 16:30:47 UTC (rev 362)
@@ -1,3 +1,10 @@
+virtualbox-ose (1.6.2-dfsg-7) testing-proposed-updates; urgency=low
+
+  * Stop spamming log files by using patch provided by Stefan Lippers-Hollmann
+    <s.L-H at gmx.de>, closes: #500484
+
+ -- Michael Meskes <meskes at debian.org>  Fri, 03 Oct 2008 17:28:55 +0200
+
 virtualbox-ose (1.6.2-dfsg-6) unstable; urgency=medium
 
   * Apply changesets 12299, 12303, 12305, 12307 and 12308 from upstream SVN

Modified: tags/1.6.2-dfsg-7/debian/patches/00list
===================================================================
--- tags/1.6.2-dfsg-6/debian/patches/00list	2008-09-22 12:32:19 UTC (rev 357)
+++ tags/1.6.2-dfsg-7/debian/patches/00list	2008-10-03 16:30:47 UTC (rev 362)
@@ -12,3 +12,4 @@
 12-make-module.dpatch
 13-module-mismatch.dpatch
 14-recompiler-flush-tb-cache.dpatch
+15-rate-limit-PATM-messages.dpatch

Added: tags/1.6.2-dfsg-7/debian/patches/15-rate-limit-PATM-messages.dpatch
===================================================================
--- tags/1.6.2-dfsg-7/debian/patches/15-rate-limit-PATM-messages.dpatch	                        (rev 0)
+++ tags/1.6.2-dfsg-7/debian/patches/15-rate-limit-PATM-messages.dpatch	2008-10-03 16:30:47 UTC (rev 362)
@@ -0,0 +1,36 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 15-rate-limit-PATM-messages.dpatch by Stefan Lippers-Hollmann <s.l-h at gmx.de>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: http://www.virtualbox.de/ticket/1775
+## DP: rediff the following upstream commits against virtualbox-ose 1.6.6-dfsg-1:
+## DP: - r12524
+## DP: - r12525
+## DP: - r12527
+## DP: - r12532
+## DP: - r12534
+
+ at DPATCH@
+diff -urNad virtualbox-ose-1.6.6-dfsg~/src/VBox/VMM/PATM/PATM.cpp virtualbox-ose-1.6.6-dfsg/src/VBox/VMM/PATM/PATM.cpp
+--- virtualbox-ose-1.6.6-dfsg~/src/VBox/VMM/PATM/PATM.cpp	2008-06-25 17:47:15.000000000 +0200
++++ virtualbox-ose-1.6.6-dfsg/src/VBox/VMM/PATM/PATM.cpp	2008-09-28 18:19:19.000000000 +0200
+@@ -97,6 +97,9 @@
+ };
+ #endif
+ 
++/* Don't want to break saved states, so put it here as a global variable. */
++static unsigned int cIDTHandlersDisabled = 0;
++
+ /**
+  * Initializes the PATM.
+  *
+@@ -4962,7 +4965,8 @@
+             if (iGate != (uint32_t)~0)
+             {
+                 TRPMR3SetGuestTrapHandler(pVM, iGate, TRPM_INVALID_HANDLER);
+-                LogRel(("PATM: Disabling IDT %x patch handler %VGv\n", iGate, pInstrGC));
++		if (++cIDTHandlersDisabled < 256)
++	                LogRel(("PATM: Disabling IDT %x patch handler %VGv\n", iGate, pInstrGC));
+             }
+         }
+ 


Property changes on: tags/1.6.2-dfsg-7/debian/patches/15-rate-limit-PATM-messages.dpatch
___________________________________________________________________
Name: svn:executable
   + *




More information about the Pkg-virtualbox-commits mailing list