WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [xen-unstable] [XEND] Fix bad patch merge for XendMonito

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] [XEND] Fix bad patch merge for XendMonitor
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Fri, 26 Jan 2007 05:35:15 -0800
Delivery-date: Fri, 26 Jan 2007 05:36:45 -0800
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Alastair Tse <atse@xxxxxxxxxxxxx>
# Date 1169744418 0
# Node ID 9e4f61bb200e0309aa306451c1a43a9fd125a4c8
# Parent  e19f9d6a2ff594c948b66c7dc43dd70fecab1d3f
[XEND] Fix bad patch merge for XendMonitor

Signed-off-by: Alastair Tse <atse@xxxxxxxxxxxxx>
---
 tools/python/xen/xend/XendMonitor.py |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff -r e19f9d6a2ff5 -r 9e4f61bb200e tools/python/xen/xend/XendMonitor.py
--- a/tools/python/xen/xend/XendMonitor.py      Thu Jan 25 16:58:21 2007 +0000
+++ b/tools/python/xen/xend/XendMonitor.py      Thu Jan 25 17:00:18 2007 +0000
@@ -311,18 +311,18 @@ class XendMonitor(threading.Thread):
                     self.pifs_util[pifid] = (rx_util, tx_util)
                     self.pifs[pifid] = stats
 
-                for domid in self.domain_vcpus_util.keys():
+                for domid in self._domain_vcpus_util.keys():
                     if domid not in active_domids:
-                        del self.domain_vcpus_util[domid]
-                        del self.domain_vcpus[domid]
-                for domid in self.domain_vifs_util.keys():
+                        del self._domain_vcpus_util[domid]
+                        del self._domain_vcpus[domid]
+                for domid in self._domain_vifs_util.keys():
                     if domid not in active_domids:
-                        del self.domain_vifs_util[domid]
-                        del self.domain_vifs[domid]
-                for domid in self.domain_vbds_util.keys():
+                        del self._domain_vifs_util[domid]
+                        del self._domain_vifs[domid]
+                for domid in self._domain_vbds_util.keys():
                     if domid not in active_domids:
-                        del self.domain_vbds_util[domid]
-                        del self.domain_vbds[domid]
+                        del self._domain_vbds_util[domid]
+                        del self._domain_vbds[domid]
 
             finally:
                 self.lock.release()

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-unstable] [XEND] Fix bad patch merge for XendMonitor, Xen patchbot-unstable <=