From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [PATCH OSSTEST 2/4] Toolstack: Add OpenStack as a toolstack. Date: Fri, 17 Jul 2015 17:45:06 +0100 Message-ID: <1437151506.22698.33.camel@citrix.com> References: <1437045519-13914-1-git-send-email-anthony.perard@citrix.com> <1437045519-13914-3-git-send-email-anthony.perard@citrix.com> <1437148696.22698.6.camel@citrix.com> <20150717163253.GH1166@perard.uk.xensource.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20150717163253.GH1166@perard.uk.xensource.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Anthony PERARD Cc: Ian Jackson , xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On Fri, 2015-07-17 at 17:32 +0100, Anthony PERARD wrote: > > Given that and given that you introduce your own recipe to sg-run-job > > which doesn't/can't/won't try to do any of the usual stuff, I can't see > > any reason not to simply go with toolstack=libvirt for these test cases. > > That it is the most accurate reflection of what we want and if some > > openstack test case did want to talk to the underlying toolstack for > > some reason libvirt would be it. > > Ok, I'll just have to find another way to get more RAM into dom0. In ts-xen-install I think: if (toolstack($ho)->{Dom0MemFixed}) { $xenhopt .= " dom0_mem=512M,max:512M"; } should become sthg like: if (toolstack($ho)->{Dom0MemFixed}) { my $mem = $r{'dom0_mem'} // 512; $xenhopt .= " dom0_mem=${mem}M,max:${mem}M"; } and make-flight should set this new runvar only for the openstack job. Ian.