I''ve noticed that Host.get_resident_VMs RPC returns duplicate references to running VMs. Is this the intent or a bug :-)? In XendDomain.py we have def get_domain_refs(self): result = [] try: self.domains_lock.acquire() result = [d.get_uuid() for d in self.domains.values()] result += self.managed_domains.keys() return result finally: self.domains_lock.release() and as you can see a running domain would be included twice in the resulting list. If this is a bug, patch attached. If intentional, please let me know so I can handle it appropriately in client code. Regards, Jim _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Ewan Mellor
2006-Dec-13 14:44 UTC
Re: [Xen-devel] [PATCH] [xend] Host.get_resident_VMs RPC
On Mon, Dec 11, 2006 at 01:08:44PM -0700, Jim Fehlig wrote:> I''ve noticed that Host.get_resident_VMs RPC returns duplicate references > to running VMs. Is this the intent or a bug :-)? In XendDomain.py we have > > def get_domain_refs(self): > result = [] > try: > self.domains_lock.acquire() > result = [d.get_uuid() for d in self.domains.values()] > result += self.managed_domains.keys() > return result > finally: > self.domains_lock.release() > > and as you can see a running domain would be included twice in the > resulting list. If this is a bug, patch attached. If intentional, > please let me know so I can handle it appropriately in client code. > > Regards, > Jim> # HG changeset patch > # User jfehlig@jfehlig2.provo.novell.com > # Date 1165867640 25200 > # Node ID 687e576ee99eb68d10324d0013bfd9acc372468c > # Parent 37141c3a3d39956ad5faf2d4e2a91276eaca557b > When enumerating VMs resident on a host (Host.get_resident_VMs RPC), ensure VMs with same UUID only appear once in the list. > > Signed-off-by: Jim Fehlig <jfehlig@novell.com>That wasn''t the intention, no! I''ve applied that, thanks Jim. Ewan. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel