From mboxrd@z Thu Jan 1 00:00:00 1970 From: Olaf Hering Subject: Re: [OPW][PATCH v2] Support added to read system information from BIOS and verify it with Xen. Date: Tue, 21 Oct 2014 11:21:45 +0200 Message-ID: <20141021092145.GA19207@aepfle.de> References: <20141021061012.GA12475@chroot-build.noidalab.local> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <20141021061012.GA12475@chroot-build.noidalab.local> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Rita Sinha Cc: Andrew Cooper , xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On Tue, Oct 21, Rita Sinha wrote: > +my @command = `xl list`; > +my @xen_values = split(' ', $command[1]); > +if ( $DmiNumProcs != @xen_values[3] ) > + print "Warning: dmidecode reports $DmiNumProcs processors, xen reports $xenCpus processors\n"; Is a warning expected if dom0 is booted with dom0_max_vcpus=N? Olaf