From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [OSSTEST Nested PATCH v10 6/9] Changes on test step of Debian hvm guest install Date: Wed, 20 May 2015 14:55:59 +0100 Message-ID: <1432130159.12989.262.camel@citrix.com> References: <1431488204-14510-1-git-send-email-longtaox.pang@intel.com> <1431488204-14510-7-git-send-email-longtaox.pang@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1431488204-14510-7-git-send-email-longtaox.pang@intel.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: "longtao.pang" Cc: wei.liu2@citrix.com, robert.hu@intel.com, Ian.Jackson@eu.citrix.com, xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On Wed, 2015-05-13 at 11:36 +0800, longtao.pang wrote: > @@ -59,7 +59,7 @@ d-i partman-auto/expert_recipe string \\ > use_filesystem{ } filesystem{ vfat } \\ > mountpoint{ /boot/efi } \\ > . \\ > - 5000 50 5000 ext4 \\ > + 10000 50 10000 ext4 \\ These three numbers are ::=___ (from http://anonscm.debian.org/cgit/d-i/debian-installer.git/tree/doc/devel/partman-auto-recipe.txt) So here you are increasing the minimum size of the root partition for all debianhvm domains (including non-nested ones and L2 guests) from 5G to 10G. Did you test this with a normal L1 debianhvm guest (not one destined to be an L1 host). i.e. using test-amd64-amd64-xl-qemuu-debianhvm-amd64 ? The new size you have given is the same size as the entire disk in that case. I'm not sure what will then happen... Perhaps "5000 50 -1 ext4" does what you need, namely leaves the minimum alone and sets the maximum to unlimited, which I think will end up making this partition as big as the disk less the configured swap space. Ian.