From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christian Limpach Subject: Re: [RESEND] [PATCH] Call dominfo.device_delete instead of non-existant dominfo.device_destroy Date: Wed, 14 Sep 2005 13:49:37 +0100 Message-ID: <3d8eece205091405495eb9984e@mail.gmail.com> References: <20050913163112.GA5276@underhill.no-ip.org> Reply-To: Christian.Limpach@cl.cam.ac.uk Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: In-Reply-To: <20050913163112.GA5276@underhill.no-ip.org> Content-Disposition: inline List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org Thanks! On 9/13/05, Sean Dague wrote: > This is a resend on the patch from late last week as I haven't seen it in > the changelog yet. Comments welcomed if there is an issue with the patch= . >=20 > -Sean >=20 > -- > __________________________________________________________________ >=20 > Sean Dague Mid-Hudson Valley > sean at dague dot net Linux Users Group > http://dague.net http://mhvlug.org >=20 > There is no silver bullet. Plus, werewolves make better neighbors > than zombies, and they tend to keep the vampire population down. > __________________________________________________________________ >=20 >=20 >=20 > ---------- Forwarded message ---------- > From: Sean Dague > To: xen-devel@lists.xensource.com > Date: Fri, 9 Sep 2005 15:01:43 -0400 > Subject: [PATCH] Call dominfo.device_delete instead of non-existant domin= fo.device_destroy > This patch changes the device destruction function to one that exists in > in the XendDomainInfo class, instead of a non existent method. >=20 >=20 > Signed-off-by: Sean Dague >=20 > Diffstat output: > XendDomain.py | 2 +- > 1 files changed, 1 insertion(+), 1 deletion(-) >=20 > diff -r 41a74438bcba tools/python/xen/xend/XendDomain.py > --- a/tools/python/xen/xend/XendDomain.py Fri Sep 9 18:36:48 2005 > +++ b/tools/python/xen/xend/XendDomain.py Fri Sep 9 14:46:01 2005 > @@ -667,7 +667,7 @@ > @param type: device type > """ > dominfo =3D self.domain_lookup(id) > - val =3D dominfo.device_destroy(type, devid) > + val =3D dominfo.device_delete(type, devid) > dominfo.exportToDB() > return val >=20 >=20 > -- > __________________________________________________________________ >=20 > Sean Dague Mid-Hudson Valley > sean at dague dot net Linux Users Group > http://dague.net http://mhvlug.org >=20 > There is no silver bullet. Plus, werewolves make better neighbors > than zombies, and they tend to keep the vampire population down. > __________________________________________________________________ >=20 >=20 > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xensource.com > http://lists.xensource.com/xen-devel >=20 >=20 > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xensource.com > http://lists.xensource.com/xen-devel >=20 >=20 >=20 >