From xen-api-bounces@lists.xensource.com Thu Nov 17 22:36:12 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Thu, 17 Nov 2011 22:36:12 +0000
Received: from lists.colo.xensource.com ([70.42.241.110] helo=lists.xensource.com)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RRAZ2-0002l4-0o
	for archives@lists.xen.org; Thu, 17 Nov 2011 22:36:12 +0000
Received: from localhost ([127.0.0.1] helo=lists.colo.xensource.com)
	by lists.xensource.com with esmtp (Exim 4.43)
	id 1RRAYh-0007EK-42; Thu, 17 Nov 2011 14:35:51 -0800
Received: from mail174.messagelabs.com ([85.158.138.51])
	by lists.xensource.com with esmtp (Exim 4.43) id 1RRAYe-0007E4-5j
	for xen-api@lists.xensource.com; Thu, 17 Nov 2011 14:35:48 -0800
X-Env-Sender: superbobry@gmail.com
X-Msg-Ref: server-7.tower-174.messagelabs.com!1321569343!2016835!1
X-Originating-IP: [209.85.161.171]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 6618 invoked from network); 17 Nov 2011 22:35:44 -0000
Received: from mail-gx0-f171.google.com (HELO mail-gx0-f171.google.com)
	(209.85.161.171)
	by server-7.tower-174.messagelabs.com with RC4-SHA encrypted SMTP;
	17 Nov 2011 22:35:44 -0000
Received: by ggnk3 with SMTP id k3so1825136ggn.30
	for <xen-api@lists.xensource.com>; Thu, 17 Nov 2011 14:35:43 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=mime-version:in-reply-to:references:from:date:message-id:subject:to
	:cc:content-type;
	bh=YQH7vYe4RlBwm4ftxAS7R3NW/AQZLn2Plz4yxX1u8oo=;
	b=I8r5fXgsipbJ5By2QeuIAx7VcTEcS3KPfTKgkLjiJfYaUwujXl0AyvOuc+X5A2J6pW
	Yf5CXNmGmkgfIHzdfI3gaEmxalEqW5xoe2lTGygFT8p4zGl7gVDY4gFZb3RZFIArH/6Y
	HXRwmxrqj1kwDhs308PdqVrZd8kofwnkm/2eI=
Received: by 10.50.180.193 with SMTP id dq1mr519008igc.34.1321569343206; Thu,
	17 Nov 2011 14:35:43 -0800 (PST)
MIME-Version: 1.0
Received: by 10.231.204.69 with HTTP; Thu, 17 Nov 2011 14:35:02 -0800 (PST)
In-Reply-To: <81A73678E76EA642801C8F2E4823AD21BC34A44BA6@LONPMAILBOX01.citrite.net>
References: <81A73678E76EA642801C8F2E4823AD21BC34A44BA6@LONPMAILBOX01.citrite.net>
From: Sergei Lebedev <superbobry@gmail.com>
Date: Fri, 18 Nov 2011 02:35:02 +0400
Message-ID: <CAFQn-3-vPLr4Rp+TbXtwFoT2Su7-mieH7FgKDZoE_OWesdDGDA@mail.gmail.com>
Subject: Re: [Xen-API] xen-api-libs unit tests
To: Dave Scott <Dave.Scott@eu.citrix.com>
Cc: xen-api <xen-api@lists.xensource.com>
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: multipart/mixed; boundary="===============0612640600=="
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

--===============0612640600==
Content-Type: multipart/alternative; boundary=14dae9340ce13f73dc04b1f5d7dd

--14dae9340ce13f73dc04b1f5d7dd
Content-Type: text/plain; charset=UTF-8

Hello Dave,

Two things:

1. Have you considered switching (at least partly) to property based
testing [*], which works nicely for pure functions (for example most of the
stuff from `stdext` can be covered in no time).

2. This is a bit unrelated, but anyway -- why don't you use ExtLib or
Batteries, instead of `stdext`? Obviously, the goal is the same for all
three of these libraries. And it would be really nice to see Batteries or
ExtLib in a project as big as XenAPI.

Cheers,
Sergei

[*] http://kaputt.x9c.fr

On Tue, Nov 15, 2011 at 3:01 PM, Dave Scott <Dave.Scott@eu.citrix.com>wrote:

> Hi,
>
> I've added some more unit tests to xen-api-libs which can be run at build
> time:
>
>
> https://github.com/djs55/xen-api-libs/commit/75d9fb555e40700d6b959c116d64c603767b74cb
>
> I've also added a "make test" target to the makefile which is invoked as
> part of the RPM build. I encourage everyone to (i) design their code to be
> testable; (ii) add some unit tests where the effort is worth it; and (iii)
> hook 'em in to the "make test" target. When deciding whether a particular
> test is worth it or not, I try to imagine myself refactoring the code in
> about a years time, when I've forgotten how it all works :)
>
> Cheers,
> Dave
>
> _______________________________________________
> xen-api mailing list
> xen-api@lists.xensource.com
> http://lists.xensource.com/mailman/listinfo/xen-api
>

--14dae9340ce13f73dc04b1f5d7dd
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Hello Dave,<div><br></div><div>Two things:</div><div><br></div><div>1. Have=
 you considered switching (at least partly) to property based testing [*], =
which works nicely for pure functions (for example most of the stuff from `=
stdext` can be=C2=A0covered=C2=A0in no time).</div>


<div><br></div><div>2. This is a bit unrelated, but anyway -- why don&#39;t=
 you use ExtLib or Batteries, instead of `stdext`? Obviously, the goal is t=
he same for all three of these libraries. And it would be really nice to se=
e Batteries or ExtLib in a project as big as XenAPI.</div>


<div><br></div><div>Cheers,</div><div>Sergei</div><div><br></div><div>[*] <=
a href=3D"http://kaputt.x9c.fr" target=3D"_blank">http://kaputt.x9c.fr</a><=
br><div><br><div class=3D"gmail_quote">On Tue, Nov 15, 2011 at 3:01 PM, Dav=
e Scott <span dir=3D"ltr">&lt;<a href=3D"mailto:Dave.Scott@eu.citrix.com" t=
arget=3D"_blank">Dave.Scott@eu.citrix.com</a>&gt;</span> wrote:<br>


<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
x #ccc solid;padding-left:1ex">Hi,<br>
<br>
I&#39;ve added some more unit tests to xen-api-libs which can be run at bui=
ld time:<br>
<br>
<a href=3D"https://github.com/djs55/xen-api-libs/commit/75d9fb555e40700d6b9=
59c116d64c603767b74cb" target=3D"_blank">https://github.com/djs55/xen-api-l=
ibs/commit/75d9fb555e40700d6b959c116d64c603767b74cb</a><br>
<br>
I&#39;ve also added a &quot;make test&quot; target to the makefile which is=
 invoked as part of the RPM build. I encourage everyone to (i) design their=
 code to be testable; (ii) add some unit tests where the effort is worth it=
; and (iii) hook &#39;em in to the &quot;make test&quot; target. When decid=
ing whether a particular test is worth it or not, I try to imagine myself r=
efactoring the code in about a years time, when I&#39;ve forgotten how it a=
ll works :)<br>



<br>
Cheers,<br>
Dave<br>
<br>
_______________________________________________<br>
xen-api mailing list<br>
<a href=3D"mailto:xen-api@lists.xensource.com" target=3D"_blank">xen-api@li=
sts.xensource.com</a><br>
<a href=3D"http://lists.xensource.com/mailman/listinfo/xen-api" target=3D"_=
blank">http://lists.xensource.com/mailman/listinfo/xen-api</a><br>
</blockquote></div><br></div></div>

--14dae9340ce13f73dc04b1f5d7dd--


--===============0612640600==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

--===============0612640600==--


From xen-api-bounces@lists.xensource.com Thu Nov 17 22:36:12 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Thu, 17 Nov 2011 22:36:12 +0000
Received: from lists.colo.xensource.com ([70.42.241.110] helo=lists.xensource.com)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RRAZ2-0002l4-0o
	for archives@lists.xen.org; Thu, 17 Nov 2011 22:36:12 +0000
Received: from localhost ([127.0.0.1] helo=lists.colo.xensource.com)
	by lists.xensource.com with esmtp (Exim 4.43)
	id 1RRAYh-0007EK-42; Thu, 17 Nov 2011 14:35:51 -0800
Received: from mail174.messagelabs.com ([85.158.138.51])
	by lists.xensource.com with esmtp (Exim 4.43) id 1RRAYe-0007E4-5j
	for xen-api@lists.xensource.com; Thu, 17 Nov 2011 14:35:48 -0800
X-Env-Sender: superbobry@gmail.com
X-Msg-Ref: server-7.tower-174.messagelabs.com!1321569343!2016835!1
X-Originating-IP: [209.85.161.171]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 6618 invoked from network); 17 Nov 2011 22:35:44 -0000
Received: from mail-gx0-f171.google.com (HELO mail-gx0-f171.google.com)
	(209.85.161.171)
	by server-7.tower-174.messagelabs.com with RC4-SHA encrypted SMTP;
	17 Nov 2011 22:35:44 -0000
Received: by ggnk3 with SMTP id k3so1825136ggn.30
	for <xen-api@lists.xensource.com>; Thu, 17 Nov 2011 14:35:43 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=mime-version:in-reply-to:references:from:date:message-id:subject:to
	:cc:content-type;
	bh=YQH7vYe4RlBwm4ftxAS7R3NW/AQZLn2Plz4yxX1u8oo=;
	b=I8r5fXgsipbJ5By2QeuIAx7VcTEcS3KPfTKgkLjiJfYaUwujXl0AyvOuc+X5A2J6pW
	Yf5CXNmGmkgfIHzdfI3gaEmxalEqW5xoe2lTGygFT8p4zGl7gVDY4gFZb3RZFIArH/6Y
	HXRwmxrqj1kwDhs308PdqVrZd8kofwnkm/2eI=
Received: by 10.50.180.193 with SMTP id dq1mr519008igc.34.1321569343206; Thu,
	17 Nov 2011 14:35:43 -0800 (PST)
MIME-Version: 1.0
Received: by 10.231.204.69 with HTTP; Thu, 17 Nov 2011 14:35:02 -0800 (PST)
In-Reply-To: <81A73678E76EA642801C8F2E4823AD21BC34A44BA6@LONPMAILBOX01.citrite.net>
References: <81A73678E76EA642801C8F2E4823AD21BC34A44BA6@LONPMAILBOX01.citrite.net>
From: Sergei Lebedev <superbobry@gmail.com>
Date: Fri, 18 Nov 2011 02:35:02 +0400
Message-ID: <CAFQn-3-vPLr4Rp+TbXtwFoT2Su7-mieH7FgKDZoE_OWesdDGDA@mail.gmail.com>
Subject: Re: [Xen-API] xen-api-libs unit tests
To: Dave Scott <Dave.Scott@eu.citrix.com>
Cc: xen-api <xen-api@lists.xensource.com>
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: multipart/mixed; boundary="===============0612640600=="
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

--===============0612640600==
Content-Type: multipart/alternative; boundary=14dae9340ce13f73dc04b1f5d7dd

--14dae9340ce13f73dc04b1f5d7dd
Content-Type: text/plain; charset=UTF-8

Hello Dave,

Two things:

1. Have you considered switching (at least partly) to property based
testing [*], which works nicely for pure functions (for example most of the
stuff from `stdext` can be covered in no time).

2. This is a bit unrelated, but anyway -- why don't you use ExtLib or
Batteries, instead of `stdext`? Obviously, the goal is the same for all
three of these libraries. And it would be really nice to see Batteries or
ExtLib in a project as big as XenAPI.

Cheers,
Sergei

[*] http://kaputt.x9c.fr

On Tue, Nov 15, 2011 at 3:01 PM, Dave Scott <Dave.Scott@eu.citrix.com>wrote:

> Hi,
>
> I've added some more unit tests to xen-api-libs which can be run at build
> time:
>
>
> https://github.com/djs55/xen-api-libs/commit/75d9fb555e40700d6b959c116d64c603767b74cb
>
> I've also added a "make test" target to the makefile which is invoked as
> part of the RPM build. I encourage everyone to (i) design their code to be
> testable; (ii) add some unit tests where the effort is worth it; and (iii)
> hook 'em in to the "make test" target. When deciding whether a particular
> test is worth it or not, I try to imagine myself refactoring the code in
> about a years time, when I've forgotten how it all works :)
>
> Cheers,
> Dave
>
> _______________________________________________
> xen-api mailing list
> xen-api@lists.xensource.com
> http://lists.xensource.com/mailman/listinfo/xen-api
>

--14dae9340ce13f73dc04b1f5d7dd
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Hello Dave,<div><br></div><div>Two things:</div><div><br></div><div>1. Have=
 you considered switching (at least partly) to property based testing [*], =
which works nicely for pure functions (for example most of the stuff from `=
stdext` can be=C2=A0covered=C2=A0in no time).</div>


<div><br></div><div>2. This is a bit unrelated, but anyway -- why don&#39;t=
 you use ExtLib or Batteries, instead of `stdext`? Obviously, the goal is t=
he same for all three of these libraries. And it would be really nice to se=
e Batteries or ExtLib in a project as big as XenAPI.</div>


<div><br></div><div>Cheers,</div><div>Sergei</div><div><br></div><div>[*] <=
a href=3D"http://kaputt.x9c.fr" target=3D"_blank">http://kaputt.x9c.fr</a><=
br><div><br><div class=3D"gmail_quote">On Tue, Nov 15, 2011 at 3:01 PM, Dav=
e Scott <span dir=3D"ltr">&lt;<a href=3D"mailto:Dave.Scott@eu.citrix.com" t=
arget=3D"_blank">Dave.Scott@eu.citrix.com</a>&gt;</span> wrote:<br>


<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
x #ccc solid;padding-left:1ex">Hi,<br>
<br>
I&#39;ve added some more unit tests to xen-api-libs which can be run at bui=
ld time:<br>
<br>
<a href=3D"https://github.com/djs55/xen-api-libs/commit/75d9fb555e40700d6b9=
59c116d64c603767b74cb" target=3D"_blank">https://github.com/djs55/xen-api-l=
ibs/commit/75d9fb555e40700d6b959c116d64c603767b74cb</a><br>
<br>
I&#39;ve also added a &quot;make test&quot; target to the makefile which is=
 invoked as part of the RPM build. I encourage everyone to (i) design their=
 code to be testable; (ii) add some unit tests where the effort is worth it=
; and (iii) hook &#39;em in to the &quot;make test&quot; target. When decid=
ing whether a particular test is worth it or not, I try to imagine myself r=
efactoring the code in about a years time, when I&#39;ve forgotten how it a=
ll works :)<br>



<br>
Cheers,<br>
Dave<br>
<br>
_______________________________________________<br>
xen-api mailing list<br>
<a href=3D"mailto:xen-api@lists.xensource.com" target=3D"_blank">xen-api@li=
sts.xensource.com</a><br>
<a href=3D"http://lists.xensource.com/mailman/listinfo/xen-api" target=3D"_=
blank">http://lists.xensource.com/mailman/listinfo/xen-api</a><br>
</blockquote></div><br></div></div>

--14dae9340ce13f73dc04b1f5d7dd--


--===============0612640600==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

--===============0612640600==--


From xen-api-bounces@lists.xensource.com Fri Nov 18 01:19:15 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Fri, 18 Nov 2011 01:19:15 +0000
Received: from lists.colo.xensource.com ([70.42.241.110] helo=lists.xensource.com)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RRD6p-0002vc-3C
	for archives@lists.xen.org; Fri, 18 Nov 2011 01:19:15 +0000
Received: from localhost ([127.0.0.1] helo=lists.colo.xensource.com)
	by lists.xensource.com with esmtp (Exim 4.43)
	id 1RRD6U-0006Ks-7K; Thu, 17 Nov 2011 17:18:54 -0800
Received: from mail21.messagelabs.com ([85.158.143.35])
	by lists.xensource.com with smtp (Exim 4.43) id 1RRD6S-0006KX-3q
	for xen-api@lists.xensource.com; Thu, 17 Nov 2011 17:18:52 -0800
X-Env-Sender: hemminger@hotmail.com
X-Msg-Ref: server-14.tower-21.messagelabs.com!1321579128!4681523!1
X-Originating-IP: [65.55.111.142]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 31003 invoked from network); 18 Nov 2011 01:18:49 -0000
Received: from blu0-omc4-s3.blu0.hotmail.com (HELO
	blu0-omc4-s3.blu0.hotmail.com) (65.55.111.142)
	by server-14.tower-21.messagelabs.com with SMTP;
	18 Nov 2011 01:18:49 -0000
Received: from BLU0-SMTP168 ([65.55.111.135]) by blu0-omc4-s3.blu0.hotmail.com
	with Microsoft SMTPSVC(6.0.3790.4675); 
	Thu, 17 Nov 2011 17:18:48 -0800
X-Originating-IP: [97.88.25.124]
X-Originating-Email: [hemminger@hotmail.com]
Message-ID: <BLU0-SMTP1685F8C872AAFA20FF7095EB5C40@phx.gbl>
Received: from [192.168.1.103] ([97.88.25.124]) by BLU0-SMTP168.phx.gbl over
	TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); 
	Thu, 17 Nov 2011 17:18:46 -0800
References: <201110071906.p97J6Tnc017066@mailgateway>
	<BLU0-SMTP4670685F6A1CE8D9A301076B5FC0@phx.gbl>
	<4EC26327.50801@citrix.com>
	<BLU0-SMTP368BCDFB89AA6F44BD39118B5C10@phx.gbl>
	<4EC351E5.4020907@swisscenter.com>
In-Reply-To: <4EC351E5.4020907@swisscenter.com>
MIME-Version: 1.0 (1.0)
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain; charset="utf-8"
X-Mailer: iPhone Mail (9A405)
From: Corey Hemminger <hemminger@hotmail.com>
Subject: Re: [Xen-API] XenCenter 6.0 and XCP1.1 RC
Date: Thu, 17 Nov 2011 19:18:43 -0600
To: =?utf-8?Q?S=C3=A9bastien_Riccio?= <sr@swisscenter.com>
X-OriginalArrivalTime: 18 Nov 2011 01:18:46.0469 (UTC)
	FILETIME=[05006F50:01CCA590]
Cc: "<xen-api@lists.xensource.com>" <xen-api@lists.xensource.com>
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Your right sebastien. I double checked my API override setting and it was se=
t at 5.6.199. That was causing the vm creation issue. Adjusted it to 5.6.100=
 and all is xen with the world and xencenter 6 works fine.=20

Corey

On Nov 16, 2011, at 12:02 AM, S=C3=A9bastien Riccio <sr@swisscenter.com> wro=
te:

> Hi,
>=20
> =46rom my personal experience, XenCenter for 6.x works flawlessly with XCP=
 1.1 as long as you fake the XCP version to 5.6.100.
> Having a higher version like 5.9 or 6 cause the xencenter to try to setup t=
he VM.suspend_SR field when you create a VM and
> that is not supported by XCP 1.1.
>=20
> my current setup that works with latest XenCenter:
>=20
> [root~]# cat /etc/xensource/xapi_version_override
> 5.6.100
>=20
> I also stripped PRODUCT_BRAND from the xapi binary.
> [root~]# /usr/bin/perl -pi -e 's/XCP/\ \ \ /g' /opt/xensource/bin/xapi
>=20
> and set BUILD_NUMBER to 0 in /etc/xensource-inventory
> BUILD_NUMBER=3D'0'
>=20
> result:
>=20
> [root~]# xapi -version
> hg_id=3D
> hostname=3Dkiffu-2
> date=3D2011-09-19
> PRODUCT_VERSION=3D5.6.100
> PRODUCT_BRAND=3D
> BUILD_NUMBER=3D0
>=20
> If you try this, backup your xapi binary first, it's a dirty hack and I do=
nt want to be
> responsible if you break anything :)
>=20
> Cheers,
> S=C3=A9bastien
> On 15.11.2011 18:23, Corey Hemminger wrote:
>> Thanks. That's exactly what I did. Thought there might be a work around t=
o fix it. Would think xencenter 6.0 would be backward compatible.
>>=20
>> Corey
>>=20
>> On Nov 15, 2011, at 7:03 AM, Mike McClurg<mike.mcclurg@citrix.com>  wrote=
:
>>=20
>>> On 09/10/11 18:37, Corey Hemminger wrote:
>>>> When trying to create new VM's using xencenter 6.0 the new release I ge=
t an error:
>>>> "You tried to call a method that does not exist. The method name that y=
ou used is VM.set_suspend_SR."
>>>>=20
>>>> I'm using XCP 1.1 RC on a server with local storage for the VMs.
>>>>=20
>>>> Any ideas how to fix this?
>>>>=20
>>> Sorry to leave you hanging for a few days. The problem here is that the
>>> VM.suspend_SR field is new to the API, and isn't present in XCP 1.1. The=

>>> version of XenCenter you're using is for XenServer 6.0, which has the
>>> new API field. Here is a mapping of XCP/XenServer version numbers:
>>>=20
>>> XCP   | XenServer     | Codename
>>> ----------------------------------
>>> 1.0    | 5.6.1 "FP1"   | Cowley
>>> 1.1    | 5.6.1 "SP2"   | Oxford
>>> 1.5*   | 6.0.0         | Boston
>>> 1.6*   | 6.1.0* "SP1"  | Tampa*
>>>=20
>>> * Unreleased version; names and numbers may change
>>>=20
>>> (Note to self: this should probably be on the wiki somewhere...)
>>>=20
>>> I think that your best bet is to install the XenCenter that corresponds
>>> to XenServer 5.6.1 SP2 and use that with XCP 1.1. Or you can use
>>> OpenXenManager[1][2], though I admit that it's nowhere near as polished
>>> as XenCenter.
>>>=20
>>> Mike
>>>=20
>>> [1] http://sourceforge.net/projects/openxenmanager/
>>> [2] https://launchpad.net/~mike-mcclurg/+archive/openxenmanager
>>>=20
>> _______________________________________________
>> xen-api mailing list
>> xen-api@lists.xensource.com
>> http://lists.xensource.com/mailman/listinfo/xen-api
>>=20
>=20
>=20

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Fri Nov 18 01:19:15 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Fri, 18 Nov 2011 01:19:15 +0000
Received: from lists.colo.xensource.com ([70.42.241.110] helo=lists.xensource.com)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RRD6p-0002vc-3C
	for archives@lists.xen.org; Fri, 18 Nov 2011 01:19:15 +0000
Received: from localhost ([127.0.0.1] helo=lists.colo.xensource.com)
	by lists.xensource.com with esmtp (Exim 4.43)
	id 1RRD6U-0006Ks-7K; Thu, 17 Nov 2011 17:18:54 -0800
Received: from mail21.messagelabs.com ([85.158.143.35])
	by lists.xensource.com with smtp (Exim 4.43) id 1RRD6S-0006KX-3q
	for xen-api@lists.xensource.com; Thu, 17 Nov 2011 17:18:52 -0800
X-Env-Sender: hemminger@hotmail.com
X-Msg-Ref: server-14.tower-21.messagelabs.com!1321579128!4681523!1
X-Originating-IP: [65.55.111.142]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 31003 invoked from network); 18 Nov 2011 01:18:49 -0000
Received: from blu0-omc4-s3.blu0.hotmail.com (HELO
	blu0-omc4-s3.blu0.hotmail.com) (65.55.111.142)
	by server-14.tower-21.messagelabs.com with SMTP;
	18 Nov 2011 01:18:49 -0000
Received: from BLU0-SMTP168 ([65.55.111.135]) by blu0-omc4-s3.blu0.hotmail.com
	with Microsoft SMTPSVC(6.0.3790.4675); 
	Thu, 17 Nov 2011 17:18:48 -0800
X-Originating-IP: [97.88.25.124]
X-Originating-Email: [hemminger@hotmail.com]
Message-ID: <BLU0-SMTP1685F8C872AAFA20FF7095EB5C40@phx.gbl>
Received: from [192.168.1.103] ([97.88.25.124]) by BLU0-SMTP168.phx.gbl over
	TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); 
	Thu, 17 Nov 2011 17:18:46 -0800
References: <201110071906.p97J6Tnc017066@mailgateway>
	<BLU0-SMTP4670685F6A1CE8D9A301076B5FC0@phx.gbl>
	<4EC26327.50801@citrix.com>
	<BLU0-SMTP368BCDFB89AA6F44BD39118B5C10@phx.gbl>
	<4EC351E5.4020907@swisscenter.com>
In-Reply-To: <4EC351E5.4020907@swisscenter.com>
MIME-Version: 1.0 (1.0)
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain; charset="utf-8"
X-Mailer: iPhone Mail (9A405)
From: Corey Hemminger <hemminger@hotmail.com>
Subject: Re: [Xen-API] XenCenter 6.0 and XCP1.1 RC
Date: Thu, 17 Nov 2011 19:18:43 -0600
To: =?utf-8?Q?S=C3=A9bastien_Riccio?= <sr@swisscenter.com>
X-OriginalArrivalTime: 18 Nov 2011 01:18:46.0469 (UTC)
	FILETIME=[05006F50:01CCA590]
Cc: "<xen-api@lists.xensource.com>" <xen-api@lists.xensource.com>
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Your right sebastien. I double checked my API override setting and it was se=
t at 5.6.199. That was causing the vm creation issue. Adjusted it to 5.6.100=
 and all is xen with the world and xencenter 6 works fine.=20

Corey

On Nov 16, 2011, at 12:02 AM, S=C3=A9bastien Riccio <sr@swisscenter.com> wro=
te:

> Hi,
>=20
> =46rom my personal experience, XenCenter for 6.x works flawlessly with XCP=
 1.1 as long as you fake the XCP version to 5.6.100.
> Having a higher version like 5.9 or 6 cause the xencenter to try to setup t=
he VM.suspend_SR field when you create a VM and
> that is not supported by XCP 1.1.
>=20
> my current setup that works with latest XenCenter:
>=20
> [root~]# cat /etc/xensource/xapi_version_override
> 5.6.100
>=20
> I also stripped PRODUCT_BRAND from the xapi binary.
> [root~]# /usr/bin/perl -pi -e 's/XCP/\ \ \ /g' /opt/xensource/bin/xapi
>=20
> and set BUILD_NUMBER to 0 in /etc/xensource-inventory
> BUILD_NUMBER=3D'0'
>=20
> result:
>=20
> [root~]# xapi -version
> hg_id=3D
> hostname=3Dkiffu-2
> date=3D2011-09-19
> PRODUCT_VERSION=3D5.6.100
> PRODUCT_BRAND=3D
> BUILD_NUMBER=3D0
>=20
> If you try this, backup your xapi binary first, it's a dirty hack and I do=
nt want to be
> responsible if you break anything :)
>=20
> Cheers,
> S=C3=A9bastien
> On 15.11.2011 18:23, Corey Hemminger wrote:
>> Thanks. That's exactly what I did. Thought there might be a work around t=
o fix it. Would think xencenter 6.0 would be backward compatible.
>>=20
>> Corey
>>=20
>> On Nov 15, 2011, at 7:03 AM, Mike McClurg<mike.mcclurg@citrix.com>  wrote=
:
>>=20
>>> On 09/10/11 18:37, Corey Hemminger wrote:
>>>> When trying to create new VM's using xencenter 6.0 the new release I ge=
t an error:
>>>> "You tried to call a method that does not exist. The method name that y=
ou used is VM.set_suspend_SR."
>>>>=20
>>>> I'm using XCP 1.1 RC on a server with local storage for the VMs.
>>>>=20
>>>> Any ideas how to fix this?
>>>>=20
>>> Sorry to leave you hanging for a few days. The problem here is that the
>>> VM.suspend_SR field is new to the API, and isn't present in XCP 1.1. The=

>>> version of XenCenter you're using is for XenServer 6.0, which has the
>>> new API field. Here is a mapping of XCP/XenServer version numbers:
>>>=20
>>> XCP   | XenServer     | Codename
>>> ----------------------------------
>>> 1.0    | 5.6.1 "FP1"   | Cowley
>>> 1.1    | 5.6.1 "SP2"   | Oxford
>>> 1.5*   | 6.0.0         | Boston
>>> 1.6*   | 6.1.0* "SP1"  | Tampa*
>>>=20
>>> * Unreleased version; names and numbers may change
>>>=20
>>> (Note to self: this should probably be on the wiki somewhere...)
>>>=20
>>> I think that your best bet is to install the XenCenter that corresponds
>>> to XenServer 5.6.1 SP2 and use that with XCP 1.1. Or you can use
>>> OpenXenManager[1][2], though I admit that it's nowhere near as polished
>>> as XenCenter.
>>>=20
>>> Mike
>>>=20
>>> [1] http://sourceforge.net/projects/openxenmanager/
>>> [2] https://launchpad.net/~mike-mcclurg/+archive/openxenmanager
>>>=20
>> _______________________________________________
>> xen-api mailing list
>> xen-api@lists.xensource.com
>> http://lists.xensource.com/mailman/listinfo/xen-api
>>=20
>=20
>=20

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Fri Nov 18 16:25:33 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Fri, 18 Nov 2011 16:25:33 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RRRFi-0007JV-3d; Fri, 18 Nov 2011 16:25:22 +0000
Received: from mail174.messagelabs.com ([85.158.138.51])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <Dave.Scott@eu.citrix.com>) id 1RRRFg-0007JF-WD
	for xen-api@lists.xensource.com; Fri, 18 Nov 2011 16:25:21 +0000
X-Env-Sender: Dave.Scott@eu.citrix.com
X-Msg-Ref: server-15.tower-174.messagelabs.com!1321633496!2133109!1
X-Originating-IP: [62.200.22.115]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 5983 invoked from network); 18 Nov 2011 16:24:57 -0000
Received: from smtp.ctxuk.citrix.com (HELO SMTP.EU.CITRIX.COM) (62.200.22.115)
	by server-15.tower-174.messagelabs.com with RC4-SHA encrypted SMTP;
	18 Nov 2011 16:24:57 -0000
X-IronPort-AV: E=Sophos;i="4.69,533,1315180800"; 
   d="scan'208";a="9015227"
Received: from lonpmailmx02.citrite.net ([10.30.203.163])
	by LONPIPO01.EU.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	18 Nov 2011 16:24:56 +0000
Received: from LONPMAILBOX01.citrite.net ([10.30.224.161]) by
	LONPMAILMX02.citrite.net ([10.30.203.163]) with mapi; Fri, 18 Nov 2011
	16:24:56 +0000
From: Dave Scott <Dave.Scott@eu.citrix.com>
To: 'Sergei Lebedev' <superbobry@gmail.com>
Date: Fri, 18 Nov 2011 16:24:56 +0000
Thread-Topic: [Xen-API] xen-api-libs unit tests
Thread-Index: AcyleUqjrm5Z66GuTua4nCmH4Oh1jAAk6tFQ
Message-ID: <81A73678E76EA642801C8F2E4823AD21BC34A44BAC@LONPMAILBOX01.citrite.net>
References: <81A73678E76EA642801C8F2E4823AD21BC34A44BA6@LONPMAILBOX01.citrite.net>
	<CAFQn-3-vPLr4Rp+TbXtwFoT2Su7-mieH7FgKDZoE_OWesdDGDA@mail.gmail.com>
In-Reply-To: <CAFQn-3-vPLr4Rp+TbXtwFoT2Su7-mieH7FgKDZoE_OWesdDGDA@mail.gmail.com>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
acceptlanguage: en-US
MIME-Version: 1.0
Cc: xen-api <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] xen-api-libs unit tests
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: base64
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

SGkgU2VyZ2VpLA0KDQo+IDEuIEhhdmUgeW91IGNvbnNpZGVyZWQgc3dpdGNoaW5nIChhdCBsZWFz
dCBwYXJ0bHkpIHRvIHByb3BlcnR5IGJhc2VkIHRlc3RpbmcgWypdLA0KPiAgd2hpY2ggd29ya3Mg
bmljZWx5IGZvciBwdXJlIGZ1bmN0aW9ucyAoZm9yIGV4YW1wbGUgbW9zdCBvZiB0aGUgc3R1ZmYg
ZnJvbSBgc3RkZXh0YA0KPiAgY2FuIGJlwqBjb3ZlcmVkwqBpbiBubyB0aW1lKS4NCg0KWWVzLCBJ
IHRoaW5rIHByb3BlcnR5IGJhc2VkIHRlc3Rpbmcgd291bGQgYmUgZ3JlYXQuIFNpbmNlIHdlIHVz
ZSB0eXBlLWNvbnYgKHZpYSBycGMtbGlnaHQpDQp0byBnZW5lcmF0ZSBtYXJzaGFsbGluZyBjb2Rl
IGZyb20gb2NhbWwgdHlwZXMsIHBlcmhhcHMgd2UgY291bGQgYWxzbyB1c2UgaXQgdG8gZ2VuZXJh
dGUNCnN0cmVhbXMgb2YgcmFuZG9tIHZhbHVlcywgd2hpY2ggd2UgY291bGQgcnVuIHRocm91Z2gg
YSBwcm9wZXJ0eS1jaGVja2VyLiBUaGF0IHdvdWxkDQpjdXQgZG93biBvbiB0aGUgcmVxdWlyZWQg
Ym9pbGVycGxhdGUuDQoNCj4gMi4gVGhpcyBpcyBhIGJpdCB1bnJlbGF0ZWQsIGJ1dCBhbnl3YXkg
LS0gd2h5IGRvbid0IHlvdSB1c2UgRXh0TGliIG9yIEJhdHRlcmllcywNCj4gaW5zdGVhZCBvZiBg
c3RkZXh0YD8gT2J2aW91c2x5LCB0aGUgZ29hbCBpcyB0aGUgc2FtZSBmb3IgYWxsIHRocmVlIG9m
IHRoZXNlIGxpYnJhcmllcy4NCj4gQW5kIGl0IHdvdWxkIGJlIHJlYWxseSBuaWNlIHRvIHNlZSBC
YXR0ZXJpZXMgb3IgRXh0TGliIGluIGEgcHJvamVjdCBhcyBiaWcgYXMgWGVuQVBJLg0KDQo6LSkg
SSBhbHNvIGFncmVlIHRoYXQgd2Ugc2hvdWxkIHByb2JhYmx5IHN0YW5kYXJkaXplIG9uIHNvbWUg
b3RoZXIgbGlicmFyeS4gJ3N0ZGV4dCcNCmlzIHJlYWxseSBhIGJpZyBiYWcgb2YgZnVuY3Rpb25z
IHdoaWNoIGxhY2tzIGEgY2xlYW4gaW50ZXJmYWNlIC8gbmljZSB1c2FnZSBjb252ZW50aW9uLg0K
SSd2ZSBub3QgaGFkIHRoZSBjaGFuY2UgdG8gdXNlIEV4dExpYiBvciBCYXR0ZXJpZXMuIEkgZGlk
IGF0dGVuZCBZYXJvbiBNaW5za3kncyB0dXRvcmlhbA0KYXQgQ1VGUCBvbiBKYW5lIFN0cmVldCdz
IENvcmUgQXN5bmMgbGlicmFyeSB3aGljaCBzZWVtZWQgdmVyeSB3ZWxsIGRlc2lnbmVkIC0tIEkg
dGhpbmsNCkNvcmUgaXMgd29ydGggYSBjbG9zZSBsb29rLg0KDQpDaGVlcnMsDQpEYXZlDQoNCl9f
X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fCnhlbi1hcGkgbWFp
bGluZyBsaXN0Cnhlbi1hcGlAbGlzdHMueGVuc291cmNlLmNvbQpodHRwOi8vbGlzdHMueGVuc291
cmNlLmNvbS9tYWlsbWFuL2xpc3RpbmZvL3hlbi1hcGkK

From xen-api-bounces@lists.xensource.com Fri Nov 18 16:25:33 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Fri, 18 Nov 2011 16:25:33 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RRRFi-0007JV-3d; Fri, 18 Nov 2011 16:25:22 +0000
Received: from mail174.messagelabs.com ([85.158.138.51])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <Dave.Scott@eu.citrix.com>) id 1RRRFg-0007JF-WD
	for xen-api@lists.xensource.com; Fri, 18 Nov 2011 16:25:21 +0000
X-Env-Sender: Dave.Scott@eu.citrix.com
X-Msg-Ref: server-15.tower-174.messagelabs.com!1321633496!2133109!1
X-Originating-IP: [62.200.22.115]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 5983 invoked from network); 18 Nov 2011 16:24:57 -0000
Received: from smtp.ctxuk.citrix.com (HELO SMTP.EU.CITRIX.COM) (62.200.22.115)
	by server-15.tower-174.messagelabs.com with RC4-SHA encrypted SMTP;
	18 Nov 2011 16:24:57 -0000
X-IronPort-AV: E=Sophos;i="4.69,533,1315180800"; 
   d="scan'208";a="9015227"
Received: from lonpmailmx02.citrite.net ([10.30.203.163])
	by LONPIPO01.EU.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	18 Nov 2011 16:24:56 +0000
Received: from LONPMAILBOX01.citrite.net ([10.30.224.161]) by
	LONPMAILMX02.citrite.net ([10.30.203.163]) with mapi; Fri, 18 Nov 2011
	16:24:56 +0000
From: Dave Scott <Dave.Scott@eu.citrix.com>
To: 'Sergei Lebedev' <superbobry@gmail.com>
Date: Fri, 18 Nov 2011 16:24:56 +0000
Thread-Topic: [Xen-API] xen-api-libs unit tests
Thread-Index: AcyleUqjrm5Z66GuTua4nCmH4Oh1jAAk6tFQ
Message-ID: <81A73678E76EA642801C8F2E4823AD21BC34A44BAC@LONPMAILBOX01.citrite.net>
References: <81A73678E76EA642801C8F2E4823AD21BC34A44BA6@LONPMAILBOX01.citrite.net>
	<CAFQn-3-vPLr4Rp+TbXtwFoT2Su7-mieH7FgKDZoE_OWesdDGDA@mail.gmail.com>
In-Reply-To: <CAFQn-3-vPLr4Rp+TbXtwFoT2Su7-mieH7FgKDZoE_OWesdDGDA@mail.gmail.com>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
acceptlanguage: en-US
MIME-Version: 1.0
Cc: xen-api <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] xen-api-libs unit tests
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: base64
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

SGkgU2VyZ2VpLA0KDQo+IDEuIEhhdmUgeW91IGNvbnNpZGVyZWQgc3dpdGNoaW5nIChhdCBsZWFz
dCBwYXJ0bHkpIHRvIHByb3BlcnR5IGJhc2VkIHRlc3RpbmcgWypdLA0KPiAgd2hpY2ggd29ya3Mg
bmljZWx5IGZvciBwdXJlIGZ1bmN0aW9ucyAoZm9yIGV4YW1wbGUgbW9zdCBvZiB0aGUgc3R1ZmYg
ZnJvbSBgc3RkZXh0YA0KPiAgY2FuIGJlwqBjb3ZlcmVkwqBpbiBubyB0aW1lKS4NCg0KWWVzLCBJ
IHRoaW5rIHByb3BlcnR5IGJhc2VkIHRlc3Rpbmcgd291bGQgYmUgZ3JlYXQuIFNpbmNlIHdlIHVz
ZSB0eXBlLWNvbnYgKHZpYSBycGMtbGlnaHQpDQp0byBnZW5lcmF0ZSBtYXJzaGFsbGluZyBjb2Rl
IGZyb20gb2NhbWwgdHlwZXMsIHBlcmhhcHMgd2UgY291bGQgYWxzbyB1c2UgaXQgdG8gZ2VuZXJh
dGUNCnN0cmVhbXMgb2YgcmFuZG9tIHZhbHVlcywgd2hpY2ggd2UgY291bGQgcnVuIHRocm91Z2gg
YSBwcm9wZXJ0eS1jaGVja2VyLiBUaGF0IHdvdWxkDQpjdXQgZG93biBvbiB0aGUgcmVxdWlyZWQg
Ym9pbGVycGxhdGUuDQoNCj4gMi4gVGhpcyBpcyBhIGJpdCB1bnJlbGF0ZWQsIGJ1dCBhbnl3YXkg
LS0gd2h5IGRvbid0IHlvdSB1c2UgRXh0TGliIG9yIEJhdHRlcmllcywNCj4gaW5zdGVhZCBvZiBg
c3RkZXh0YD8gT2J2aW91c2x5LCB0aGUgZ29hbCBpcyB0aGUgc2FtZSBmb3IgYWxsIHRocmVlIG9m
IHRoZXNlIGxpYnJhcmllcy4NCj4gQW5kIGl0IHdvdWxkIGJlIHJlYWxseSBuaWNlIHRvIHNlZSBC
YXR0ZXJpZXMgb3IgRXh0TGliIGluIGEgcHJvamVjdCBhcyBiaWcgYXMgWGVuQVBJLg0KDQo6LSkg
SSBhbHNvIGFncmVlIHRoYXQgd2Ugc2hvdWxkIHByb2JhYmx5IHN0YW5kYXJkaXplIG9uIHNvbWUg
b3RoZXIgbGlicmFyeS4gJ3N0ZGV4dCcNCmlzIHJlYWxseSBhIGJpZyBiYWcgb2YgZnVuY3Rpb25z
IHdoaWNoIGxhY2tzIGEgY2xlYW4gaW50ZXJmYWNlIC8gbmljZSB1c2FnZSBjb252ZW50aW9uLg0K
SSd2ZSBub3QgaGFkIHRoZSBjaGFuY2UgdG8gdXNlIEV4dExpYiBvciBCYXR0ZXJpZXMuIEkgZGlk
IGF0dGVuZCBZYXJvbiBNaW5za3kncyB0dXRvcmlhbA0KYXQgQ1VGUCBvbiBKYW5lIFN0cmVldCdz
IENvcmUgQXN5bmMgbGlicmFyeSB3aGljaCBzZWVtZWQgdmVyeSB3ZWxsIGRlc2lnbmVkIC0tIEkg
dGhpbmsNCkNvcmUgaXMgd29ydGggYSBjbG9zZSBsb29rLg0KDQpDaGVlcnMsDQpEYXZlDQoNCl9f
X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fCnhlbi1hcGkgbWFp
bGluZyBsaXN0Cnhlbi1hcGlAbGlzdHMueGVuc291cmNlLmNvbQpodHRwOi8vbGlzdHMueGVuc291
cmNlLmNvbS9tYWlsbWFuL2xpc3RpbmZvL3hlbi1hcGkK

From xen-api-bounces@lists.xensource.com Fri Nov 18 17:08:39 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Fri, 18 Nov 2011 17:08:39 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RRRvT-0008PS-SC; Fri, 18 Nov 2011 17:08:31 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <sr@swisscenter.com>) id 1RRRvR-0008PN-RB
	for xen-api@lists.xensource.com; Fri, 18 Nov 2011 17:08:30 +0000
X-Env-Sender: sr@swisscenter.com
X-Msg-Ref: server-15.tower-27.messagelabs.com!1321636073!55602133!1
X-Originating-IP: [94.103.96.90]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 27349 invoked from network); 18 Nov 2011 17:07:54 -0000
Received: from mail.swisslink.ch (HELO mail.swisslink.ch) (94.103.96.90)
	by server-15.tower-27.messagelabs.com with DHE-RSA-AES256-SHA encrypted
	SMTP; 18 Nov 2011 17:07:54 -0000
Received: from [10.8.0.10] (gate.swisslink.ch [62.2.195.10])
	(authenticated bits=0)
	by mail.swisslink.ch (8.14.3/8.14.3/Debian-9.4) with ESMTP id
	pAIH80Rr022750
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Fri, 18 Nov 2011 18:08:01 +0100
Message-ID: <4EC690E4.9060403@swisscenter.com>
Date: Fri, 18 Nov 2011 18:07:48 +0100
From: =?UTF-8?B?U8OpYmFzdGllbiBSaWNjaW8=?= <sr@swisscenter.com>
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64;
	rv:8.0) Gecko/20111105 Thunderbird/8.0
MIME-Version: 1.0
To: Corey Hemminger <hemminger@hotmail.com>
References: <201110071906.p97J6Tnc017066@mailgateway>
	<BLU0-SMTP4670685F6A1CE8D9A301076B5FC0@phx.gbl>
	<4EC26327.50801@citrix.com>
	<BLU0-SMTP368BCDFB89AA6F44BD39118B5C10@phx.gbl>
	<4EC351E5.4020907@swisscenter.com>
	<BLU0-SMTP1685F8C872AAFA20FF7095EB5C40@phx.gbl>
In-Reply-To: <BLU0-SMTP1685F8C872AAFA20FF7095EB5C40@phx.gbl>
X-Virus-Scanned: clamav-milter 0.97.2 at mail
X-Virus-Status: Clean
Cc: "<xen-api@lists.xensource.com>" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] XenCenter 6.0 and XCP1.1 RC
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Transfer-Encoding: base64
Content-Type: text/plain; charset="utf-8"; Format="flowed"
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

SGkgQ29yZXksCgpDb29sIGl0IHdvcmtlZC4gVGhhbmtzIGZvciB0aGUgZmVlZGJhY2suCgpTw6li
YXN0aWVuCgpPbiAxOC4xMS4yMDExIDAyOjE4LCBDb3JleSBIZW1taW5nZXIgd3JvdGU6Cj4gWW91
ciByaWdodCBzZWJhc3RpZW4uIEkgZG91YmxlIGNoZWNrZWQgbXkgQVBJIG92ZXJyaWRlIHNldHRp
bmcgYW5kIGl0IHdhcyBzZXQgYXQgNS42LjE5OS4gVGhhdCB3YXMgY2F1c2luZyB0aGUgdm0gY3Jl
YXRpb24gaXNzdWUuIEFkanVzdGVkIGl0IHRvIDUuNi4xMDAgYW5kIGFsbCBpcyB4ZW4gd2l0aCB0
aGUgd29ybGQgYW5kIHhlbmNlbnRlciA2IHdvcmtzIGZpbmUuCj4KPiBDb3JleQo+CgoKX19fX19f
X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18KeGVuLWFwaSBtYWlsaW5n
IGxpc3QKeGVuLWFwaUBsaXN0cy54ZW5zb3VyY2UuY29tCmh0dHA6Ly9saXN0cy54ZW5zb3VyY2Uu
Y29tL21haWxtYW4vbGlzdGluZm8veGVuLWFwaQo=

From xen-api-bounces@lists.xensource.com Fri Nov 18 17:08:39 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Fri, 18 Nov 2011 17:08:39 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RRRvT-0008PS-SC; Fri, 18 Nov 2011 17:08:31 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <sr@swisscenter.com>) id 1RRRvR-0008PN-RB
	for xen-api@lists.xensource.com; Fri, 18 Nov 2011 17:08:30 +0000
X-Env-Sender: sr@swisscenter.com
X-Msg-Ref: server-15.tower-27.messagelabs.com!1321636073!55602133!1
X-Originating-IP: [94.103.96.90]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 27349 invoked from network); 18 Nov 2011 17:07:54 -0000
Received: from mail.swisslink.ch (HELO mail.swisslink.ch) (94.103.96.90)
	by server-15.tower-27.messagelabs.com with DHE-RSA-AES256-SHA encrypted
	SMTP; 18 Nov 2011 17:07:54 -0000
Received: from [10.8.0.10] (gate.swisslink.ch [62.2.195.10])
	(authenticated bits=0)
	by mail.swisslink.ch (8.14.3/8.14.3/Debian-9.4) with ESMTP id
	pAIH80Rr022750
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Fri, 18 Nov 2011 18:08:01 +0100
Message-ID: <4EC690E4.9060403@swisscenter.com>
Date: Fri, 18 Nov 2011 18:07:48 +0100
From: =?UTF-8?B?U8OpYmFzdGllbiBSaWNjaW8=?= <sr@swisscenter.com>
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64;
	rv:8.0) Gecko/20111105 Thunderbird/8.0
MIME-Version: 1.0
To: Corey Hemminger <hemminger@hotmail.com>
References: <201110071906.p97J6Tnc017066@mailgateway>
	<BLU0-SMTP4670685F6A1CE8D9A301076B5FC0@phx.gbl>
	<4EC26327.50801@citrix.com>
	<BLU0-SMTP368BCDFB89AA6F44BD39118B5C10@phx.gbl>
	<4EC351E5.4020907@swisscenter.com>
	<BLU0-SMTP1685F8C872AAFA20FF7095EB5C40@phx.gbl>
In-Reply-To: <BLU0-SMTP1685F8C872AAFA20FF7095EB5C40@phx.gbl>
X-Virus-Scanned: clamav-milter 0.97.2 at mail
X-Virus-Status: Clean
Cc: "<xen-api@lists.xensource.com>" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] XenCenter 6.0 and XCP1.1 RC
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Transfer-Encoding: base64
Content-Type: text/plain; charset="utf-8"; Format="flowed"
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

SGkgQ29yZXksCgpDb29sIGl0IHdvcmtlZC4gVGhhbmtzIGZvciB0aGUgZmVlZGJhY2suCgpTw6li
YXN0aWVuCgpPbiAxOC4xMS4yMDExIDAyOjE4LCBDb3JleSBIZW1taW5nZXIgd3JvdGU6Cj4gWW91
ciByaWdodCBzZWJhc3RpZW4uIEkgZG91YmxlIGNoZWNrZWQgbXkgQVBJIG92ZXJyaWRlIHNldHRp
bmcgYW5kIGl0IHdhcyBzZXQgYXQgNS42LjE5OS4gVGhhdCB3YXMgY2F1c2luZyB0aGUgdm0gY3Jl
YXRpb24gaXNzdWUuIEFkanVzdGVkIGl0IHRvIDUuNi4xMDAgYW5kIGFsbCBpcyB4ZW4gd2l0aCB0
aGUgd29ybGQgYW5kIHhlbmNlbnRlciA2IHdvcmtzIGZpbmUuCj4KPiBDb3JleQo+CgoKX19fX19f
X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18KeGVuLWFwaSBtYWlsaW5n
IGxpc3QKeGVuLWFwaUBsaXN0cy54ZW5zb3VyY2UuY29tCmh0dHA6Ly9saXN0cy54ZW5zb3VyY2Uu
Y29tL21haWxtYW4vbGlzdGluZm8veGVuLWFwaQo=

From xen-api-bounces@lists.xensource.com Tue Nov 22 15:28:14 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 22 Nov 2011 15:28:14 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RSsGS-0007Cb-Oz; Tue, 22 Nov 2011 15:28:04 +0000
Received: from mail216.messagelabs.com ([85.158.143.99])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <Ian.Jackson@eu.citrix.com>) id 1RSsGR-0007CA-TS
	for xen-api@lists.xensource.com; Tue, 22 Nov 2011 15:28:04 +0000
X-Env-Sender: Ian.Jackson@eu.citrix.com
X-Msg-Ref: server-9.tower-216.messagelabs.com!1321975655!4560457!1
X-Originating-IP: [62.200.22.115]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 1554 invoked from network); 22 Nov 2011 15:27:35 -0000
Received: from smtp.eu.citrix.com (HELO SMTP.EU.CITRIX.COM) (62.200.22.115)
	by server-9.tower-216.messagelabs.com with RC4-SHA encrypted SMTP;
	22 Nov 2011 15:27:35 -0000
X-IronPort-AV: E=Sophos;i="4.69,553,1315180800"; 
   d="scan'208";a="9068353"
Received: from lonpmailmx01.citrite.net ([10.30.203.162])
	by LONPIPO01.EU.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	22 Nov 2011 15:27:35 +0000
Received: from norwich.cam.xci-test.com (10.80.248.129) by
	smtprelay.citrix.com (10.30.203.162) with Microsoft SMTP Server id
	8.3.213.0; Tue, 22 Nov 2011 15:27:35 +0000
Received: from mariner.cam.xci-test.com	([10.80.2.22]
	helo=mariner.uk.xensource.com ident=Debian-exim)	by
	norwich.cam.xci-test.com
	with esmtp (Exim 4.72)	(envelope-from <Ian.Jackson@eu.citrix.com>)	id
	1RSsFy-00055i-PD	for xen-api@lists.xensource.com;
	Tue, 22 Nov 2011 15:27:34 +0000
Received: from iwj by mariner.uk.xensource.com with local (Exim 4.72)
	(envelope-from <Ian.Jackson@eu.citrix.com>)	id 1RSsFy-00028R-Ob	for
	xen-api@lists.xensource.com; Tue, 22 Nov 2011 15:27:34 +0000
From: Ian Jackson <Ian.Jackson@eu.citrix.com>
Message-ID: <20171.48998.751926.487224@mariner.uk.xensource.com>
Date: Tue, 22 Nov 2011 15:27:34 +0000
MIME-Version: 1.0
To: xen-api@lists.xensource.com
X-Mailer: VM 8.1.0 under 23.2.1 (i486-pc-linux-gnu)
Subject: [Xen-API] Temporary list outage, sorry
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

I made an ill-advised change to the mta configuration on
lists.xen.org.  If you got messages like:

 50.57.142.19 does not like recipient.
 Remote host said: 550 Unrouteable address

This should now be fixed.

Sorry,
Ian.

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Tue Nov 22 15:28:14 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 22 Nov 2011 15:28:14 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RSsGS-0007Cb-Oz; Tue, 22 Nov 2011 15:28:04 +0000
Received: from mail216.messagelabs.com ([85.158.143.99])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <Ian.Jackson@eu.citrix.com>) id 1RSsGR-0007CA-TS
	for xen-api@lists.xensource.com; Tue, 22 Nov 2011 15:28:04 +0000
X-Env-Sender: Ian.Jackson@eu.citrix.com
X-Msg-Ref: server-9.tower-216.messagelabs.com!1321975655!4560457!1
X-Originating-IP: [62.200.22.115]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 1554 invoked from network); 22 Nov 2011 15:27:35 -0000
Received: from smtp.eu.citrix.com (HELO SMTP.EU.CITRIX.COM) (62.200.22.115)
	by server-9.tower-216.messagelabs.com with RC4-SHA encrypted SMTP;
	22 Nov 2011 15:27:35 -0000
X-IronPort-AV: E=Sophos;i="4.69,553,1315180800"; 
   d="scan'208";a="9068353"
Received: from lonpmailmx01.citrite.net ([10.30.203.162])
	by LONPIPO01.EU.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	22 Nov 2011 15:27:35 +0000
Received: from norwich.cam.xci-test.com (10.80.248.129) by
	smtprelay.citrix.com (10.30.203.162) with Microsoft SMTP Server id
	8.3.213.0; Tue, 22 Nov 2011 15:27:35 +0000
Received: from mariner.cam.xci-test.com	([10.80.2.22]
	helo=mariner.uk.xensource.com ident=Debian-exim)	by
	norwich.cam.xci-test.com
	with esmtp (Exim 4.72)	(envelope-from <Ian.Jackson@eu.citrix.com>)	id
	1RSsFy-00055i-PD	for xen-api@lists.xensource.com;
	Tue, 22 Nov 2011 15:27:34 +0000
Received: from iwj by mariner.uk.xensource.com with local (Exim 4.72)
	(envelope-from <Ian.Jackson@eu.citrix.com>)	id 1RSsFy-00028R-Ob	for
	xen-api@lists.xensource.com; Tue, 22 Nov 2011 15:27:34 +0000
From: Ian Jackson <Ian.Jackson@eu.citrix.com>
Message-ID: <20171.48998.751926.487224@mariner.uk.xensource.com>
Date: Tue, 22 Nov 2011 15:27:34 +0000
MIME-Version: 1.0
To: xen-api@lists.xensource.com
X-Mailer: VM 8.1.0 under 23.2.1 (i486-pc-linux-gnu)
Subject: [Xen-API] Temporary list outage, sorry
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

I made an ill-advised change to the mta configuration on
lists.xen.org.  If you got messages like:

 50.57.142.19 does not like recipient.
 Remote host said: 550 Unrouteable address

This should now be fixed.

Sorry,
Ian.

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Wed Nov 23 15:50:37 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 23 Nov 2011 15:50:37 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTF5i-0002Zv-In; Wed, 23 Nov 2011 15:50:30 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <lars.kurth.xen@gmail.com>)
	id 1RTF5g-0002Yt-V8; Wed, 23 Nov 2011 15:50:29 +0000
X-Env-Sender: lars.kurth.xen@gmail.com
X-Msg-Ref: server-11.tower-27.messagelabs.com!1322063382!46827990!1
X-Originating-IP: [209.85.213.171]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 29096 invoked from network); 23 Nov 2011 15:49:43 -0000
Received: from mail-yx0-f171.google.com (HELO mail-yx0-f171.google.com)
	(209.85.213.171)
	by server-11.tower-27.messagelabs.com with RC4-SHA encrypted SMTP;
	23 Nov 2011 15:49:43 -0000
Received: by yenm6 with SMTP id m6so2301320yen.30
	for <multiple recipients>; Wed, 23 Nov 2011 07:49:57 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=sender:message-id:date:from:user-agent:mime-version:to:subject
	:references:in-reply-to:x-forwarded-message-id:content-type;
	bh=JdXsmRTd708rNRY3nG2qzMkSp1MY0ZdL3KZ+hTrp/uk=;
	b=OgXPSbt4LX8M0P5bYKedKtzo2HKLeaIa5tv/s/HgHltyFRTDbft3NhKJV4usJI+kI9
	EO7+lz/ZXt4kkvkQICdJ5YWzPUXCokPWTbtWRACqgdaFgE7KEJddnthmMTUPtMbYBq5M
	MrVNwPYh8WotChsJEFWAX8LPIwxFdN/245T9M=
Received: by 10.204.131.88 with SMTP id w24mr24729119bks.113.1322063396518;
	Wed, 23 Nov 2011 07:49:56 -0800 (PST)
Received: from [172.16.26.10] (5e0575b0.bb.sky.com. [94.5.117.176])
	by mx.google.com with ESMTPS id h7sm13177907bkw.12.2011.11.23.07.49.53
	(version=SSLv3 cipher=OTHER); Wed, 23 Nov 2011 07:49:54 -0800 (PST)
Message-ID: <4ECD160B.9060104@xen.org>
Date: Wed, 23 Nov 2011 15:49:31 +0000
From: Lars Kurth <lars.kurth@xen.org>
User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:8.0) Gecko/20111105 Thunderbird/8.0
MIME-Version: 1.0
To: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>, 
	"xen-users@lists.xensource.com" <xen-users@lists.xensource.com>,
	"xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
References: <4ECCF9B9.9050102@openstack.org>
In-Reply-To: <4ECCF9B9.9050102@openstack.org>
X-Forwarded-Message-Id: <4ECCF9B9.9050102@openstack.org>
Subject: [Xen-API] FOSDEM 2012: Open source Virtualization and Cloud
 devroom: Call for speakers
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: multipart/mixed; boundary="===============0477317146558829800=="
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

This is a multi-part message in MIME format.
--===============0477317146558829800==
Content-Type: multipart/alternative;
 boundary="------------090100020209090705040302"

This is a multi-part message in MIME format.
--------------090100020209090705040302
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

Hi everybody,
due to the space that FOSDEM gave us, which is a large auditorium where 
it is not possible to change the layout and work in small groups, we had 
to go for a slightly more formal set-up for the devroom. See the 
attached CFP for more info.
Regards
Lars

-------- Original Message --------
Subject: 	FOSDEM 2012: Open source Virtualization and Cloud devroom: 
Call for speakers
Date: 	Wed, 23 Nov 2011 14:48:41 +0100
From: 	Thierry Carrez <thierry@openstack.org>
Organisation: 	OpenStack
To: 	fosdem@lists.fosdem.org
CC: 	Renzo Davoli <renzo@cs.unibo.it>, Lars Kurth <lars.kurth@xen.org>, 
"openstack@lists.launchpad.net" <openstack@lists.launchpad.net>, 
devrooms@fosdem.org



Hello everyone,

The devroom named "Open Source Virtualization and Cloud" (OSVC2012)
scheduled at FOSDEM on both days, February 4-5 2012, is a meeting
opportunity for the developers of all the innovative open source
projects around virtualization and cloud computing.

OSVC2012 will include:

* state-of-the-art presentations of virtualization/cloud projects
* workshops to brainstorm and discuss new user requests, new developer
ideas, and the possible synergies between projects

All information about the devroom will be posted on the wiki at:
http://osvc.v2.cs.unibo.it


Relevant topics
===============

All developers who want to present their ideas and software at OSVC2012
are welcome, provided that:

* Their project is related to virtualization or cloud computing

* They join the devroom as developers. Developers working for companies,
public/private agencies or universities speak for themselves and not for
their employer. OSVC2012 is about how to develop more effective
virtualizing/cloud solutions (ideas and code, not marketing)

* The code for their project must have been released under a free
software or open source license (its license must meet the FSF
definition of Free Software or the OSI definition of Open Source)


Call for Presentations and Workshops
====================================

All submissions must be sent to osvc@cs.unibo.it and include the
following information:

* Type of submission: Presentation or Workshop
* Desired length: "20min presentation + 5min Q&A", "45min presentation +
10min Q&A", or "no preference"
* Title
* Abstract / Description
* Speaker / Moderator bio
* Comments: scheduling constraints, remarks...
* Links to the project (including its source code)
* Related projects

Dates:
* Deadline for submission: December 18, 2011
* Notification of accepted submissions: January 5, 2012

-- 
Thierry Carrez
Renzo Davoli
Lars Kurth


--------------090100020209090705040302
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Hi everybody,<br>
    due to the space that FOSDEM gave us, which is a large auditorium
    where it is not possible to change the layout and work in small
    groups, we had to go for a slightly more formal set-up for the
    devroom. See the attached CFP for more info.<br>
    Regards<br>
    Lars<br>
    <br>
    -------- Original Message --------
    <table class="moz-email-headers-table" border="0" cellpadding="0"
      cellspacing="0">
      <tbody>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">Subject: </th>
          <td>FOSDEM 2012: Open source Virtualization and Cloud devroom:
            Call for speakers</td>
        </tr>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">Date: </th>
          <td>Wed, 23 Nov 2011 14:48:41 +0100</td>
        </tr>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">From: </th>
          <td>Thierry Carrez <a class="moz-txt-link-rfc2396E" href="mailto:thierry@openstack.org">&lt;thierry@openstack.org&gt;</a></td>
        </tr>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">Organisation:
          </th>
          <td>OpenStack</td>
        </tr>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">To: </th>
          <td><a class="moz-txt-link-abbreviated" href="mailto:fosdem@lists.fosdem.org">fosdem@lists.fosdem.org</a></td>
        </tr>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">CC: </th>
          <td>Renzo Davoli <a class="moz-txt-link-rfc2396E" href="mailto:renzo@cs.unibo.it">&lt;renzo@cs.unibo.it&gt;</a>, Lars Kurth
            <a class="moz-txt-link-rfc2396E" href="mailto:lars.kurth@xen.org">&lt;lars.kurth@xen.org&gt;</a>, <a class="moz-txt-link-rfc2396E" href="mailto:openstack@lists.launchpad.net">"openstack@lists.launchpad.net"</a>
            <a class="moz-txt-link-rfc2396E" href="mailto:openstack@lists.launchpad.net">&lt;openstack@lists.launchpad.net&gt;</a>, <a class="moz-txt-link-abbreviated" href="mailto:devrooms@fosdem.org">devrooms@fosdem.org</a></td>
        </tr>
      </tbody>
    </table>
    <br>
    <br>
    <pre>Hello everyone,

The devroom named "Open Source Virtualization and Cloud" (OSVC2012)
scheduled at FOSDEM on both days, February 4-5 2012, is a meeting
opportunity for the developers of all the innovative open source
projects around virtualization and cloud computing.

OSVC2012 will include:

* state-of-the-art presentations of virtualization/cloud projects
* workshops to brainstorm and discuss new user requests, new developer
ideas, and the possible synergies between projects

All information about the devroom will be posted on the wiki at:
<a class="moz-txt-link-freetext" href="http://osvc.v2.cs.unibo.it">http://osvc.v2.cs.unibo.it</a>


Relevant topics
===============

All developers who want to present their ideas and software at OSVC2012
are welcome, provided that:

* Their project is related to virtualization or cloud computing

* They join the devroom as developers. Developers working for companies,
public/private agencies or universities speak for themselves and not for
their employer. OSVC2012 is about how to develop more effective
virtualizing/cloud solutions (ideas and code, not marketing)

* The code for their project must have been released under a free
software or open source license (its license must meet the FSF
definition of Free Software or the OSI definition of Open Source)


Call for Presentations and Workshops
====================================

All submissions must be sent to <a class="moz-txt-link-abbreviated" href="mailto:osvc@cs.unibo.it">osvc@cs.unibo.it</a> and include the
following information:

* Type of submission: Presentation or Workshop
* Desired length: "20min presentation + 5min Q&amp;A", "45min presentation +
10min Q&amp;A", or "no preference"
* Title
* Abstract / Description
* Speaker / Moderator bio
* Comments: scheduling constraints, remarks...
* Links to the project (including its source code)
* Related projects

Dates:
* Deadline for submission: December 18, 2011
* Notification of accepted submissions: January 5, 2012

-- 
Thierry Carrez
Renzo Davoli
Lars Kurth
</pre>
  </body>
</html>

--------------090100020209090705040302--


--===============0477317146558829800==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

--===============0477317146558829800==--


From xen-api-bounces@lists.xensource.com Wed Nov 23 15:50:37 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 23 Nov 2011 15:50:37 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTF5i-0002Zv-In; Wed, 23 Nov 2011 15:50:30 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <lars.kurth.xen@gmail.com>)
	id 1RTF5g-0002Yt-V8; Wed, 23 Nov 2011 15:50:29 +0000
X-Env-Sender: lars.kurth.xen@gmail.com
X-Msg-Ref: server-11.tower-27.messagelabs.com!1322063382!46827990!1
X-Originating-IP: [209.85.213.171]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 29096 invoked from network); 23 Nov 2011 15:49:43 -0000
Received: from mail-yx0-f171.google.com (HELO mail-yx0-f171.google.com)
	(209.85.213.171)
	by server-11.tower-27.messagelabs.com with RC4-SHA encrypted SMTP;
	23 Nov 2011 15:49:43 -0000
Received: by yenm6 with SMTP id m6so2301320yen.30
	for <multiple recipients>; Wed, 23 Nov 2011 07:49:57 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=sender:message-id:date:from:user-agent:mime-version:to:subject
	:references:in-reply-to:x-forwarded-message-id:content-type;
	bh=JdXsmRTd708rNRY3nG2qzMkSp1MY0ZdL3KZ+hTrp/uk=;
	b=OgXPSbt4LX8M0P5bYKedKtzo2HKLeaIa5tv/s/HgHltyFRTDbft3NhKJV4usJI+kI9
	EO7+lz/ZXt4kkvkQICdJ5YWzPUXCokPWTbtWRACqgdaFgE7KEJddnthmMTUPtMbYBq5M
	MrVNwPYh8WotChsJEFWAX8LPIwxFdN/245T9M=
Received: by 10.204.131.88 with SMTP id w24mr24729119bks.113.1322063396518;
	Wed, 23 Nov 2011 07:49:56 -0800 (PST)
Received: from [172.16.26.10] (5e0575b0.bb.sky.com. [94.5.117.176])
	by mx.google.com with ESMTPS id h7sm13177907bkw.12.2011.11.23.07.49.53
	(version=SSLv3 cipher=OTHER); Wed, 23 Nov 2011 07:49:54 -0800 (PST)
Message-ID: <4ECD160B.9060104@xen.org>
Date: Wed, 23 Nov 2011 15:49:31 +0000
From: Lars Kurth <lars.kurth@xen.org>
User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:8.0) Gecko/20111105 Thunderbird/8.0
MIME-Version: 1.0
To: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>, 
	"xen-users@lists.xensource.com" <xen-users@lists.xensource.com>,
	"xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
References: <4ECCF9B9.9050102@openstack.org>
In-Reply-To: <4ECCF9B9.9050102@openstack.org>
X-Forwarded-Message-Id: <4ECCF9B9.9050102@openstack.org>
Subject: [Xen-API] FOSDEM 2012: Open source Virtualization and Cloud
 devroom: Call for speakers
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: multipart/mixed; boundary="===============0477317146558829800=="
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

This is a multi-part message in MIME format.
--===============0477317146558829800==
Content-Type: multipart/alternative;
 boundary="------------090100020209090705040302"

This is a multi-part message in MIME format.
--------------090100020209090705040302
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

Hi everybody,
due to the space that FOSDEM gave us, which is a large auditorium where 
it is not possible to change the layout and work in small groups, we had 
to go for a slightly more formal set-up for the devroom. See the 
attached CFP for more info.
Regards
Lars

-------- Original Message --------
Subject: 	FOSDEM 2012: Open source Virtualization and Cloud devroom: 
Call for speakers
Date: 	Wed, 23 Nov 2011 14:48:41 +0100
From: 	Thierry Carrez <thierry@openstack.org>
Organisation: 	OpenStack
To: 	fosdem@lists.fosdem.org
CC: 	Renzo Davoli <renzo@cs.unibo.it>, Lars Kurth <lars.kurth@xen.org>, 
"openstack@lists.launchpad.net" <openstack@lists.launchpad.net>, 
devrooms@fosdem.org



Hello everyone,

The devroom named "Open Source Virtualization and Cloud" (OSVC2012)
scheduled at FOSDEM on both days, February 4-5 2012, is a meeting
opportunity for the developers of all the innovative open source
projects around virtualization and cloud computing.

OSVC2012 will include:

* state-of-the-art presentations of virtualization/cloud projects
* workshops to brainstorm and discuss new user requests, new developer
ideas, and the possible synergies between projects

All information about the devroom will be posted on the wiki at:
http://osvc.v2.cs.unibo.it


Relevant topics
===============

All developers who want to present their ideas and software at OSVC2012
are welcome, provided that:

* Their project is related to virtualization or cloud computing

* They join the devroom as developers. Developers working for companies,
public/private agencies or universities speak for themselves and not for
their employer. OSVC2012 is about how to develop more effective
virtualizing/cloud solutions (ideas and code, not marketing)

* The code for their project must have been released under a free
software or open source license (its license must meet the FSF
definition of Free Software or the OSI definition of Open Source)


Call for Presentations and Workshops
====================================

All submissions must be sent to osvc@cs.unibo.it and include the
following information:

* Type of submission: Presentation or Workshop
* Desired length: "20min presentation + 5min Q&A", "45min presentation +
10min Q&A", or "no preference"
* Title
* Abstract / Description
* Speaker / Moderator bio
* Comments: scheduling constraints, remarks...
* Links to the project (including its source code)
* Related projects

Dates:
* Deadline for submission: December 18, 2011
* Notification of accepted submissions: January 5, 2012

-- 
Thierry Carrez
Renzo Davoli
Lars Kurth


--------------090100020209090705040302
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Hi everybody,<br>
    due to the space that FOSDEM gave us, which is a large auditorium
    where it is not possible to change the layout and work in small
    groups, we had to go for a slightly more formal set-up for the
    devroom. See the attached CFP for more info.<br>
    Regards<br>
    Lars<br>
    <br>
    -------- Original Message --------
    <table class="moz-email-headers-table" border="0" cellpadding="0"
      cellspacing="0">
      <tbody>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">Subject: </th>
          <td>FOSDEM 2012: Open source Virtualization and Cloud devroom:
            Call for speakers</td>
        </tr>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">Date: </th>
          <td>Wed, 23 Nov 2011 14:48:41 +0100</td>
        </tr>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">From: </th>
          <td>Thierry Carrez <a class="moz-txt-link-rfc2396E" href="mailto:thierry@openstack.org">&lt;thierry@openstack.org&gt;</a></td>
        </tr>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">Organisation:
          </th>
          <td>OpenStack</td>
        </tr>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">To: </th>
          <td><a class="moz-txt-link-abbreviated" href="mailto:fosdem@lists.fosdem.org">fosdem@lists.fosdem.org</a></td>
        </tr>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">CC: </th>
          <td>Renzo Davoli <a class="moz-txt-link-rfc2396E" href="mailto:renzo@cs.unibo.it">&lt;renzo@cs.unibo.it&gt;</a>, Lars Kurth
            <a class="moz-txt-link-rfc2396E" href="mailto:lars.kurth@xen.org">&lt;lars.kurth@xen.org&gt;</a>, <a class="moz-txt-link-rfc2396E" href="mailto:openstack@lists.launchpad.net">"openstack@lists.launchpad.net"</a>
            <a class="moz-txt-link-rfc2396E" href="mailto:openstack@lists.launchpad.net">&lt;openstack@lists.launchpad.net&gt;</a>, <a class="moz-txt-link-abbreviated" href="mailto:devrooms@fosdem.org">devrooms@fosdem.org</a></td>
        </tr>
      </tbody>
    </table>
    <br>
    <br>
    <pre>Hello everyone,

The devroom named "Open Source Virtualization and Cloud" (OSVC2012)
scheduled at FOSDEM on both days, February 4-5 2012, is a meeting
opportunity for the developers of all the innovative open source
projects around virtualization and cloud computing.

OSVC2012 will include:

* state-of-the-art presentations of virtualization/cloud projects
* workshops to brainstorm and discuss new user requests, new developer
ideas, and the possible synergies between projects

All information about the devroom will be posted on the wiki at:
<a class="moz-txt-link-freetext" href="http://osvc.v2.cs.unibo.it">http://osvc.v2.cs.unibo.it</a>


Relevant topics
===============

All developers who want to present their ideas and software at OSVC2012
are welcome, provided that:

* Their project is related to virtualization or cloud computing

* They join the devroom as developers. Developers working for companies,
public/private agencies or universities speak for themselves and not for
their employer. OSVC2012 is about how to develop more effective
virtualizing/cloud solutions (ideas and code, not marketing)

* The code for their project must have been released under a free
software or open source license (its license must meet the FSF
definition of Free Software or the OSI definition of Open Source)


Call for Presentations and Workshops
====================================

All submissions must be sent to <a class="moz-txt-link-abbreviated" href="mailto:osvc@cs.unibo.it">osvc@cs.unibo.it</a> and include the
following information:

* Type of submission: Presentation or Workshop
* Desired length: "20min presentation + 5min Q&amp;A", "45min presentation +
10min Q&amp;A", or "no preference"
* Title
* Abstract / Description
* Speaker / Moderator bio
* Comments: scheduling constraints, remarks...
* Links to the project (including its source code)
* Related projects

Dates:
* Deadline for submission: December 18, 2011
* Notification of accepted submissions: January 5, 2012

-- 
Thierry Carrez
Renzo Davoli
Lars Kurth
</pre>
  </body>
</html>

--------------090100020209090705040302--


--===============0477317146558829800==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

--===============0477317146558829800==--


From xen-api-bounces@lists.xensource.com Wed Nov 23 18:16:37 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 23 Nov 2011 18:16:37 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTHMz-0002KI-LD; Wed, 23 Nov 2011 18:16:29 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <todd.deshane.xen@gmail.com>) id 1RTHMy-0002KD-2N
	for xen-api@lists.xensource.com; Wed, 23 Nov 2011 18:16:28 +0000
X-Env-Sender: todd.deshane.xen@gmail.com
X-Msg-Ref: server-8.tower-27.messagelabs.com!1322072057!53409418!1
X-Originating-IP: [209.85.160.171]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 22324 invoked from network); 23 Nov 2011 18:14:18 -0000
Received: from mail-gy0-f171.google.com (HELO mail-gy0-f171.google.com)
	(209.85.160.171)
	by server-8.tower-27.messagelabs.com with RC4-SHA encrypted SMTP;
	23 Nov 2011 18:14:18 -0000
Received: by ghbz2 with SMTP id z2so2456134ghb.30
	for <xen-api@lists.xensource.com>; Wed, 23 Nov 2011 10:16:01 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=mime-version:sender:from:date:x-google-sender-auth:message-id
	:subject:to:cc:content-type;
	bh=DD5eSyP6rdAKweCxH9zo/8Hx0NjVAClMiTcLXxRMsbo=;
	b=RPiuvhGcU2HXckAeFMaSHC+6sXFakaZiAVLOJssOPCiIf+mn+jJa58jBP600nV9/7V
	pLm9bEa3NtGVU/OpuDv+vNmnJCSWMfEEVjn+ecpeYVdX9PSTkQknrHdAWLSKCupIT40a
	fGeDHTiDr9KDJHg8Ofy1PRM8s0BZEPaIHhwfY=
Received: by 10.50.185.138 with SMTP id fc10mr28481216igc.33.1322072161066;
	Wed, 23 Nov 2011 10:16:01 -0800 (PST)
MIME-Version: 1.0
Received: by 10.42.142.5 with HTTP; Wed, 23 Nov 2011 10:15:40 -0800 (PST)
From: Todd Deshane <todd.deshane@xen.org>
Date: Wed, 23 Nov 2011 13:15:40 -0500
X-Google-Sender-Auth: pPYfzGQVKl702JIQKZoMNVkYXnw
Message-ID: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
To: xen-api@lists.xensource.com
Subject: [Xen-API] OpenStack on Ubuntu Kronos
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Hi All,

I've install Kronos on Ubuntu 11.10 and I'm trying to get the
OpenStack VPX to run on it.

I am using this script:
https://github.com/openstack-dev/devstack/blob/master/tools/xen/build_domU.sh

The domU builds fine (with some help from Jon Ludlam), but when
starting it fails.

When I start it manually with xe vm-start, I get:

The server failed to handle your request, due to an internal error.
The given message may give details useful for debugging the
problem.message: Failure("The ballooning daemon is not running")
Any ideas on what. The xapi log:

[20111123T18:07:15.606Z|debug|st15|1319 UNIX
/var/xapi/xapi|dispatch:VM.start D:528121117fb6|xapi] Rais
ed at pervasiveext.ml:26.22-25 -> pervasiveext.ml:22.2-9
[20111123T18:07:15.606Z|debug|st15|1319 UNIX
/var/xapi/xapi|dispatch:VM.start D:528121117fb6|backtrace]
 Raised at pervasiveext.ml:26.22-25 -> server_helpers.ml:153.10-106 ->
server.ml:7936.19-167 -> server_
helpers.ml:119.4-7
[20111123T18:07:15.606Z|debug|st15|1319 UNIX /var/xapi/xapi||xapi]
Raised at client.ml:6.37-75 -> client.ml:4450.12-80 ->
cli_operations.ml:1833.2-6 -> cli_operations.ml:1842.10-11 ->
cli_operations.ml:1765.14-18 -> cli_operations.ml:1803.12-28 ->
cli_operations.ml:2045.7-418 -> xapi_cli.ml:112.18-56 ->
pervasiveext.ml:22.2-9
[20111123T18:07:15.609Z| info|st15|1319 UNIX
/var/xapi/xapi|session.logout D:2dded24d8b57|xapi] Session.destroy
trackid=3691907f36ae87133305d6b18d101a16
[20111123T18:07:15.611Z|debug|st15|1319 UNIX
/var/xapi/xapi||backtrace] Raised at pervasiveext.ml:26.22-25 ->
xapi_cli.ml:111.2-138 -> xapi_cli.ml:200.7-44 -> xapi_cli.ml:252.4-23
[20111123T18:07:15.611Z|debug|st15|1319 UNIX /var/xapi/xapi||cli]
Xapi_cli.exception_handler: Got exception INTERNAL_ERROR: [
Failure("The ballooning daemon is not running") ]
[20111123T18:07:15.611Z|debug|st15|1319 UNIX /var/xapi/xapi||cli]
Raised at string.ml:150.25-34 -> stringext.ml:108.13-29
[20111123T18:08:28.511Z|debug|st15|18|Starting periodic scheduler
D:091ed1c3fc43|backgroundscheduler] Adding function Logrotate to
queue, start=300.000000, type=Periodic(300.000000)
[20111123T18:08:28.511Z|debug|st15|18|Starting periodic scheduler
D:091ed1c3fc43|backgroundscheduler] Sleeping until next event
(178.717186 seconds)

Any hints?

Thanks,
Todd

-- 
Todd Deshane
http://www.linkedin.com/in/deshantm
http://www.xen.org/community/xenday11.html
http://cloudstack.org/about-cloudstack/cloudstack-events/viewevent/29-build-an-open-source-cloud-day-boston.html

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Wed Nov 23 18:16:37 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 23 Nov 2011 18:16:37 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTHMz-0002KI-LD; Wed, 23 Nov 2011 18:16:29 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <todd.deshane.xen@gmail.com>) id 1RTHMy-0002KD-2N
	for xen-api@lists.xensource.com; Wed, 23 Nov 2011 18:16:28 +0000
X-Env-Sender: todd.deshane.xen@gmail.com
X-Msg-Ref: server-8.tower-27.messagelabs.com!1322072057!53409418!1
X-Originating-IP: [209.85.160.171]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 22324 invoked from network); 23 Nov 2011 18:14:18 -0000
Received: from mail-gy0-f171.google.com (HELO mail-gy0-f171.google.com)
	(209.85.160.171)
	by server-8.tower-27.messagelabs.com with RC4-SHA encrypted SMTP;
	23 Nov 2011 18:14:18 -0000
Received: by ghbz2 with SMTP id z2so2456134ghb.30
	for <xen-api@lists.xensource.com>; Wed, 23 Nov 2011 10:16:01 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=mime-version:sender:from:date:x-google-sender-auth:message-id
	:subject:to:cc:content-type;
	bh=DD5eSyP6rdAKweCxH9zo/8Hx0NjVAClMiTcLXxRMsbo=;
	b=RPiuvhGcU2HXckAeFMaSHC+6sXFakaZiAVLOJssOPCiIf+mn+jJa58jBP600nV9/7V
	pLm9bEa3NtGVU/OpuDv+vNmnJCSWMfEEVjn+ecpeYVdX9PSTkQknrHdAWLSKCupIT40a
	fGeDHTiDr9KDJHg8Ofy1PRM8s0BZEPaIHhwfY=
Received: by 10.50.185.138 with SMTP id fc10mr28481216igc.33.1322072161066;
	Wed, 23 Nov 2011 10:16:01 -0800 (PST)
MIME-Version: 1.0
Received: by 10.42.142.5 with HTTP; Wed, 23 Nov 2011 10:15:40 -0800 (PST)
From: Todd Deshane <todd.deshane@xen.org>
Date: Wed, 23 Nov 2011 13:15:40 -0500
X-Google-Sender-Auth: pPYfzGQVKl702JIQKZoMNVkYXnw
Message-ID: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
To: xen-api@lists.xensource.com
Subject: [Xen-API] OpenStack on Ubuntu Kronos
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Hi All,

I've install Kronos on Ubuntu 11.10 and I'm trying to get the
OpenStack VPX to run on it.

I am using this script:
https://github.com/openstack-dev/devstack/blob/master/tools/xen/build_domU.sh

The domU builds fine (with some help from Jon Ludlam), but when
starting it fails.

When I start it manually with xe vm-start, I get:

The server failed to handle your request, due to an internal error.
The given message may give details useful for debugging the
problem.message: Failure("The ballooning daemon is not running")
Any ideas on what. The xapi log:

[20111123T18:07:15.606Z|debug|st15|1319 UNIX
/var/xapi/xapi|dispatch:VM.start D:528121117fb6|xapi] Rais
ed at pervasiveext.ml:26.22-25 -> pervasiveext.ml:22.2-9
[20111123T18:07:15.606Z|debug|st15|1319 UNIX
/var/xapi/xapi|dispatch:VM.start D:528121117fb6|backtrace]
 Raised at pervasiveext.ml:26.22-25 -> server_helpers.ml:153.10-106 ->
server.ml:7936.19-167 -> server_
helpers.ml:119.4-7
[20111123T18:07:15.606Z|debug|st15|1319 UNIX /var/xapi/xapi||xapi]
Raised at client.ml:6.37-75 -> client.ml:4450.12-80 ->
cli_operations.ml:1833.2-6 -> cli_operations.ml:1842.10-11 ->
cli_operations.ml:1765.14-18 -> cli_operations.ml:1803.12-28 ->
cli_operations.ml:2045.7-418 -> xapi_cli.ml:112.18-56 ->
pervasiveext.ml:22.2-9
[20111123T18:07:15.609Z| info|st15|1319 UNIX
/var/xapi/xapi|session.logout D:2dded24d8b57|xapi] Session.destroy
trackid=3691907f36ae87133305d6b18d101a16
[20111123T18:07:15.611Z|debug|st15|1319 UNIX
/var/xapi/xapi||backtrace] Raised at pervasiveext.ml:26.22-25 ->
xapi_cli.ml:111.2-138 -> xapi_cli.ml:200.7-44 -> xapi_cli.ml:252.4-23
[20111123T18:07:15.611Z|debug|st15|1319 UNIX /var/xapi/xapi||cli]
Xapi_cli.exception_handler: Got exception INTERNAL_ERROR: [
Failure("The ballooning daemon is not running") ]
[20111123T18:07:15.611Z|debug|st15|1319 UNIX /var/xapi/xapi||cli]
Raised at string.ml:150.25-34 -> stringext.ml:108.13-29
[20111123T18:08:28.511Z|debug|st15|18|Starting periodic scheduler
D:091ed1c3fc43|backgroundscheduler] Adding function Logrotate to
queue, start=300.000000, type=Periodic(300.000000)
[20111123T18:08:28.511Z|debug|st15|18|Starting periodic scheduler
D:091ed1c3fc43|backgroundscheduler] Sleeping until next event
(178.717186 seconds)

Any hints?

Thanks,
Todd

-- 
Todd Deshane
http://www.linkedin.com/in/deshantm
http://www.xen.org/community/xenday11.html
http://cloudstack.org/about-cloudstack/cloudstack-events/viewevent/29-build-an-open-source-cloud-day-boston.html

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Wed Nov 23 19:38:01 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 23 Nov 2011 19:38:01 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTIdn-0006Ty-17; Wed, 23 Nov 2011 19:37:55 +0000
Received: from mail216.messagelabs.com ([85.158.143.99])
	by lists.xen.org with smtp (Exim 4.72)
	(envelope-from <jakob@praher.info>) id 1RTIdl-0006TC-8I
	for xen-api@lists.xensource.com; Wed, 23 Nov 2011 19:37:53 +0000
X-Env-Sender: jakob@praher.info
X-Msg-Ref: server-3.tower-216.messagelabs.com!1322077043!4699830!1
X-Originating-IP: [83.164.192.84]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 412 invoked from network); 23 Nov 2011 19:37:23 -0000
Received: from r1.relay.mail.lagis.at (HELO r1.relay.mail.lagis.at)
	(83.164.192.84) by server-3.tower-216.messagelabs.com with SMTP;
	23 Nov 2011 19:37:23 -0000
Received: from mail2.farm.prahersoft.com (unknown [83.164.139.102])
	by reseller.relay.mail.lagis.at (Postfix) with ESMTP id 4490138087
	for <xen-api@lists.xensource.com>; Wed, 23 Nov 2011 20:37:20 +0100 (CET)
Received: from localhost (mail2.farm.prahersoft.com [127.0.0.1])
	by mail2.farm.prahersoft.com (iRedMail) with ESMTP id 49F6356390
	for <xen-api@lists.xensource.com>; Wed, 23 Nov 2011 20:37:16 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=praher.info; h=
	content-transfer-encoding:content-type:in-reply-to:references
	:subject:to:mime-version:user-agent:from:date:message-id
	:x-virus-scanned; s=dkim; t=1322077035; x=1322941035; bh=yR1DT3T
	GUrEYuE/oG2pKwtwq4h3KMxYQ94xmyeAQ0lM=; b=iJMElxIdXJJI6qlblKpfky6
	HN9ghjZPJzwLZ27zWWgagoWviGtzQtZti4te402gd76Nhcj9KSP7moL4/OsGLnw5
	HEKbUaEzBW0naM9NzgPsszJ/H32Fj3ICLtiaeAjG9YacKCo1GS8IjYOdi/VnTRZV
	plzDM6gusUNBeNucY8I0=
X-Virus-Scanned: Debian amavisd-new at xenU_syssrv-mail2
Received: from mail2.farm.prahersoft.com ([127.0.0.1])
	by localhost (mail2.farm.prahersoft.com [127.0.0.1]) (amavisd-new,
	port 10024)
	with ESMTP id Wuwbw9EIzQy9 for <xen-api@lists.xensource.com>;
	Wed, 23 Nov 2011 20:37:15 +0100 (CET)
Received: from Fabasoft-AGs-MacBook-Pro.local (cm56-253-210.liwest.at
	[86.56.253.210])
	by mail2.farm.prahersoft.com (iRedMail) with ESMTPSA id DD97956361
	for <xen-api@lists.xensource.com>; Wed, 23 Nov 2011 20:37:15 +0100 (CET)
Message-ID: <4ECD4B6E.8060407@praher.info>
Date: Wed, 23 Nov 2011 20:37:18 +0100
From: Jakob Praher <jakob@praher.info>
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7;
	rv:8.0) Gecko/20111105 Thunderbird/8.0
MIME-Version: 1.0
To: xen-api@lists.xensource.com
References: <jae8ml$24h$1@dough.gmane.org>
In-Reply-To: <jae8ml$24h$1@dough.gmane.org>
X-Forwarded-Message-Id: <jae8ml$24h$1@dough.gmane.org>
Subject: [Xen-API] Fwd: Issue XCP 1.1: Shared LVM SR - unavailable host
 leaves VDI attached RW (xe vdi-introduce not available)
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Dear list,

We observed the following issue in conjunction w/ XCP 1.1 which is a
_severe_ problem.

Our environment:
- Two XCP 1.1 hosts in the same resource pool
- Shared LVM based storage repository based on DRBD
- VMs running on both systems stored on the shared SR

If suddenly one host dies unexpectedly (e.g. hardware defect, power
issue) the metadata still assumes the VMs that were running on the
unavailable host are in power-state running.

After ensuring the master to be the still available host and manually
resetting the power-state of the VMs running on the unavailable host we
faced the following problem:

 - The VDI state was still readwrite attached allthough the whole host
was unavailable. This also preserved when we made the system to forget
the unavailable host.

 - Even worse "xe vdi-introduce" does not work since it is not supported
by the LVM backend. All other tricks even snapshotting the disk does not
work, since XAPI tries to contact the dead host and this fails.

The problem is that as long the host is down for maintenance the VMs are
in a defective state!

What is the way out of this dilemma?

Best regards,
Jakob

P.S.: I have not only restarted xapi but also the available host.

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Wed Nov 23 19:38:01 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 23 Nov 2011 19:38:01 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTIdn-0006Ty-17; Wed, 23 Nov 2011 19:37:55 +0000
Received: from mail216.messagelabs.com ([85.158.143.99])
	by lists.xen.org with smtp (Exim 4.72)
	(envelope-from <jakob@praher.info>) id 1RTIdl-0006TC-8I
	for xen-api@lists.xensource.com; Wed, 23 Nov 2011 19:37:53 +0000
X-Env-Sender: jakob@praher.info
X-Msg-Ref: server-3.tower-216.messagelabs.com!1322077043!4699830!1
X-Originating-IP: [83.164.192.84]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 412 invoked from network); 23 Nov 2011 19:37:23 -0000
Received: from r1.relay.mail.lagis.at (HELO r1.relay.mail.lagis.at)
	(83.164.192.84) by server-3.tower-216.messagelabs.com with SMTP;
	23 Nov 2011 19:37:23 -0000
Received: from mail2.farm.prahersoft.com (unknown [83.164.139.102])
	by reseller.relay.mail.lagis.at (Postfix) with ESMTP id 4490138087
	for <xen-api@lists.xensource.com>; Wed, 23 Nov 2011 20:37:20 +0100 (CET)
Received: from localhost (mail2.farm.prahersoft.com [127.0.0.1])
	by mail2.farm.prahersoft.com (iRedMail) with ESMTP id 49F6356390
	for <xen-api@lists.xensource.com>; Wed, 23 Nov 2011 20:37:16 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=praher.info; h=
	content-transfer-encoding:content-type:in-reply-to:references
	:subject:to:mime-version:user-agent:from:date:message-id
	:x-virus-scanned; s=dkim; t=1322077035; x=1322941035; bh=yR1DT3T
	GUrEYuE/oG2pKwtwq4h3KMxYQ94xmyeAQ0lM=; b=iJMElxIdXJJI6qlblKpfky6
	HN9ghjZPJzwLZ27zWWgagoWviGtzQtZti4te402gd76Nhcj9KSP7moL4/OsGLnw5
	HEKbUaEzBW0naM9NzgPsszJ/H32Fj3ICLtiaeAjG9YacKCo1GS8IjYOdi/VnTRZV
	plzDM6gusUNBeNucY8I0=
X-Virus-Scanned: Debian amavisd-new at xenU_syssrv-mail2
Received: from mail2.farm.prahersoft.com ([127.0.0.1])
	by localhost (mail2.farm.prahersoft.com [127.0.0.1]) (amavisd-new,
	port 10024)
	with ESMTP id Wuwbw9EIzQy9 for <xen-api@lists.xensource.com>;
	Wed, 23 Nov 2011 20:37:15 +0100 (CET)
Received: from Fabasoft-AGs-MacBook-Pro.local (cm56-253-210.liwest.at
	[86.56.253.210])
	by mail2.farm.prahersoft.com (iRedMail) with ESMTPSA id DD97956361
	for <xen-api@lists.xensource.com>; Wed, 23 Nov 2011 20:37:15 +0100 (CET)
Message-ID: <4ECD4B6E.8060407@praher.info>
Date: Wed, 23 Nov 2011 20:37:18 +0100
From: Jakob Praher <jakob@praher.info>
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7;
	rv:8.0) Gecko/20111105 Thunderbird/8.0
MIME-Version: 1.0
To: xen-api@lists.xensource.com
References: <jae8ml$24h$1@dough.gmane.org>
In-Reply-To: <jae8ml$24h$1@dough.gmane.org>
X-Forwarded-Message-Id: <jae8ml$24h$1@dough.gmane.org>
Subject: [Xen-API] Fwd: Issue XCP 1.1: Shared LVM SR - unavailable host
 leaves VDI attached RW (xe vdi-introduce not available)
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Dear list,

We observed the following issue in conjunction w/ XCP 1.1 which is a
_severe_ problem.

Our environment:
- Two XCP 1.1 hosts in the same resource pool
- Shared LVM based storage repository based on DRBD
- VMs running on both systems stored on the shared SR

If suddenly one host dies unexpectedly (e.g. hardware defect, power
issue) the metadata still assumes the VMs that were running on the
unavailable host are in power-state running.

After ensuring the master to be the still available host and manually
resetting the power-state of the VMs running on the unavailable host we
faced the following problem:

 - The VDI state was still readwrite attached allthough the whole host
was unavailable. This also preserved when we made the system to forget
the unavailable host.

 - Even worse "xe vdi-introduce" does not work since it is not supported
by the LVM backend. All other tricks even snapshotting the disk does not
work, since XAPI tries to contact the dead host and this fails.

The problem is that as long the host is down for maintenance the VMs are
in a defective state!

What is the way out of this dilemma?

Best regards,
Jakob

P.S.: I have not only restarted xapi but also the available host.

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Wed Nov 23 20:01:46 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 23 Nov 2011 20:01:46 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTJ0j-0006y5-Sp; Wed, 23 Nov 2011 20:01:37 +0000
Received: from mail21.messagelabs.com ([85.158.143.35])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <Jonathan.Ludlam@eu.citrix.com>) id 1RTJ0h-0006y0-NO
	for xen-api@lists.xensource.com; Wed, 23 Nov 2011 20:01:35 +0000
X-Env-Sender: Jonathan.Ludlam@eu.citrix.com
X-Msg-Ref: server-11.tower-21.messagelabs.com!1322078465!5471980!1
X-Originating-IP: [62.200.22.115]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 8854 invoked from network); 23 Nov 2011 20:01:05 -0000
Received: from smtp.ctxuk.citrix.com (HELO SMTP.EU.CITRIX.COM) (62.200.22.115)
	by server-11.tower-21.messagelabs.com with RC4-SHA encrypted SMTP;
	23 Nov 2011 20:01:05 -0000
X-IronPort-AV: E=Sophos;i="4.69,561,1315180800"; 
   d="scan'208";a="9099983"
Received: from lonpmailmx01.citrite.net ([10.30.203.162])
	by LONPIPO01.EU.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	23 Nov 2011 20:01:04 +0000
Received: from LONPMAILBOX01.citrite.net ([10.30.224.161]) by
	LONPMAILMX01.citrite.net ([10.30.203.162]) with mapi; Wed, 23 Nov 2011
	20:01:04 +0000
From: Jonathan Ludlam <Jonathan.Ludlam@eu.citrix.com>
To: Todd Deshane <todd.deshane@xen.org>
Date: Wed, 23 Nov 2011 20:03:33 +0000
Thread-Topic: OpenStack on Ubuntu Kronos
Thread-Index: AcyqGqF1C4GKXoZkSBKkfyG1WmNHVA==
Message-ID: <D8E930DC-56A7-4334-B155-8B6F98EEFBDE@eu.citrix.com>
References: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
In-Reply-To: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
acceptlanguage: en-US
MIME-Version: 1.0
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] OpenStack on Ubuntu Kronos
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Start squeezed. I fixed this yesterday - it was an init script ordering problem. Squeezed requires xenstore to be running. 

Jon

Sent from my iPad

On 23 Nov 2011, at 18:16, "Todd Deshane" <todd.deshane@xen.org> wrote:

> Hi All,
> 
> I've install Kronos on Ubuntu 11.10 and I'm trying to get the
> OpenStack VPX to run on it.
> 
> I am using this script:
> https://github.com/openstack-dev/devstack/blob/master/tools/xen/build_domU.sh
> 
> The domU builds fine (with some help from Jon Ludlam), but when
> starting it fails.
> 
> When I start it manually with xe vm-start, I get:
> 
> The server failed to handle your request, due to an internal error.
> The given message may give details useful for debugging the
> problem.message: Failure("The ballooning daemon is not running")
> Any ideas on what. The xapi log:
> 
> [20111123T18:07:15.606Z|debug|st15|1319 UNIX
> /var/xapi/xapi|dispatch:VM.start D:528121117fb6|xapi] Rais
> ed at pervasiveext.ml:26.22-25 -> pervasiveext.ml:22.2-9
> [20111123T18:07:15.606Z|debug|st15|1319 UNIX
> /var/xapi/xapi|dispatch:VM.start D:528121117fb6|backtrace]
> Raised at pervasiveext.ml:26.22-25 -> server_helpers.ml:153.10-106 ->
> server.ml:7936.19-167 -> server_
> helpers.ml:119.4-7
> [20111123T18:07:15.606Z|debug|st15|1319 UNIX /var/xapi/xapi||xapi]
> Raised at client.ml:6.37-75 -> client.ml:4450.12-80 ->
> cli_operations.ml:1833.2-6 -> cli_operations.ml:1842.10-11 ->
> cli_operations.ml:1765.14-18 -> cli_operations.ml:1803.12-28 ->
> cli_operations.ml:2045.7-418 -> xapi_cli.ml:112.18-56 ->
> pervasiveext.ml:22.2-9
> [20111123T18:07:15.609Z| info|st15|1319 UNIX
> /var/xapi/xapi|session.logout D:2dded24d8b57|xapi] Session.destroy
> trackid=3691907f36ae87133305d6b18d101a16
> [20111123T18:07:15.611Z|debug|st15|1319 UNIX
> /var/xapi/xapi||backtrace] Raised at pervasiveext.ml:26.22-25 ->
> xapi_cli.ml:111.2-138 -> xapi_cli.ml:200.7-44 -> xapi_cli.ml:252.4-23
> [20111123T18:07:15.611Z|debug|st15|1319 UNIX /var/xapi/xapi||cli]
> Xapi_cli.exception_handler: Got exception INTERNAL_ERROR: [
> Failure("The ballooning daemon is not running") ]
> [20111123T18:07:15.611Z|debug|st15|1319 UNIX /var/xapi/xapi||cli]
> Raised at string.ml:150.25-34 -> stringext.ml:108.13-29
> [20111123T18:08:28.511Z|debug|st15|18|Starting periodic scheduler
> D:091ed1c3fc43|backgroundscheduler] Adding function Logrotate to
> queue, start=300.000000, type=Periodic(300.000000)
> [20111123T18:08:28.511Z|debug|st15|18|Starting periodic scheduler
> D:091ed1c3fc43|backgroundscheduler] Sleeping until next event
> (178.717186 seconds)
> 
> Any hints?
> 
> Thanks,
> Todd
> 
> -- 
> Todd Deshane
> http://www.linkedin.com/in/deshantm
> http://www.xen.org/community/xenday11.html
> http://cloudstack.org/about-cloudstack/cloudstack-events/viewevent/29-build-an-open-source-cloud-day-boston.html

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Wed Nov 23 20:01:46 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 23 Nov 2011 20:01:46 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTJ0j-0006y5-Sp; Wed, 23 Nov 2011 20:01:37 +0000
Received: from mail21.messagelabs.com ([85.158.143.35])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <Jonathan.Ludlam@eu.citrix.com>) id 1RTJ0h-0006y0-NO
	for xen-api@lists.xensource.com; Wed, 23 Nov 2011 20:01:35 +0000
X-Env-Sender: Jonathan.Ludlam@eu.citrix.com
X-Msg-Ref: server-11.tower-21.messagelabs.com!1322078465!5471980!1
X-Originating-IP: [62.200.22.115]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 8854 invoked from network); 23 Nov 2011 20:01:05 -0000
Received: from smtp.ctxuk.citrix.com (HELO SMTP.EU.CITRIX.COM) (62.200.22.115)
	by server-11.tower-21.messagelabs.com with RC4-SHA encrypted SMTP;
	23 Nov 2011 20:01:05 -0000
X-IronPort-AV: E=Sophos;i="4.69,561,1315180800"; 
   d="scan'208";a="9099983"
Received: from lonpmailmx01.citrite.net ([10.30.203.162])
	by LONPIPO01.EU.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	23 Nov 2011 20:01:04 +0000
Received: from LONPMAILBOX01.citrite.net ([10.30.224.161]) by
	LONPMAILMX01.citrite.net ([10.30.203.162]) with mapi; Wed, 23 Nov 2011
	20:01:04 +0000
From: Jonathan Ludlam <Jonathan.Ludlam@eu.citrix.com>
To: Todd Deshane <todd.deshane@xen.org>
Date: Wed, 23 Nov 2011 20:03:33 +0000
Thread-Topic: OpenStack on Ubuntu Kronos
Thread-Index: AcyqGqF1C4GKXoZkSBKkfyG1WmNHVA==
Message-ID: <D8E930DC-56A7-4334-B155-8B6F98EEFBDE@eu.citrix.com>
References: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
In-Reply-To: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
acceptlanguage: en-US
MIME-Version: 1.0
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] OpenStack on Ubuntu Kronos
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Start squeezed. I fixed this yesterday - it was an init script ordering problem. Squeezed requires xenstore to be running. 

Jon

Sent from my iPad

On 23 Nov 2011, at 18:16, "Todd Deshane" <todd.deshane@xen.org> wrote:

> Hi All,
> 
> I've install Kronos on Ubuntu 11.10 and I'm trying to get the
> OpenStack VPX to run on it.
> 
> I am using this script:
> https://github.com/openstack-dev/devstack/blob/master/tools/xen/build_domU.sh
> 
> The domU builds fine (with some help from Jon Ludlam), but when
> starting it fails.
> 
> When I start it manually with xe vm-start, I get:
> 
> The server failed to handle your request, due to an internal error.
> The given message may give details useful for debugging the
> problem.message: Failure("The ballooning daemon is not running")
> Any ideas on what. The xapi log:
> 
> [20111123T18:07:15.606Z|debug|st15|1319 UNIX
> /var/xapi/xapi|dispatch:VM.start D:528121117fb6|xapi] Rais
> ed at pervasiveext.ml:26.22-25 -> pervasiveext.ml:22.2-9
> [20111123T18:07:15.606Z|debug|st15|1319 UNIX
> /var/xapi/xapi|dispatch:VM.start D:528121117fb6|backtrace]
> Raised at pervasiveext.ml:26.22-25 -> server_helpers.ml:153.10-106 ->
> server.ml:7936.19-167 -> server_
> helpers.ml:119.4-7
> [20111123T18:07:15.606Z|debug|st15|1319 UNIX /var/xapi/xapi||xapi]
> Raised at client.ml:6.37-75 -> client.ml:4450.12-80 ->
> cli_operations.ml:1833.2-6 -> cli_operations.ml:1842.10-11 ->
> cli_operations.ml:1765.14-18 -> cli_operations.ml:1803.12-28 ->
> cli_operations.ml:2045.7-418 -> xapi_cli.ml:112.18-56 ->
> pervasiveext.ml:22.2-9
> [20111123T18:07:15.609Z| info|st15|1319 UNIX
> /var/xapi/xapi|session.logout D:2dded24d8b57|xapi] Session.destroy
> trackid=3691907f36ae87133305d6b18d101a16
> [20111123T18:07:15.611Z|debug|st15|1319 UNIX
> /var/xapi/xapi||backtrace] Raised at pervasiveext.ml:26.22-25 ->
> xapi_cli.ml:111.2-138 -> xapi_cli.ml:200.7-44 -> xapi_cli.ml:252.4-23
> [20111123T18:07:15.611Z|debug|st15|1319 UNIX /var/xapi/xapi||cli]
> Xapi_cli.exception_handler: Got exception INTERNAL_ERROR: [
> Failure("The ballooning daemon is not running") ]
> [20111123T18:07:15.611Z|debug|st15|1319 UNIX /var/xapi/xapi||cli]
> Raised at string.ml:150.25-34 -> stringext.ml:108.13-29
> [20111123T18:08:28.511Z|debug|st15|18|Starting periodic scheduler
> D:091ed1c3fc43|backgroundscheduler] Adding function Logrotate to
> queue, start=300.000000, type=Periodic(300.000000)
> [20111123T18:08:28.511Z|debug|st15|18|Starting periodic scheduler
> D:091ed1c3fc43|backgroundscheduler] Sleeping until next event
> (178.717186 seconds)
> 
> Any hints?
> 
> Thanks,
> Todd
> 
> -- 
> Todd Deshane
> http://www.linkedin.com/in/deshantm
> http://www.xen.org/community/xenday11.html
> http://cloudstack.org/about-cloudstack/cloudstack-events/viewevent/29-build-an-open-source-cloud-day-boston.html

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Wed Nov 23 21:06:11 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 23 Nov 2011 21:06:11 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTK15-000853-HC; Wed, 23 Nov 2011 21:06:03 +0000
Received: from mail174.messagelabs.com ([85.158.138.51])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <Dave.Scott@eu.citrix.com>) id 1RTK13-00084e-PJ
	for xen-api@lists.xensource.com; Wed, 23 Nov 2011 21:06:02 +0000
X-Env-Sender: Dave.Scott@eu.citrix.com
X-Msg-Ref: server-16.tower-174.messagelabs.com!1322082331!2783777!1
X-Originating-IP: [62.200.22.115]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 5364 invoked from network); 23 Nov 2011 21:05:31 -0000
Received: from smtp.ctxuk.citrix.com (HELO SMTP.EU.CITRIX.COM) (62.200.22.115)
	by server-16.tower-174.messagelabs.com with RC4-SHA encrypted SMTP;
	23 Nov 2011 21:05:31 -0000
X-IronPort-AV: E=Sophos;i="4.69,561,1315180800"; 
   d="scan'208";a="9100547"
Received: from lonpmailmx02.citrite.net ([10.30.203.163])
	by LONPIPO01.EU.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	23 Nov 2011 21:05:30 +0000
Received: from LONPMAILBOX01.citrite.net ([10.30.224.161]) by
	LONPMAILMX02.citrite.net ([10.30.203.163]) with mapi; Wed, 23 Nov 2011
	21:05:30 +0000
From: Dave Scott <Dave.Scott@eu.citrix.com>
To: 'Jakob Praher' <jakob@praher.info>, "xen-api@lists.xensource.com"
	<xen-api@lists.xensource.com>
Date: Wed, 23 Nov 2011 21:05:30 +0000
Thread-Topic: [Xen-API] Fwd: Issue XCP 1.1: Shared LVM SR - unavailable host
	leaves VDI attached RW (xe vdi-introduce not available)
Thread-Index: AcyqF5Qpwu4ANpXWR+SsridjlupxwgAC9Etw
Message-ID: <81A73678E76EA642801C8F2E4823AD21C4F901F502@LONPMAILBOX01.citrite.net>
References: <jae8ml$24h$1@dough.gmane.org> <4ECD4B6E.8060407@praher.info>
In-Reply-To: <4ECD4B6E.8060407@praher.info>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
acceptlanguage: en-US
MIME-Version: 1.0
Subject: Re: [Xen-API] Fwd: Issue XCP 1.1: Shared LVM SR - unavailable host
 leaves VDI attached RW (xe vdi-introduce not available)
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Hi,

I believe Jon's advice in this earlier thread is still valid:

http://old-list-archives.xen.org/archives/html/xen-api/2011-02/msg00066.html

FYI in later xapi builds a "xe host-forget" followed by a "service xapi restart" would also fix it.

HTH,
Dave

> -----Original Message-----
> From: xen-api-bounces@lists.xensource.com [mailto:xen-api-
> bounces@lists.xensource.com] On Behalf Of Jakob Praher
> Sent: 23 November 2011 19:37
> To: xen-api@lists.xensource.com
> Subject: [Xen-API] Fwd: Issue XCP 1.1: Shared LVM SR - unavailable host
> leaves VDI attached RW (xe vdi-introduce not available)
> 
> Dear list,
> 
> We observed the following issue in conjunction w/ XCP 1.1 which is a
> _severe_ problem.
> 
> Our environment:
> - Two XCP 1.1 hosts in the same resource pool
> - Shared LVM based storage repository based on DRBD
> - VMs running on both systems stored on the shared SR
> 
> If suddenly one host dies unexpectedly (e.g. hardware defect, power
> issue) the metadata still assumes the VMs that were running on the
> unavailable host are in power-state running.
> 
> After ensuring the master to be the still available host and manually
> resetting the power-state of the VMs running on the unavailable host we
> faced the following problem:
> 
>  - The VDI state was still readwrite attached allthough the whole host
> was unavailable. This also preserved when we made the system to forget
> the unavailable host.
> 
>  - Even worse "xe vdi-introduce" does not work since it is not
> supported
> by the LVM backend. All other tricks even snapshotting the disk does
> not
> work, since XAPI tries to contact the dead host and this fails.
> 
> The problem is that as long the host is down for maintenance the VMs
> are
> in a defective state!
> 
> What is the way out of this dilemma?
> 
> Best regards,
> Jakob
> 
> P.S.: I have not only restarted xapi but also the available host.
> 
> _______________________________________________
> xen-api mailing list
> xen-api@lists.xensource.com
> http://lists.xensource.com/mailman/listinfo/xen-api

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Wed Nov 23 21:06:11 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 23 Nov 2011 21:06:11 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTK15-000853-HC; Wed, 23 Nov 2011 21:06:03 +0000
Received: from mail174.messagelabs.com ([85.158.138.51])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <Dave.Scott@eu.citrix.com>) id 1RTK13-00084e-PJ
	for xen-api@lists.xensource.com; Wed, 23 Nov 2011 21:06:02 +0000
X-Env-Sender: Dave.Scott@eu.citrix.com
X-Msg-Ref: server-16.tower-174.messagelabs.com!1322082331!2783777!1
X-Originating-IP: [62.200.22.115]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 5364 invoked from network); 23 Nov 2011 21:05:31 -0000
Received: from smtp.ctxuk.citrix.com (HELO SMTP.EU.CITRIX.COM) (62.200.22.115)
	by server-16.tower-174.messagelabs.com with RC4-SHA encrypted SMTP;
	23 Nov 2011 21:05:31 -0000
X-IronPort-AV: E=Sophos;i="4.69,561,1315180800"; 
   d="scan'208";a="9100547"
Received: from lonpmailmx02.citrite.net ([10.30.203.163])
	by LONPIPO01.EU.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	23 Nov 2011 21:05:30 +0000
Received: from LONPMAILBOX01.citrite.net ([10.30.224.161]) by
	LONPMAILMX02.citrite.net ([10.30.203.163]) with mapi; Wed, 23 Nov 2011
	21:05:30 +0000
From: Dave Scott <Dave.Scott@eu.citrix.com>
To: 'Jakob Praher' <jakob@praher.info>, "xen-api@lists.xensource.com"
	<xen-api@lists.xensource.com>
Date: Wed, 23 Nov 2011 21:05:30 +0000
Thread-Topic: [Xen-API] Fwd: Issue XCP 1.1: Shared LVM SR - unavailable host
	leaves VDI attached RW (xe vdi-introduce not available)
Thread-Index: AcyqF5Qpwu4ANpXWR+SsridjlupxwgAC9Etw
Message-ID: <81A73678E76EA642801C8F2E4823AD21C4F901F502@LONPMAILBOX01.citrite.net>
References: <jae8ml$24h$1@dough.gmane.org> <4ECD4B6E.8060407@praher.info>
In-Reply-To: <4ECD4B6E.8060407@praher.info>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
acceptlanguage: en-US
MIME-Version: 1.0
Subject: Re: [Xen-API] Fwd: Issue XCP 1.1: Shared LVM SR - unavailable host
 leaves VDI attached RW (xe vdi-introduce not available)
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Hi,

I believe Jon's advice in this earlier thread is still valid:

http://old-list-archives.xen.org/archives/html/xen-api/2011-02/msg00066.html

FYI in later xapi builds a "xe host-forget" followed by a "service xapi restart" would also fix it.

HTH,
Dave

> -----Original Message-----
> From: xen-api-bounces@lists.xensource.com [mailto:xen-api-
> bounces@lists.xensource.com] On Behalf Of Jakob Praher
> Sent: 23 November 2011 19:37
> To: xen-api@lists.xensource.com
> Subject: [Xen-API] Fwd: Issue XCP 1.1: Shared LVM SR - unavailable host
> leaves VDI attached RW (xe vdi-introduce not available)
> 
> Dear list,
> 
> We observed the following issue in conjunction w/ XCP 1.1 which is a
> _severe_ problem.
> 
> Our environment:
> - Two XCP 1.1 hosts in the same resource pool
> - Shared LVM based storage repository based on DRBD
> - VMs running on both systems stored on the shared SR
> 
> If suddenly one host dies unexpectedly (e.g. hardware defect, power
> issue) the metadata still assumes the VMs that were running on the
> unavailable host are in power-state running.
> 
> After ensuring the master to be the still available host and manually
> resetting the power-state of the VMs running on the unavailable host we
> faced the following problem:
> 
>  - The VDI state was still readwrite attached allthough the whole host
> was unavailable. This also preserved when we made the system to forget
> the unavailable host.
> 
>  - Even worse "xe vdi-introduce" does not work since it is not
> supported
> by the LVM backend. All other tricks even snapshotting the disk does
> not
> work, since XAPI tries to contact the dead host and this fails.
> 
> The problem is that as long the host is down for maintenance the VMs
> are
> in a defective state!
> 
> What is the way out of this dilemma?
> 
> Best regards,
> Jakob
> 
> P.S.: I have not only restarted xapi but also the available host.
> 
> _______________________________________________
> xen-api mailing list
> xen-api@lists.xensource.com
> http://lists.xensource.com/mailman/listinfo/xen-api

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Thu Nov 24 01:56:47 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Thu, 24 Nov 2011 01:56:47 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTOYH-0000BM-8a; Thu, 24 Nov 2011 01:56:37 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <todd.deshane.xen@gmail.com>) id 1RTOYF-0000BE-Ar
	for xen-api@lists.xensource.com; Thu, 24 Nov 2011 01:56:35 +0000
X-Env-Sender: todd.deshane.xen@gmail.com
X-Msg-Ref: server-7.tower-27.messagelabs.com!1322099725!58031439!1
X-Originating-IP: [209.85.210.171]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 3234 invoked from network); 24 Nov 2011 01:55:26 -0000
Received: from mail-iy0-f171.google.com (HELO mail-iy0-f171.google.com)
	(209.85.210.171)
	by server-7.tower-27.messagelabs.com with RC4-SHA encrypted SMTP;
	24 Nov 2011 01:55:26 -0000
Received: by iaby12 with SMTP id y12so2850668iab.30
	for <xen-api@lists.xensource.com>; Wed, 23 Nov 2011 17:56:08 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=mime-version:sender:in-reply-to:references:from:date
	:x-google-sender-auth:message-id:subject:to:cc:content-type;
	bh=aq6RPn4D9Q8T2b9tvoUSaHCNTlZnt0QiFteXyzmUZxk=;
	b=bc2/oiE0msgWvkFXtzMDUPIEzcXS9rq3paCKZg9W4xpPS2Lm/9BHsvuB09xEyCeGsp
	gyiSoXHDuYG8VhlV4lb+vTFTqZdDtgiJX+CLCVWLLay88TH3tc6SJKRPRMqITPJ6HEGJ
	jo++k4kxFwDQJ6a3Oo3aQCmwMaoFC0dhSsh7Q=
Received: by 10.50.47.201 with SMTP id f9mr30164710ign.18.1322099768089; Wed,
	23 Nov 2011 17:56:08 -0800 (PST)
MIME-Version: 1.0
Received: by 10.42.142.5 with HTTP; Wed, 23 Nov 2011 17:55:47 -0800 (PST)
In-Reply-To: <D8E930DC-56A7-4334-B155-8B6F98EEFBDE@eu.citrix.com>
References: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
	<D8E930DC-56A7-4334-B155-8B6F98EEFBDE@eu.citrix.com>
From: Todd Deshane <todd.deshane@xen.org>
Date: Wed, 23 Nov 2011 20:55:47 -0500
X-Google-Sender-Auth: JLGjlHSl3LWjueV1tj6ZVTSZKqc
Message-ID: <CAMrPLWLT3uc-MEJNz0qi8U6HshU-P-7OzLgZMi4OLK+3fpEPsg@mail.gmail.com>
To: Jonathan Ludlam <Jonathan.Ludlam@eu.citrix.com>
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] OpenStack on Ubuntu Kronos
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

On Wed, Nov 23, 2011 at 3:03 PM, Jonathan Ludlam
<Jonathan.Ludlam@eu.citrix.com> wrote:
> Start squeezed. I fixed this yesterday - it was an init script ordering problem. Squeezed requires xenstore to be running.

That fixed that error.

Now a new one.

The server failed to handle your request, due to an internal error.
The given message may give details useful for debugging the problem.
message: Xenctrl.Error("3: No such process")

I did check that xenstore is running.

the xapi log:

[20111124T01:51:29.649Z|debug|st15|634 UNIX
/var/xapi/xapi|dispatch:VM.start D:c9f1f04afc03|backtrace] Raised at
pervasiveext.ml:26.22-25 -> server_helpers.ml:153.10-106 ->
server.ml:7936.19-167 -> server_helpers.ml:119.4-7
[20111124T01:51:29.649Z|debug|st15|634 UNIX /var/xapi/xapi||xapi]
Raised at client.ml:6.37-75 -> client.ml:4450.12-80 ->
cli_operations.ml:1833.2-6 -> cli_operations.ml:1842.10-11 ->
cli_operations.ml:1765.14-18 -> cli_operations.ml:1803.12-28 ->
cli_operations.ml:2045.7-418 -> xapi_cli.ml:112.18-56 ->
pervasiveext.ml:22.2-9
[20111124T01:51:29.652Z| info|st15|634 UNIX
/var/xapi/xapi|session.logout D:4d0672adff05|xapi] Session.destroy
trackid=4ceb27430d74cb61bf0755fdd7724ffa
[20111124T01:51:29.653Z|debug|st15|634 UNIX /var/xapi/xapi||backtrace]
Raised at pervasiveext.ml:26.22-25 -> xapi_cli.ml:111.2-138 ->
xapi_cli.ml:200.7-44 -> xapi_cli.ml:252.4-23
[20111124T01:51:29.653Z|debug|st15|634 UNIX /var/xapi/xapi||cli]
Xapi_cli.exception_handler: Got exception INTERNAL_ERROR: [
Xenctrl.Error("3: No such process") ]
[20111124T01:51:29.653Z|debug|st15|634 UNIX /var/xapi/xapi||cli]
Raised at string.ml:150.25-34 -> stringext.ml:108.13-29
[20111124T01:51:51.406Z|debug|st15|13|session_revalidation_func
D:5fb43b505e28|xapi] revalidating all external sessions in the local
host

Thoughts?

Thanks,
Todd

-- 
Todd Deshane
http://www.linkedin.com/in/deshantm
http://www.xen.org/community/xenday11.html
http://cloudstack.org/about-cloudstack/cloudstack-events/viewevent/29-build-an-open-source-cloud-day-boston.html

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Thu Nov 24 01:56:47 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Thu, 24 Nov 2011 01:56:47 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTOYH-0000BM-8a; Thu, 24 Nov 2011 01:56:37 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <todd.deshane.xen@gmail.com>) id 1RTOYF-0000BE-Ar
	for xen-api@lists.xensource.com; Thu, 24 Nov 2011 01:56:35 +0000
X-Env-Sender: todd.deshane.xen@gmail.com
X-Msg-Ref: server-7.tower-27.messagelabs.com!1322099725!58031439!1
X-Originating-IP: [209.85.210.171]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 3234 invoked from network); 24 Nov 2011 01:55:26 -0000
Received: from mail-iy0-f171.google.com (HELO mail-iy0-f171.google.com)
	(209.85.210.171)
	by server-7.tower-27.messagelabs.com with RC4-SHA encrypted SMTP;
	24 Nov 2011 01:55:26 -0000
Received: by iaby12 with SMTP id y12so2850668iab.30
	for <xen-api@lists.xensource.com>; Wed, 23 Nov 2011 17:56:08 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=mime-version:sender:in-reply-to:references:from:date
	:x-google-sender-auth:message-id:subject:to:cc:content-type;
	bh=aq6RPn4D9Q8T2b9tvoUSaHCNTlZnt0QiFteXyzmUZxk=;
	b=bc2/oiE0msgWvkFXtzMDUPIEzcXS9rq3paCKZg9W4xpPS2Lm/9BHsvuB09xEyCeGsp
	gyiSoXHDuYG8VhlV4lb+vTFTqZdDtgiJX+CLCVWLLay88TH3tc6SJKRPRMqITPJ6HEGJ
	jo++k4kxFwDQJ6a3Oo3aQCmwMaoFC0dhSsh7Q=
Received: by 10.50.47.201 with SMTP id f9mr30164710ign.18.1322099768089; Wed,
	23 Nov 2011 17:56:08 -0800 (PST)
MIME-Version: 1.0
Received: by 10.42.142.5 with HTTP; Wed, 23 Nov 2011 17:55:47 -0800 (PST)
In-Reply-To: <D8E930DC-56A7-4334-B155-8B6F98EEFBDE@eu.citrix.com>
References: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
	<D8E930DC-56A7-4334-B155-8B6F98EEFBDE@eu.citrix.com>
From: Todd Deshane <todd.deshane@xen.org>
Date: Wed, 23 Nov 2011 20:55:47 -0500
X-Google-Sender-Auth: JLGjlHSl3LWjueV1tj6ZVTSZKqc
Message-ID: <CAMrPLWLT3uc-MEJNz0qi8U6HshU-P-7OzLgZMi4OLK+3fpEPsg@mail.gmail.com>
To: Jonathan Ludlam <Jonathan.Ludlam@eu.citrix.com>
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] OpenStack on Ubuntu Kronos
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

On Wed, Nov 23, 2011 at 3:03 PM, Jonathan Ludlam
<Jonathan.Ludlam@eu.citrix.com> wrote:
> Start squeezed. I fixed this yesterday - it was an init script ordering problem. Squeezed requires xenstore to be running.

That fixed that error.

Now a new one.

The server failed to handle your request, due to an internal error.
The given message may give details useful for debugging the problem.
message: Xenctrl.Error("3: No such process")

I did check that xenstore is running.

the xapi log:

[20111124T01:51:29.649Z|debug|st15|634 UNIX
/var/xapi/xapi|dispatch:VM.start D:c9f1f04afc03|backtrace] Raised at
pervasiveext.ml:26.22-25 -> server_helpers.ml:153.10-106 ->
server.ml:7936.19-167 -> server_helpers.ml:119.4-7
[20111124T01:51:29.649Z|debug|st15|634 UNIX /var/xapi/xapi||xapi]
Raised at client.ml:6.37-75 -> client.ml:4450.12-80 ->
cli_operations.ml:1833.2-6 -> cli_operations.ml:1842.10-11 ->
cli_operations.ml:1765.14-18 -> cli_operations.ml:1803.12-28 ->
cli_operations.ml:2045.7-418 -> xapi_cli.ml:112.18-56 ->
pervasiveext.ml:22.2-9
[20111124T01:51:29.652Z| info|st15|634 UNIX
/var/xapi/xapi|session.logout D:4d0672adff05|xapi] Session.destroy
trackid=4ceb27430d74cb61bf0755fdd7724ffa
[20111124T01:51:29.653Z|debug|st15|634 UNIX /var/xapi/xapi||backtrace]
Raised at pervasiveext.ml:26.22-25 -> xapi_cli.ml:111.2-138 ->
xapi_cli.ml:200.7-44 -> xapi_cli.ml:252.4-23
[20111124T01:51:29.653Z|debug|st15|634 UNIX /var/xapi/xapi||cli]
Xapi_cli.exception_handler: Got exception INTERNAL_ERROR: [
Xenctrl.Error("3: No such process") ]
[20111124T01:51:29.653Z|debug|st15|634 UNIX /var/xapi/xapi||cli]
Raised at string.ml:150.25-34 -> stringext.ml:108.13-29
[20111124T01:51:51.406Z|debug|st15|13|session_revalidation_func
D:5fb43b505e28|xapi] revalidating all external sessions in the local
host

Thoughts?

Thanks,
Todd

-- 
Todd Deshane
http://www.linkedin.com/in/deshantm
http://www.xen.org/community/xenday11.html
http://cloudstack.org/about-cloudstack/cloudstack-events/viewevent/29-build-an-open-source-cloud-day-boston.html

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Thu Nov 24 16:14:39 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Thu, 24 Nov 2011 16:14:39 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTbwX-0003Te-Vl; Thu, 24 Nov 2011 16:14:33 +0000
Received: from mail216.messagelabs.com ([85.158.143.99])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <lars.kurth.xen@gmail.com>)
	id 1RTbwW-0003SG-5d; Thu, 24 Nov 2011 16:14:32 +0000
X-Env-Sender: lars.kurth.xen@gmail.com
X-Msg-Ref: server-15.tower-216.messagelabs.com!1322151240!4855615!1
X-Originating-IP: [209.85.214.43]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 5707 invoked from network); 24 Nov 2011 16:14:00 -0000
Received: from mail-bw0-f43.google.com (HELO mail-bw0-f43.google.com)
	(209.85.214.43)
	by server-15.tower-216.messagelabs.com with RC4-SHA encrypted SMTP;
	24 Nov 2011 16:14:00 -0000
Received: by bkbzt12 with SMTP id zt12so4100091bkb.30
	for <multiple recipients>; Thu, 24 Nov 2011 08:14:00 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=sender:message-id:date:from:user-agent:mime-version:to:subject
	:references:in-reply-to:content-type:content-transfer-encoding;
	bh=oUU1jjFizyWmLazXxMuh01ermZnp8fzg75s6Xhltz8Q=;
	b=P2h9JN06Lu9LsoK+/DsttiMq6JEeAekAS8Eko6pZ0Jt2erO96tioP8vd1Em3vNLSwc
	nttHVxHoLMq6JrZ7K6YhoJ1dWbQ+vMUcsaUhfSsAFj6UmfM1YeaBq74MOyD0ckDreciK
	YwDqHMMo7yIWQ5tMNgMdxOQ6/fT+dMcBBww04=
Received: by 10.204.154.7 with SMTP id m7mr29973723bkw.71.1322151240161;
	Thu, 24 Nov 2011 08:14:00 -0800 (PST)
Received: from [172.16.25.10] (5e0575b0.bb.sky.com. [94.5.117.176])
	by mx.google.com with ESMTPS id q6sm16220938bka.6.2011.11.24.08.13.58
	(version=SSLv3 cipher=OTHER); Thu, 24 Nov 2011 08:13:59 -0800 (PST)
Message-ID: <4ECE6D45.8060408@xen.org>
Date: Thu, 24 Nov 2011 16:13:57 +0000
From: Lars Kurth <lars.kurth@xen.org>
User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:8.0) Gecko/20111105 Thunderbird/8.0
MIME-Version: 1.0
To: xen-arm@lists.xensource.com, 
	"xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>,
	"xen-users@lists.xensource.com" <xen-users@lists.xensource.com>, 
	"xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
References: <4EBD03EA.9070907@xen.org>
	<20111111150013.GA4712@phenom.dumpdata.com>
	<CAL_tfFeUsDO1oAoKeWHLBJG0CHDf8A19mvjNX+zJCXfVdmfd3w@mail.gmail.com>
	<4EC3DDCE.9020506@xen.org>
In-Reply-To: <4EC3DDCE.9020506@xen.org>
Subject: Re: [Xen-API] [Xen-users] Re:  Another Xen Doc Day, Nov 29 or Dec 12
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset="us-ascii"; Format="flowed"
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

On 16/11/2011 15:59, Lars Kurth wrote:
> So far we had two votes for Nov 29th
> Any others?
> Lars

OK: 29th it is then
Lars


_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Thu Nov 24 16:14:39 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Thu, 24 Nov 2011 16:14:39 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTbwX-0003Te-Vl; Thu, 24 Nov 2011 16:14:33 +0000
Received: from mail216.messagelabs.com ([85.158.143.99])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <lars.kurth.xen@gmail.com>)
	id 1RTbwW-0003SG-5d; Thu, 24 Nov 2011 16:14:32 +0000
X-Env-Sender: lars.kurth.xen@gmail.com
X-Msg-Ref: server-15.tower-216.messagelabs.com!1322151240!4855615!1
X-Originating-IP: [209.85.214.43]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 5707 invoked from network); 24 Nov 2011 16:14:00 -0000
Received: from mail-bw0-f43.google.com (HELO mail-bw0-f43.google.com)
	(209.85.214.43)
	by server-15.tower-216.messagelabs.com with RC4-SHA encrypted SMTP;
	24 Nov 2011 16:14:00 -0000
Received: by bkbzt12 with SMTP id zt12so4100091bkb.30
	for <multiple recipients>; Thu, 24 Nov 2011 08:14:00 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=sender:message-id:date:from:user-agent:mime-version:to:subject
	:references:in-reply-to:content-type:content-transfer-encoding;
	bh=oUU1jjFizyWmLazXxMuh01ermZnp8fzg75s6Xhltz8Q=;
	b=P2h9JN06Lu9LsoK+/DsttiMq6JEeAekAS8Eko6pZ0Jt2erO96tioP8vd1Em3vNLSwc
	nttHVxHoLMq6JrZ7K6YhoJ1dWbQ+vMUcsaUhfSsAFj6UmfM1YeaBq74MOyD0ckDreciK
	YwDqHMMo7yIWQ5tMNgMdxOQ6/fT+dMcBBww04=
Received: by 10.204.154.7 with SMTP id m7mr29973723bkw.71.1322151240161;
	Thu, 24 Nov 2011 08:14:00 -0800 (PST)
Received: from [172.16.25.10] (5e0575b0.bb.sky.com. [94.5.117.176])
	by mx.google.com with ESMTPS id q6sm16220938bka.6.2011.11.24.08.13.58
	(version=SSLv3 cipher=OTHER); Thu, 24 Nov 2011 08:13:59 -0800 (PST)
Message-ID: <4ECE6D45.8060408@xen.org>
Date: Thu, 24 Nov 2011 16:13:57 +0000
From: Lars Kurth <lars.kurth@xen.org>
User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:8.0) Gecko/20111105 Thunderbird/8.0
MIME-Version: 1.0
To: xen-arm@lists.xensource.com, 
	"xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>,
	"xen-users@lists.xensource.com" <xen-users@lists.xensource.com>, 
	"xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
References: <4EBD03EA.9070907@xen.org>
	<20111111150013.GA4712@phenom.dumpdata.com>
	<CAL_tfFeUsDO1oAoKeWHLBJG0CHDf8A19mvjNX+zJCXfVdmfd3w@mail.gmail.com>
	<4EC3DDCE.9020506@xen.org>
In-Reply-To: <4EC3DDCE.9020506@xen.org>
Subject: Re: [Xen-API] [Xen-users] Re:  Another Xen Doc Day, Nov 29 or Dec 12
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset="us-ascii"; Format="flowed"
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

On 16/11/2011 15:59, Lars Kurth wrote:
> So far we had two votes for Nov 29th
> Any others?
> Lars

OK: 29th it is then
Lars


_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Fri Nov 25 03:41:16 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Fri, 25 Nov 2011 03:41:16 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTmew-0007s0-Ii; Fri, 25 Nov 2011 03:41:06 +0000
Received: from mail174.messagelabs.com ([85.158.138.51])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <todd.deshane.xen@gmail.com>) id 1RTmev-0007rq-Nb
	for xen-api@lists.xensource.com; Fri, 25 Nov 2011 03:41:05 +0000
X-Env-Sender: todd.deshane.xen@gmail.com
X-Msg-Ref: server-10.tower-174.messagelabs.com!1322192432!2947505!1
X-Originating-IP: [209.85.210.171]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 30132 invoked from network); 25 Nov 2011 03:40:33 -0000
Received: from mail-iy0-f171.google.com (HELO mail-iy0-f171.google.com)
	(209.85.210.171)
	by server-10.tower-174.messagelabs.com with RC4-SHA encrypted SMTP;
	25 Nov 2011 03:40:33 -0000
Received: by iaby12 with SMTP id y12so4780367iab.30
	for <xen-api@lists.xensource.com>; Thu, 24 Nov 2011 19:40:32 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=mime-version:sender:in-reply-to:references:from:date
	:x-google-sender-auth:message-id:subject:to:cc:content-type;
	bh=Aqbo7YLjVPYfyam6l79MbDIMlpvewuSZ0F21qyt8Q5s=;
	b=cID2XkhkAKpL88ORSn+T8wh0/p4JZa347e7z7cyGSk8KO4QT9g3fW0E+0FJt29hbYa
	3mi5O/UlBVRxu0zcTkHLZki7j70pI4lTmZst3POgHQR/nhqcxfWJ4BMe04v3T7Bd8H6Q
	8EMtSOp9e8v3Hr5+nhETWsa2tD+RNPnDEC3d0=
Received: by 10.50.216.137 with SMTP id oq9mr35866910igc.40.1322192432122;
	Thu, 24 Nov 2011 19:40:32 -0800 (PST)
MIME-Version: 1.0
Received: by 10.42.142.5 with HTTP; Thu, 24 Nov 2011 19:40:11 -0800 (PST)
In-Reply-To: <CAMrPLWLT3uc-MEJNz0qi8U6HshU-P-7OzLgZMi4OLK+3fpEPsg@mail.gmail.com>
References: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
	<D8E930DC-56A7-4334-B155-8B6F98EEFBDE@eu.citrix.com>
	<CAMrPLWLT3uc-MEJNz0qi8U6HshU-P-7OzLgZMi4OLK+3fpEPsg@mail.gmail.com>
From: Todd Deshane <todd.deshane@xen.org>
Date: Thu, 24 Nov 2011 22:40:11 -0500
X-Google-Sender-Auth: RsnpSJr4i2oAhQs75s7nN3hrCUE
Message-ID: <CAMrPLWK016xpbtDB2964tU9YhWwjZgc=8-LE7FOHyoOb4ijgdQ@mail.gmail.com>
To: Jonathan Ludlam <Jonathan.Ludlam@eu.citrix.com>
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] OpenStack on Ubuntu Kronos
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

On Wed, Nov 23, 2011 at 8:55 PM, Todd Deshane <todd.deshane@xen.org> wrote:
> On Wed, Nov 23, 2011 at 3:03 PM, Jonathan Ludlam
> <Jonathan.Ludlam@eu.citrix.com> wrote:
>
> The server failed to handle your request, due to an internal error.
> The given message may give details useful for debugging the problem.
> message: Xenctrl.Error("3: No such process")

Just in case someone hits this same problem. The problem turned out to
be that xend was still running. Killing it fixed the problem. The
OpenStack VM now boots on Kronos.

Thanks,
Todd

-- 
Todd Deshane
http://www.linkedin.com/in/deshantm
http://www.xen.org/community/xenday11.html
http://cloudstack.org/about-cloudstack/cloudstack-events/viewevent/29-build-an-open-source-cloud-day-boston.html

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Fri Nov 25 03:41:16 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Fri, 25 Nov 2011 03:41:16 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTmew-0007s0-Ii; Fri, 25 Nov 2011 03:41:06 +0000
Received: from mail174.messagelabs.com ([85.158.138.51])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <todd.deshane.xen@gmail.com>) id 1RTmev-0007rq-Nb
	for xen-api@lists.xensource.com; Fri, 25 Nov 2011 03:41:05 +0000
X-Env-Sender: todd.deshane.xen@gmail.com
X-Msg-Ref: server-10.tower-174.messagelabs.com!1322192432!2947505!1
X-Originating-IP: [209.85.210.171]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 30132 invoked from network); 25 Nov 2011 03:40:33 -0000
Received: from mail-iy0-f171.google.com (HELO mail-iy0-f171.google.com)
	(209.85.210.171)
	by server-10.tower-174.messagelabs.com with RC4-SHA encrypted SMTP;
	25 Nov 2011 03:40:33 -0000
Received: by iaby12 with SMTP id y12so4780367iab.30
	for <xen-api@lists.xensource.com>; Thu, 24 Nov 2011 19:40:32 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=mime-version:sender:in-reply-to:references:from:date
	:x-google-sender-auth:message-id:subject:to:cc:content-type;
	bh=Aqbo7YLjVPYfyam6l79MbDIMlpvewuSZ0F21qyt8Q5s=;
	b=cID2XkhkAKpL88ORSn+T8wh0/p4JZa347e7z7cyGSk8KO4QT9g3fW0E+0FJt29hbYa
	3mi5O/UlBVRxu0zcTkHLZki7j70pI4lTmZst3POgHQR/nhqcxfWJ4BMe04v3T7Bd8H6Q
	8EMtSOp9e8v3Hr5+nhETWsa2tD+RNPnDEC3d0=
Received: by 10.50.216.137 with SMTP id oq9mr35866910igc.40.1322192432122;
	Thu, 24 Nov 2011 19:40:32 -0800 (PST)
MIME-Version: 1.0
Received: by 10.42.142.5 with HTTP; Thu, 24 Nov 2011 19:40:11 -0800 (PST)
In-Reply-To: <CAMrPLWLT3uc-MEJNz0qi8U6HshU-P-7OzLgZMi4OLK+3fpEPsg@mail.gmail.com>
References: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
	<D8E930DC-56A7-4334-B155-8B6F98EEFBDE@eu.citrix.com>
	<CAMrPLWLT3uc-MEJNz0qi8U6HshU-P-7OzLgZMi4OLK+3fpEPsg@mail.gmail.com>
From: Todd Deshane <todd.deshane@xen.org>
Date: Thu, 24 Nov 2011 22:40:11 -0500
X-Google-Sender-Auth: RsnpSJr4i2oAhQs75s7nN3hrCUE
Message-ID: <CAMrPLWK016xpbtDB2964tU9YhWwjZgc=8-LE7FOHyoOb4ijgdQ@mail.gmail.com>
To: Jonathan Ludlam <Jonathan.Ludlam@eu.citrix.com>
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] OpenStack on Ubuntu Kronos
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

On Wed, Nov 23, 2011 at 8:55 PM, Todd Deshane <todd.deshane@xen.org> wrote:
> On Wed, Nov 23, 2011 at 3:03 PM, Jonathan Ludlam
> <Jonathan.Ludlam@eu.citrix.com> wrote:
>
> The server failed to handle your request, due to an internal error.
> The given message may give details useful for debugging the problem.
> message: Xenctrl.Error("3: No such process")

Just in case someone hits this same problem. The problem turned out to
be that xend was still running. Killing it fixed the problem. The
OpenStack VM now boots on Kronos.

Thanks,
Todd

-- 
Todd Deshane
http://www.linkedin.com/in/deshantm
http://www.xen.org/community/xenday11.html
http://cloudstack.org/about-cloudstack/cloudstack-events/viewevent/29-build-an-open-source-cloud-day-boston.html

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Fri Nov 25 12:13:38 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Fri, 25 Nov 2011 12:13:38 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTuep-0002S8-Pg; Fri, 25 Nov 2011 12:13:31 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <lars.kurth.xen@gmail.com>)
	id 1RTuen-0002Rt-WC; Fri, 25 Nov 2011 12:13:30 +0000
X-Env-Sender: lars.kurth.xen@gmail.com
X-Msg-Ref: server-2.tower-27.messagelabs.com!1322223141!64645928!1
X-Originating-IP: [209.85.161.43]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 20560 invoked from network); 25 Nov 2011 12:12:21 -0000
Received: from mail-fx0-f43.google.com (HELO mail-fx0-f43.google.com)
	(209.85.161.43)
	by server-2.tower-27.messagelabs.com with RC4-SHA encrypted SMTP;
	25 Nov 2011 12:12:21 -0000
Received: by fagn18 with SMTP id n18so590974fag.30
	for <multiple recipients>; Fri, 25 Nov 2011 04:13:02 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=sender:message-id:date:from:user-agent:mime-version:to:subject
	:content-type; bh=5wkYTP6UiDZK8P/x/w8Gj1wmKlorMrJEfSB6ZhSE/O8=;
	b=Fv5Fa0KG5Lmm1R7DxgAsARbVX4Uw2uv5w3W//s8RHT0/7h5eKsAwlMqlZdTjGfTzDt
	bbnWRXLQIGNvVdfXw4nPE2/Ml3rCgQLsjrMUqOMO7zYLtZwAMGrquqcvAloVo/NQT5mE
	ai/0WzHfu2ORCO27uankimv1WlrLBrJ+BbK34=
Received: by 10.204.152.25 with SMTP id e25mr34275983bkw.51.1322223180680;
	Fri, 25 Nov 2011 04:13:00 -0800 (PST)
Received: from [172.16.25.10] (5e0575b0.bb.sky.com. [94.5.117.176])
	by mx.google.com with ESMTPS id e8sm18624772bkd.7.2011.11.25.04.12.58
	(version=SSLv3 cipher=OTHER); Fri, 25 Nov 2011 04:12:59 -0800 (PST)
Message-ID: <4ECF8648.9020108@xen.org>
Date: Fri, 25 Nov 2011 12:12:56 +0000
From: Lars Kurth <lars.kurth@xen.org>
User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:8.0) Gecko/20111105 Thunderbird/8.0
MIME-Version: 1.0
To: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>, 
	"xen-users@lists.xensource.com" <xen-users@lists.xensource.com>,
	"xen-api@lists.xensource.com" <xen-api@lists.xensource.com>, 
	xen-arm@lists.xensource.com
Subject: [Xen-API] Xen Document Day: November 29th
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: multipart/mixed; boundary="===============0904426655148708478=="
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

This is a multi-part message in MIME format.
--===============0904426655148708478==
Content-Type: multipart/alternative;
 boundary="------------030900070306080905070905"

This is a multi-part message in MIME format.
--------------030900070306080905070905
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

Hi everybody,

after the last Xen Document Day, many people asked me when we would do 
another document day. After a discussion on the mailing list, we settled 
on next Tuesday (November 29). This will be an all-day on-line IRC event 
with the aim to

  * Improve user documentation
  * Improve developer documentation, including the creation of man
    pages, etc.

There is no hard start and end to the event, but volunteers in the UK 
will be on-line on *Nov 29th* from around 9:00 UTC+1 until around 18:00 
UTC+1, and then volunteers from the US will take over. The event will be 
take place on freenode channel *#xendocday*

An intial work item lists and what we agreed on can be found on the 
Documentation Day Etherpad <http://openetherpad.org/TSPGIEOBiS>. Other 
work that needs doing is:

  * Improve user and wiki documentation
      o Migrate remaining wiki pages
        <http://wiki.xen.org/wiki/Wiki_Community/Migration_Instructions_from_Old_to_New_Xen_Wiki>
      o Pages that need reviewing/fixing
        <http://wiki.xen.org/wiki/Category:Contains_Needs_Action>
      o Pages that need formatting
        <http://wiki.xen.org/wiki/Category:Contains_Needs_Formatting>
      o Missing pages (many may just need to be migrated), some may be
        obsolete <http://wiki.xen.org/wiki/Special:WantedPages>
  * Improve developer documentation, including the creation of man
    pages, etc.

But anyway, a long list of stuff that is needed can be found on the 
Documentation Day Etherpad <http://openetherpad.org/TSPGIEOBiS>. I am 
sure, you will find something that suits you. Instructions on how to use 
the new wiki, can be found here 
<http://wiki.xen.org/wiki/Wiki_Community> and on the front-page.

*The Protocol*

  * Join us on IRC: freenode channel *#xendocday*
  * Tell people what you intend to work on (to avoid doing something
    somebody else is already working on)
  * Fix some documentation
  * Help others
  * And above all: have fun!

I am looking forward to the day and hopefully documentation days will 
become a regular Xen event. See you on IRC!

Regards
Lars


--------------030900070306080905070905
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Hi everybody,<br>
    <br>
    after the last Xen Document Day, many people asked me when we would
    do another document day. After a discussion on the mailing list, we
    settled on next Tuesday (November 29). This will be an all-day
    on-line IRC event with the aim to
    <ul>
      <li>Improve user documentation</li>
      <li>Improve developer documentation, including the creation of man
        pages, etc.</li>
    </ul>
    <p>There is no hard start and end to the event, but volunteers in
      the UK will be on-line on <strong>Nov 29th</strong> from around
      9:00 UTC+1 until around 18:00 UTC+1, and then volunteers from the
      US will take over. The event will be take place on freenode
      channel <strong>#xendocday</strong></p>
    <p>An intial work item lists and what we agreed on can be found on
      the <a href="http://openetherpad.org/TSPGIEOBiS">Documentation
        Day Etherpad</a>. Other work that needs doing is:</p>
    <ul>
      <li>Improve user and wiki documentation
        <ul>
          <li><a
href="http://wiki.xen.org/wiki/Wiki_Community/Migration_Instructions_from_Old_to_New_Xen_Wiki">Migrate
              remaining wiki pages</a></li>
          <li><a
              href="http://wiki.xen.org/wiki/Category:Contains_Needs_Action">Pages
              that need reviewing/fixing</a></li>
          <li><a
              href="http://wiki.xen.org/wiki/Category:Contains_Needs_Formatting">Pages
              that need formatting</a></li>
          <li><a href="http://wiki.xen.org/wiki/Special:WantedPages">Missing
              pages (many may just need to be migrated), some may be
              obsolete</a></li>
        </ul>
      </li>
      <li>Improve developer documentation, including the creation of man
        pages, etc.</li>
    </ul>
    <p>But anyway, a long list of stuff that is needed can be found on
      the <a href="http://openetherpad.org/TSPGIEOBiS">Documentation
        Day Etherpad</a>. I am sure, you will find something that suits
      you. Instructions on how to use the new wiki, can be found <a
        href="http://wiki.xen.org/wiki/Wiki_Community">here</a> and on
      the front-page.</p>
    <p><strong>The Protocol</strong></p>
    <ul>
      <li>Join us on IRC: freenode channel <strong>#xendocday</strong></li>
      <li>Tell people what you intend to work on (to avoid doing
        something somebody else is already working on)</li>
      <li>Fix some documentation</li>
      <li>Help others</li>
      <li>And above all: have fun!</li>
    </ul>
    <p>I am looking forward to the day and hopefully documentation days
      will become a regular Xen event. See you on IRC!<br>
    </p>
    <p>Regards<br>
      Lars<br>
    </p>
  </body>
</html>

--------------030900070306080905070905--


--===============0904426655148708478==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

--===============0904426655148708478==--


From xen-api-bounces@lists.xensource.com Fri Nov 25 12:13:38 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Fri, 25 Nov 2011 12:13:38 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTuep-0002S8-Pg; Fri, 25 Nov 2011 12:13:31 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <lars.kurth.xen@gmail.com>)
	id 1RTuen-0002Rt-WC; Fri, 25 Nov 2011 12:13:30 +0000
X-Env-Sender: lars.kurth.xen@gmail.com
X-Msg-Ref: server-2.tower-27.messagelabs.com!1322223141!64645928!1
X-Originating-IP: [209.85.161.43]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 20560 invoked from network); 25 Nov 2011 12:12:21 -0000
Received: from mail-fx0-f43.google.com (HELO mail-fx0-f43.google.com)
	(209.85.161.43)
	by server-2.tower-27.messagelabs.com with RC4-SHA encrypted SMTP;
	25 Nov 2011 12:12:21 -0000
Received: by fagn18 with SMTP id n18so590974fag.30
	for <multiple recipients>; Fri, 25 Nov 2011 04:13:02 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=sender:message-id:date:from:user-agent:mime-version:to:subject
	:content-type; bh=5wkYTP6UiDZK8P/x/w8Gj1wmKlorMrJEfSB6ZhSE/O8=;
	b=Fv5Fa0KG5Lmm1R7DxgAsARbVX4Uw2uv5w3W//s8RHT0/7h5eKsAwlMqlZdTjGfTzDt
	bbnWRXLQIGNvVdfXw4nPE2/Ml3rCgQLsjrMUqOMO7zYLtZwAMGrquqcvAloVo/NQT5mE
	ai/0WzHfu2ORCO27uankimv1WlrLBrJ+BbK34=
Received: by 10.204.152.25 with SMTP id e25mr34275983bkw.51.1322223180680;
	Fri, 25 Nov 2011 04:13:00 -0800 (PST)
Received: from [172.16.25.10] (5e0575b0.bb.sky.com. [94.5.117.176])
	by mx.google.com with ESMTPS id e8sm18624772bkd.7.2011.11.25.04.12.58
	(version=SSLv3 cipher=OTHER); Fri, 25 Nov 2011 04:12:59 -0800 (PST)
Message-ID: <4ECF8648.9020108@xen.org>
Date: Fri, 25 Nov 2011 12:12:56 +0000
From: Lars Kurth <lars.kurth@xen.org>
User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:8.0) Gecko/20111105 Thunderbird/8.0
MIME-Version: 1.0
To: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>, 
	"xen-users@lists.xensource.com" <xen-users@lists.xensource.com>,
	"xen-api@lists.xensource.com" <xen-api@lists.xensource.com>, 
	xen-arm@lists.xensource.com
Subject: [Xen-API] Xen Document Day: November 29th
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: multipart/mixed; boundary="===============0904426655148708478=="
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

This is a multi-part message in MIME format.
--===============0904426655148708478==
Content-Type: multipart/alternative;
 boundary="------------030900070306080905070905"

This is a multi-part message in MIME format.
--------------030900070306080905070905
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

Hi everybody,

after the last Xen Document Day, many people asked me when we would do 
another document day. After a discussion on the mailing list, we settled 
on next Tuesday (November 29). This will be an all-day on-line IRC event 
with the aim to

  * Improve user documentation
  * Improve developer documentation, including the creation of man
    pages, etc.

There is no hard start and end to the event, but volunteers in the UK 
will be on-line on *Nov 29th* from around 9:00 UTC+1 until around 18:00 
UTC+1, and then volunteers from the US will take over. The event will be 
take place on freenode channel *#xendocday*

An intial work item lists and what we agreed on can be found on the 
Documentation Day Etherpad <http://openetherpad.org/TSPGIEOBiS>. Other 
work that needs doing is:

  * Improve user and wiki documentation
      o Migrate remaining wiki pages
        <http://wiki.xen.org/wiki/Wiki_Community/Migration_Instructions_from_Old_to_New_Xen_Wiki>
      o Pages that need reviewing/fixing
        <http://wiki.xen.org/wiki/Category:Contains_Needs_Action>
      o Pages that need formatting
        <http://wiki.xen.org/wiki/Category:Contains_Needs_Formatting>
      o Missing pages (many may just need to be migrated), some may be
        obsolete <http://wiki.xen.org/wiki/Special:WantedPages>
  * Improve developer documentation, including the creation of man
    pages, etc.

But anyway, a long list of stuff that is needed can be found on the 
Documentation Day Etherpad <http://openetherpad.org/TSPGIEOBiS>. I am 
sure, you will find something that suits you. Instructions on how to use 
the new wiki, can be found here 
<http://wiki.xen.org/wiki/Wiki_Community> and on the front-page.

*The Protocol*

  * Join us on IRC: freenode channel *#xendocday*
  * Tell people what you intend to work on (to avoid doing something
    somebody else is already working on)
  * Fix some documentation
  * Help others
  * And above all: have fun!

I am looking forward to the day and hopefully documentation days will 
become a regular Xen event. See you on IRC!

Regards
Lars


--------------030900070306080905070905
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Hi everybody,<br>
    <br>
    after the last Xen Document Day, many people asked me when we would
    do another document day. After a discussion on the mailing list, we
    settled on next Tuesday (November 29). This will be an all-day
    on-line IRC event with the aim to
    <ul>
      <li>Improve user documentation</li>
      <li>Improve developer documentation, including the creation of man
        pages, etc.</li>
    </ul>
    <p>There is no hard start and end to the event, but volunteers in
      the UK will be on-line on <strong>Nov 29th</strong> from around
      9:00 UTC+1 until around 18:00 UTC+1, and then volunteers from the
      US will take over. The event will be take place on freenode
      channel <strong>#xendocday</strong></p>
    <p>An intial work item lists and what we agreed on can be found on
      the <a href="http://openetherpad.org/TSPGIEOBiS">Documentation
        Day Etherpad</a>. Other work that needs doing is:</p>
    <ul>
      <li>Improve user and wiki documentation
        <ul>
          <li><a
href="http://wiki.xen.org/wiki/Wiki_Community/Migration_Instructions_from_Old_to_New_Xen_Wiki">Migrate
              remaining wiki pages</a></li>
          <li><a
              href="http://wiki.xen.org/wiki/Category:Contains_Needs_Action">Pages
              that need reviewing/fixing</a></li>
          <li><a
              href="http://wiki.xen.org/wiki/Category:Contains_Needs_Formatting">Pages
              that need formatting</a></li>
          <li><a href="http://wiki.xen.org/wiki/Special:WantedPages">Missing
              pages (many may just need to be migrated), some may be
              obsolete</a></li>
        </ul>
      </li>
      <li>Improve developer documentation, including the creation of man
        pages, etc.</li>
    </ul>
    <p>But anyway, a long list of stuff that is needed can be found on
      the <a href="http://openetherpad.org/TSPGIEOBiS">Documentation
        Day Etherpad</a>. I am sure, you will find something that suits
      you. Instructions on how to use the new wiki, can be found <a
        href="http://wiki.xen.org/wiki/Wiki_Community">here</a> and on
      the front-page.</p>
    <p><strong>The Protocol</strong></p>
    <ul>
      <li>Join us on IRC: freenode channel <strong>#xendocday</strong></li>
      <li>Tell people what you intend to work on (to avoid doing
        something somebody else is already working on)</li>
      <li>Fix some documentation</li>
      <li>Help others</li>
      <li>And above all: have fun!</li>
    </ul>
    <p>I am looking forward to the day and hopefully documentation days
      will become a regular Xen event. See you on IRC!<br>
    </p>
    <p>Regards<br>
      Lars<br>
    </p>
  </body>
</html>

--------------030900070306080905070905--


--===============0904426655148708478==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

--===============0904426655148708478==--


From xen-api-bounces@lists.xensource.com Fri Nov 25 15:19:03 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Fri, 25 Nov 2011 15:19:03 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTxYG-0004EC-PY; Fri, 25 Nov 2011 15:18:56 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <mike.mcclurg@citrix.com>) id 1RTxYE-0004DW-Va
	for xen-api@lists.xensource.com; Fri, 25 Nov 2011 15:18:55 +0000
X-Env-Sender: mike.mcclurg@citrix.com
X-Msg-Ref: server-10.tower-27.messagelabs.com!1322234267!45404859!1
X-Originating-IP: [66.165.176.63]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 19108 invoked from network); 25 Nov 2011 15:17:48 -0000
Received: from smtp02.citrix.com (HELO SMTP02.CITRIX.COM) (66.165.176.63)
	by server-10.tower-27.messagelabs.com with RC4-SHA encrypted SMTP;
	25 Nov 2011 15:17:48 -0000
X-IronPort-AV: E=Sophos;i="4.69,572,1315195200"; d="scan'208";a="171876525"
Received: from ftlpmailmx02.citrite.net ([10.13.107.66])
	by FTLPIPO02.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	25 Nov 2011 10:18:21 -0500
Received: from [127.0.0.1] (10.80.16.67) by smtprelay.citrix.com
	(10.13.107.66) with Microsoft SMTP Server id 8.3.213.0; Fri, 25 Nov 2011
	10:18:20 -0500
Message-ID: <4ECFB1BB.1050201@citrix.com>
Date: Fri, 25 Nov 2011 15:18:19 +0000
From: Mike McClurg <mike.mcclurg@citrix.com>
User-Agent: Mozilla/5.0 (X11; Linux x86_64;
	rv:7.0.1) Gecko/20110929 Thunderbird/7.0.1
MIME-Version: 1.0
To: Todd Deshane <todd.deshane@xen.org>
References: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
	<D8E930DC-56A7-4334-B155-8B6F98EEFBDE@eu.citrix.com>
	<CAMrPLWLT3uc-MEJNz0qi8U6HshU-P-7OzLgZMi4OLK+3fpEPsg@mail.gmail.com>
	<CAMrPLWK016xpbtDB2964tU9YhWwjZgc=8-LE7FOHyoOb4ijgdQ@mail.gmail.com>
In-Reply-To: <CAMrPLWK016xpbtDB2964tU9YhWwjZgc=8-LE7FOHyoOb4ijgdQ@mail.gmail.com>
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] OpenStack on Ubuntu Kronos
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset="us-ascii"; Format="flowed"
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

On 25/11/11 03:40, Todd Deshane wrote:
> On Wed, Nov 23, 2011 at 8:55 PM, Todd Deshane<todd.deshane@xen.org>  wrote:
> Just in case someone hits this same problem. The problem turned out to
> be that xend was still running. Killing it fixed the problem. The
> OpenStack VM now boots on Kronos.
>

That's awesome, Todd, thanks for debugging that. Jon and I will have to 
work on the xapi init scripts to make sure that both xapi and xend 
aren't started at the same time.

Mike

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Fri Nov 25 15:19:03 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Fri, 25 Nov 2011 15:19:03 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTxYG-0004EC-PY; Fri, 25 Nov 2011 15:18:56 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <mike.mcclurg@citrix.com>) id 1RTxYE-0004DW-Va
	for xen-api@lists.xensource.com; Fri, 25 Nov 2011 15:18:55 +0000
X-Env-Sender: mike.mcclurg@citrix.com
X-Msg-Ref: server-10.tower-27.messagelabs.com!1322234267!45404859!1
X-Originating-IP: [66.165.176.63]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 19108 invoked from network); 25 Nov 2011 15:17:48 -0000
Received: from smtp02.citrix.com (HELO SMTP02.CITRIX.COM) (66.165.176.63)
	by server-10.tower-27.messagelabs.com with RC4-SHA encrypted SMTP;
	25 Nov 2011 15:17:48 -0000
X-IronPort-AV: E=Sophos;i="4.69,572,1315195200"; d="scan'208";a="171876525"
Received: from ftlpmailmx02.citrite.net ([10.13.107.66])
	by FTLPIPO02.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	25 Nov 2011 10:18:21 -0500
Received: from [127.0.0.1] (10.80.16.67) by smtprelay.citrix.com
	(10.13.107.66) with Microsoft SMTP Server id 8.3.213.0; Fri, 25 Nov 2011
	10:18:20 -0500
Message-ID: <4ECFB1BB.1050201@citrix.com>
Date: Fri, 25 Nov 2011 15:18:19 +0000
From: Mike McClurg <mike.mcclurg@citrix.com>
User-Agent: Mozilla/5.0 (X11; Linux x86_64;
	rv:7.0.1) Gecko/20110929 Thunderbird/7.0.1
MIME-Version: 1.0
To: Todd Deshane <todd.deshane@xen.org>
References: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
	<D8E930DC-56A7-4334-B155-8B6F98EEFBDE@eu.citrix.com>
	<CAMrPLWLT3uc-MEJNz0qi8U6HshU-P-7OzLgZMi4OLK+3fpEPsg@mail.gmail.com>
	<CAMrPLWK016xpbtDB2964tU9YhWwjZgc=8-LE7FOHyoOb4ijgdQ@mail.gmail.com>
In-Reply-To: <CAMrPLWK016xpbtDB2964tU9YhWwjZgc=8-LE7FOHyoOb4ijgdQ@mail.gmail.com>
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] OpenStack on Ubuntu Kronos
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset="us-ascii"; Format="flowed"
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

On 25/11/11 03:40, Todd Deshane wrote:
> On Wed, Nov 23, 2011 at 8:55 PM, Todd Deshane<todd.deshane@xen.org>  wrote:
> Just in case someone hits this same problem. The problem turned out to
> be that xend was still running. Killing it fixed the problem. The
> OpenStack VM now boots on Kronos.
>

That's awesome, Todd, thanks for debugging that. Jon and I will have to 
work on the xapi init scripts to make sure that both xapi and xend 
aren't started at the same time.

Mike

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Fri Nov 25 16:00:11 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Fri, 25 Nov 2011 16:00:11 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTyC3-0007G3-2v; Fri, 25 Nov 2011 16:00:03 +0000
Received: from mail21.messagelabs.com ([85.158.143.35])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <brainy@gmail.com>) id 1RTyC2-00076R-F5
	for xen-api@lists.xensource.com; Fri, 25 Nov 2011 16:00:02 +0000
X-Env-Sender: brainy@gmail.com
X-Msg-Ref: server-7.tower-21.messagelabs.com!1322236769!4753024!1
X-Originating-IP: [209.85.220.171]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 5642 invoked from network); 25 Nov 2011 15:59:30 -0000
Received: from mail-vx0-f171.google.com (HELO mail-vx0-f171.google.com)
	(209.85.220.171)
	by server-7.tower-21.messagelabs.com with RC4-SHA encrypted SMTP;
	25 Nov 2011 15:59:30 -0000
Received: by vcbfo1 with SMTP id fo1so4166068vcb.30
	for <xen-api@lists.xensource.com>; Fri, 25 Nov 2011 07:59:28 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=mime-version:sender:in-reply-to:references:date
	:x-google-sender-auth:message-id:subject:from:to:cc:content-type;
	bh=vY/ffiq/UPb9xz26mV9TwKd92RqO0QMmaCZpfmI0FYI=;
	b=ZKIFykSXOuIcRihE2iDBxGw4pKgLKbIKMPtuu4KUFtHwEJsoDGp1VdOnyEoUWn90pi
	fRahKvuA+G/1NpztCngILDyyYaRQGmDXZclb6UNRAk9XeDZg6cWgbsP9bXp8zille1DK
	W+E6vxCoR2sueuwjgH8mLkqkhBLagIYXFOIbY=
MIME-Version: 1.0
Received: by 10.220.187.136 with SMTP id cw8mr3104343vcb.266.1322236768646;
	Fri, 25 Nov 2011 07:59:28 -0800 (PST)
Received: by 10.220.179.67 with HTTP; Fri, 25 Nov 2011 07:59:28 -0800 (PST)
In-Reply-To: <4ECFB1BB.1050201@citrix.com>
References: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
	<D8E930DC-56A7-4334-B155-8B6F98EEFBDE@eu.citrix.com>
	<CAMrPLWLT3uc-MEJNz0qi8U6HshU-P-7OzLgZMi4OLK+3fpEPsg@mail.gmail.com>
	<CAMrPLWK016xpbtDB2964tU9YhWwjZgc=8-LE7FOHyoOb4ijgdQ@mail.gmail.com>
	<4ECFB1BB.1050201@citrix.com>
Date: Fri, 25 Nov 2011 15:59:28 +0000
X-Google-Sender-Auth: zGEm-QAeX0mVI4M_3xeLbzpsNMY
Message-ID: <CAFGpm272OHEyz6eGwB2rDHdVMVkH=iC0LPKxUucnG8oku+-_Kg@mail.gmail.com>
From: "msgbox450@gmail.com" <msgbox450@gmail.com>
To: Mike McClurg <mike.mcclurg@citrix.com>
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] OpenStack on Ubuntu Kronos
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: multipart/mixed; boundary="===============4263631468751425630=="
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

--===============4263631468751425630==
Content-Type: multipart/alternative; boundary=90e6ba4769b1e7761904b2913ca5

--90e6ba4769b1e7761904b2913ca5
Content-Type: text/plain; charset=ISO-8859-1

This looks like it may help me too, I hit a similar issue, so thanks for
that :)

p.s. Mike, what is the general state of Kronos now, I figure it should be
getting close to release stage now or have there been setbacks? Given the
recent posts I'm thinking of having another run through installing Ubuntu
this weekend to see if I can build the stack successfully this time :)

On Fri, Nov 25, 2011 at 3:18 PM, Mike McClurg <mike.mcclurg@citrix.com>wrote:

> On 25/11/11 03:40, Todd Deshane wrote:
>
>> On Wed, Nov 23, 2011 at 8:55 PM, Todd Deshane<todd.deshane@xen.org>
>>  wrote:
>> Just in case someone hits this same problem. The problem turned out to
>> be that xend was still running. Killing it fixed the problem. The
>> OpenStack VM now boots on Kronos.
>>
>>
> That's awesome, Todd, thanks for debugging that. Jon and I will have to
> work on the xapi init scripts to make sure that both xapi and xend aren't
> started at the same time.
>
> Mike
>
>
> ______________________________**_________________
> xen-api mailing list
> xen-api@lists.xensource.com
> http://lists.xensource.com/**mailman/listinfo/xen-api<http://lists.xensource.com/mailman/listinfo/xen-api>
>

--90e6ba4769b1e7761904b2913ca5
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

This looks like it may help me too, I hit a similar issue, so thanks for th=
at :)<div><br></div><div>p.s. Mike, what is the general state of Kronos now=
, I figure it should be getting close to release stage now or have there be=
en setbacks? Given the recent posts I&#39;m thinking of having another run =
through installing Ubuntu this weekend to see if I can build the stack succ=
essfully this time :)<br>
<br><div class=3D"gmail_quote">On Fri, Nov 25, 2011 at 3:18 PM, Mike McClur=
g <span dir=3D"ltr">&lt;<a href=3D"mailto:mike.mcclurg@citrix.com">mike.mcc=
lurg@citrix.com</a>&gt;</span> wrote:<br><blockquote class=3D"gmail_quote" =
style=3D"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class=3D"im">On 25/11/11 03:40, Todd Deshane wrote:<br>
</div><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-l=
eft:1px #ccc solid;padding-left:1ex"><div class=3D"im">
On Wed, Nov 23, 2011 at 8:55 PM, Todd Deshane&lt;<a href=3D"mailto:todd.des=
hane@xen.org" target=3D"_blank">todd.deshane@xen.org</a>&gt; =A0wrote:<br><=
/div><div class=3D"im">
Just in case someone hits this same problem. The problem turned out to<br>
be that xend was still running. Killing it fixed the problem. The<br>
OpenStack VM now boots on Kronos.<br>
<br>
</div></blockquote>
<br>
That&#39;s awesome, Todd, thanks for debugging that. Jon and I will have to=
 work on the xapi init scripts to make sure that both xapi and xend aren&#3=
9;t started at the same time.<span class=3D"HOEnZb"><font color=3D"#888888"=
><br>

<br>
Mike</font></span><div class=3D"HOEnZb"><div class=3D"h5"><br>
<br>
______________________________<u></u>_________________<br>
xen-api mailing list<br>
<a href=3D"mailto:xen-api@lists.xensource.com" target=3D"_blank">xen-api@li=
sts.xensource.com</a><br>
<a href=3D"http://lists.xensource.com/mailman/listinfo/xen-api" target=3D"_=
blank">http://lists.xensource.com/<u></u>mailman/listinfo/xen-api</a><br>
</div></div></blockquote></div><br></div>

--90e6ba4769b1e7761904b2913ca5--


--===============4263631468751425630==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

--===============4263631468751425630==--


From xen-api-bounces@lists.xensource.com Fri Nov 25 16:00:11 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Fri, 25 Nov 2011 16:00:11 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RTyC3-0007G3-2v; Fri, 25 Nov 2011 16:00:03 +0000
Received: from mail21.messagelabs.com ([85.158.143.35])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <brainy@gmail.com>) id 1RTyC2-00076R-F5
	for xen-api@lists.xensource.com; Fri, 25 Nov 2011 16:00:02 +0000
X-Env-Sender: brainy@gmail.com
X-Msg-Ref: server-7.tower-21.messagelabs.com!1322236769!4753024!1
X-Originating-IP: [209.85.220.171]
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 5642 invoked from network); 25 Nov 2011 15:59:30 -0000
Received: from mail-vx0-f171.google.com (HELO mail-vx0-f171.google.com)
	(209.85.220.171)
	by server-7.tower-21.messagelabs.com with RC4-SHA encrypted SMTP;
	25 Nov 2011 15:59:30 -0000
Received: by vcbfo1 with SMTP id fo1so4166068vcb.30
	for <xen-api@lists.xensource.com>; Fri, 25 Nov 2011 07:59:28 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=mime-version:sender:in-reply-to:references:date
	:x-google-sender-auth:message-id:subject:from:to:cc:content-type;
	bh=vY/ffiq/UPb9xz26mV9TwKd92RqO0QMmaCZpfmI0FYI=;
	b=ZKIFykSXOuIcRihE2iDBxGw4pKgLKbIKMPtuu4KUFtHwEJsoDGp1VdOnyEoUWn90pi
	fRahKvuA+G/1NpztCngILDyyYaRQGmDXZclb6UNRAk9XeDZg6cWgbsP9bXp8zille1DK
	W+E6vxCoR2sueuwjgH8mLkqkhBLagIYXFOIbY=
MIME-Version: 1.0
Received: by 10.220.187.136 with SMTP id cw8mr3104343vcb.266.1322236768646;
	Fri, 25 Nov 2011 07:59:28 -0800 (PST)
Received: by 10.220.179.67 with HTTP; Fri, 25 Nov 2011 07:59:28 -0800 (PST)
In-Reply-To: <4ECFB1BB.1050201@citrix.com>
References: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
	<D8E930DC-56A7-4334-B155-8B6F98EEFBDE@eu.citrix.com>
	<CAMrPLWLT3uc-MEJNz0qi8U6HshU-P-7OzLgZMi4OLK+3fpEPsg@mail.gmail.com>
	<CAMrPLWK016xpbtDB2964tU9YhWwjZgc=8-LE7FOHyoOb4ijgdQ@mail.gmail.com>
	<4ECFB1BB.1050201@citrix.com>
Date: Fri, 25 Nov 2011 15:59:28 +0000
X-Google-Sender-Auth: zGEm-QAeX0mVI4M_3xeLbzpsNMY
Message-ID: <CAFGpm272OHEyz6eGwB2rDHdVMVkH=iC0LPKxUucnG8oku+-_Kg@mail.gmail.com>
From: "msgbox450@gmail.com" <msgbox450@gmail.com>
To: Mike McClurg <mike.mcclurg@citrix.com>
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] OpenStack on Ubuntu Kronos
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: multipart/mixed; boundary="===============4263631468751425630=="
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

--===============4263631468751425630==
Content-Type: multipart/alternative; boundary=90e6ba4769b1e7761904b2913ca5

--90e6ba4769b1e7761904b2913ca5
Content-Type: text/plain; charset=ISO-8859-1

This looks like it may help me too, I hit a similar issue, so thanks for
that :)

p.s. Mike, what is the general state of Kronos now, I figure it should be
getting close to release stage now or have there been setbacks? Given the
recent posts I'm thinking of having another run through installing Ubuntu
this weekend to see if I can build the stack successfully this time :)

On Fri, Nov 25, 2011 at 3:18 PM, Mike McClurg <mike.mcclurg@citrix.com>wrote:

> On 25/11/11 03:40, Todd Deshane wrote:
>
>> On Wed, Nov 23, 2011 at 8:55 PM, Todd Deshane<todd.deshane@xen.org>
>>  wrote:
>> Just in case someone hits this same problem. The problem turned out to
>> be that xend was still running. Killing it fixed the problem. The
>> OpenStack VM now boots on Kronos.
>>
>>
> That's awesome, Todd, thanks for debugging that. Jon and I will have to
> work on the xapi init scripts to make sure that both xapi and xend aren't
> started at the same time.
>
> Mike
>
>
> ______________________________**_________________
> xen-api mailing list
> xen-api@lists.xensource.com
> http://lists.xensource.com/**mailman/listinfo/xen-api<http://lists.xensource.com/mailman/listinfo/xen-api>
>

--90e6ba4769b1e7761904b2913ca5
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

This looks like it may help me too, I hit a similar issue, so thanks for th=
at :)<div><br></div><div>p.s. Mike, what is the general state of Kronos now=
, I figure it should be getting close to release stage now or have there be=
en setbacks? Given the recent posts I&#39;m thinking of having another run =
through installing Ubuntu this weekend to see if I can build the stack succ=
essfully this time :)<br>
<br><div class=3D"gmail_quote">On Fri, Nov 25, 2011 at 3:18 PM, Mike McClur=
g <span dir=3D"ltr">&lt;<a href=3D"mailto:mike.mcclurg@citrix.com">mike.mcc=
lurg@citrix.com</a>&gt;</span> wrote:<br><blockquote class=3D"gmail_quote" =
style=3D"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class=3D"im">On 25/11/11 03:40, Todd Deshane wrote:<br>
</div><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-l=
eft:1px #ccc solid;padding-left:1ex"><div class=3D"im">
On Wed, Nov 23, 2011 at 8:55 PM, Todd Deshane&lt;<a href=3D"mailto:todd.des=
hane@xen.org" target=3D"_blank">todd.deshane@xen.org</a>&gt; =A0wrote:<br><=
/div><div class=3D"im">
Just in case someone hits this same problem. The problem turned out to<br>
be that xend was still running. Killing it fixed the problem. The<br>
OpenStack VM now boots on Kronos.<br>
<br>
</div></blockquote>
<br>
That&#39;s awesome, Todd, thanks for debugging that. Jon and I will have to=
 work on the xapi init scripts to make sure that both xapi and xend aren&#3=
9;t started at the same time.<span class=3D"HOEnZb"><font color=3D"#888888"=
><br>

<br>
Mike</font></span><div class=3D"HOEnZb"><div class=3D"h5"><br>
<br>
______________________________<u></u>_________________<br>
xen-api mailing list<br>
<a href=3D"mailto:xen-api@lists.xensource.com" target=3D"_blank">xen-api@li=
sts.xensource.com</a><br>
<a href=3D"http://lists.xensource.com/mailman/listinfo/xen-api" target=3D"_=
blank">http://lists.xensource.com/<u></u>mailman/listinfo/xen-api</a><br>
</div></div></blockquote></div><br></div>

--90e6ba4769b1e7761904b2913ca5--


--===============4263631468751425630==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

--===============4263631468751425630==--


From xen-api-bounces@lists.xensource.com Mon Nov 28 18:57:58 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Mon, 28 Nov 2011 18:57:58 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RV6Ok-00031K-Uo; Mon, 28 Nov 2011 18:57:50 +0000
Received: from mail216.messagelabs.com ([85.158.143.99])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <mike.mcclurg@citrix.com>) id 1RV6Oj-00030K-M2
	for xen-api@lists.xensource.com; Mon, 28 Nov 2011 18:57:49 +0000
X-Env-Sender: mike.mcclurg@citrix.com
X-Msg-Ref: server-12.tower-216.messagelabs.com!1322506632!5381622!1
X-Originating-IP: [66.165.176.89]
X-SpamReason: No, hits=0.0 required=7.0 tests=sa_preprocessor: 
	VHJ1c3RlZCBJUDogNjYuMTY1LjE3Ni44OSA9PiAxMDE3NDY=\n
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 8240 invoked from network); 28 Nov 2011 18:57:13 -0000
Received: from smtp.citrix.com (HELO SMTP.CITRIX.COM) (66.165.176.89)
	by server-12.tower-216.messagelabs.com with RC4-SHA encrypted SMTP;
	28 Nov 2011 18:57:13 -0000
X-IronPort-AV: E=Sophos;i="4.69,585,1315195200"; d="scan'208";a="19463351"
Received: from ftlpmailmx01.citrite.net ([10.13.107.65])
	by FTLPIPO01.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	28 Nov 2011 13:57:11 -0500
Received: from [10.80.2.141] (10.80.2.141) by FTLPMAILMX01.citrite.net
	(10.13.107.65) with Microsoft SMTP Server id 8.3.213.0; Mon, 28 Nov 2011
	13:57:11 -0500
Message-ID: <4ED3D986.30007@citrix.com>
Date: Mon, 28 Nov 2011 18:57:10 +0000
From: Mike McClurg <mike.mcclurg@citrix.com>
User-Agent: Mozilla/5.0 (X11; Linux i686;
	rv:8.0) Gecko/20111110 Thunderbird/8.0
MIME-Version: 1.0
To: "msgbox450@gmail.com" <msgbox450@gmail.com>
References: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
	<D8E930DC-56A7-4334-B155-8B6F98EEFBDE@eu.citrix.com>
	<CAMrPLWLT3uc-MEJNz0qi8U6HshU-P-7OzLgZMi4OLK+3fpEPsg@mail.gmail.com>
	<CAMrPLWK016xpbtDB2964tU9YhWwjZgc=8-LE7FOHyoOb4ijgdQ@mail.gmail.com>
	<4ECFB1BB.1050201@citrix.com>
	<CAFGpm272OHEyz6eGwB2rDHdVMVkH=iC0LPKxUucnG8oku+-_Kg@mail.gmail.com>
In-Reply-To: <CAFGpm272OHEyz6eGwB2rDHdVMVkH=iC0LPKxUucnG8oku+-_Kg@mail.gmail.com>
X-Enigmail-Version: 1.3.3
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] OpenStack on Ubuntu Kronos
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

On 25/11/11 15:59, msgbox450@gmail.com wrote:
> This looks like it may help me too, I hit a similar issue, so thanks for
> that :)
> 
> p.s. Mike, what is the general state of Kronos now, I figure it should
> be getting close to release stage now or have there been setbacks? Given
> the recent posts I'm thinking of having another run through installing
> Ubuntu this weekend to see if I can build the stack successfully this
> time :)
> 

The state of Kronos overall is good. Jon and I are in the middle
tweaking our build infrastructure and refactoring our debian packages.
This means that, while the Kronos code is approaching stability, our
packages are in a bit of a flux. I think that we've done just about all
the package and dependency renaming we plan on doing, though, and
hopefully we'll have our build system tweaks finished by the end of the
week. I'll make a post to the list soon to give an update.

Mike

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Mon Nov 28 18:57:58 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Mon, 28 Nov 2011 18:57:58 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RV6Ok-00031K-Uo; Mon, 28 Nov 2011 18:57:50 +0000
Received: from mail216.messagelabs.com ([85.158.143.99])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <mike.mcclurg@citrix.com>) id 1RV6Oj-00030K-M2
	for xen-api@lists.xensource.com; Mon, 28 Nov 2011 18:57:49 +0000
X-Env-Sender: mike.mcclurg@citrix.com
X-Msg-Ref: server-12.tower-216.messagelabs.com!1322506632!5381622!1
X-Originating-IP: [66.165.176.89]
X-SpamReason: No, hits=0.0 required=7.0 tests=sa_preprocessor: 
	VHJ1c3RlZCBJUDogNjYuMTY1LjE3Ni44OSA9PiAxMDE3NDY=\n
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 8240 invoked from network); 28 Nov 2011 18:57:13 -0000
Received: from smtp.citrix.com (HELO SMTP.CITRIX.COM) (66.165.176.89)
	by server-12.tower-216.messagelabs.com with RC4-SHA encrypted SMTP;
	28 Nov 2011 18:57:13 -0000
X-IronPort-AV: E=Sophos;i="4.69,585,1315195200"; d="scan'208";a="19463351"
Received: from ftlpmailmx01.citrite.net ([10.13.107.65])
	by FTLPIPO01.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	28 Nov 2011 13:57:11 -0500
Received: from [10.80.2.141] (10.80.2.141) by FTLPMAILMX01.citrite.net
	(10.13.107.65) with Microsoft SMTP Server id 8.3.213.0; Mon, 28 Nov 2011
	13:57:11 -0500
Message-ID: <4ED3D986.30007@citrix.com>
Date: Mon, 28 Nov 2011 18:57:10 +0000
From: Mike McClurg <mike.mcclurg@citrix.com>
User-Agent: Mozilla/5.0 (X11; Linux i686;
	rv:8.0) Gecko/20111110 Thunderbird/8.0
MIME-Version: 1.0
To: "msgbox450@gmail.com" <msgbox450@gmail.com>
References: <CAMrPLWKS8+GypDjtK4ZW2j6W4zgkdhG8LtAn1QmDtnz7LBMxQA@mail.gmail.com>
	<D8E930DC-56A7-4334-B155-8B6F98EEFBDE@eu.citrix.com>
	<CAMrPLWLT3uc-MEJNz0qi8U6HshU-P-7OzLgZMi4OLK+3fpEPsg@mail.gmail.com>
	<CAMrPLWK016xpbtDB2964tU9YhWwjZgc=8-LE7FOHyoOb4ijgdQ@mail.gmail.com>
	<4ECFB1BB.1050201@citrix.com>
	<CAFGpm272OHEyz6eGwB2rDHdVMVkH=iC0LPKxUucnG8oku+-_Kg@mail.gmail.com>
In-Reply-To: <CAFGpm272OHEyz6eGwB2rDHdVMVkH=iC0LPKxUucnG8oku+-_Kg@mail.gmail.com>
X-Enigmail-Version: 1.3.3
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] OpenStack on Ubuntu Kronos
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

On 25/11/11 15:59, msgbox450@gmail.com wrote:
> This looks like it may help me too, I hit a similar issue, so thanks for
> that :)
> 
> p.s. Mike, what is the general state of Kronos now, I figure it should
> be getting close to release stage now or have there been setbacks? Given
> the recent posts I'm thinking of having another run through installing
> Ubuntu this weekend to see if I can build the stack successfully this
> time :)
> 

The state of Kronos overall is good. Jon and I are in the middle
tweaking our build infrastructure and refactoring our debian packages.
This means that, while the Kronos code is approaching stability, our
packages are in a bit of a flux. I think that we've done just about all
the package and dependency renaming we plan on doing, though, and
hopefully we'll have our build system tweaks finished by the end of the
week. I'll make a post to the list soon to give an update.

Mike

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Tue Nov 29 06:08:01 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 29 Nov 2011 06:08:01 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVGrB-0001Y0-63; Tue, 29 Nov 2011 06:07:53 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <bill@thebaums.org>) id 1RVGrA-0001Xv-BQ
	for xen-api@lists.xensource.com; Tue, 29 Nov 2011 06:07:52 +0000
X-Env-Sender: bill@thebaums.org
X-Msg-Ref: server-9.tower-27.messagelabs.com!1322546809!54622887!1
X-Originating-IP: [209.85.214.43]
X-SpamReason: No, hits=1.2 required=7.0 tests=HTML_10_20,HTML_MESSAGE,
	RCVD_BY_IP
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 16477 invoked from network); 29 Nov 2011 06:06:50 -0000
Received: from mail-bw0-f43.google.com (HELO mail-bw0-f43.google.com)
	(209.85.214.43)
	by server-9.tower-27.messagelabs.com with RC4-SHA encrypted SMTP;
	29 Nov 2011 06:06:50 -0000
Received: by bkbzt12 with SMTP id zt12so12515506bkb.30
	for <xen-api@lists.xensource.com>; Mon, 28 Nov 2011 22:07:19 -0800 (PST)
MIME-Version: 1.0
Received: by 10.205.121.1 with SMTP id ga1mr46363327bkc.60.1322546838917; Mon,
	28 Nov 2011 22:07:18 -0800 (PST)
Received: by 10.223.74.129 with HTTP; Mon, 28 Nov 2011 22:07:18 -0800 (PST)
Date: Tue, 29 Nov 2011 00:07:18 -0600
Message-ID: <CAEOParg5z3fk=FVoqZek0mb=J4u_LimdaDgj_Mitu=9qA=+HRg@mail.gmail.com>
From: William Baum <bill@thebaums.org>
To: xen-api@lists.xensource.com
Subject: [Xen-API] XCP 1.1 kernel rpm's
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: multipart/mixed; boundary="===============4386516516579376006=="
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

--===============4386516516579376006==
Content-Type: multipart/alternative; boundary=0015173ff05088537004b2d96e88

--0015173ff05088537004b2d96e88
Content-Type: text/plain; charset=ISO-8859-1

I made binary rpms from kernel-2.6.32.12-0.7.1.xs1.1.0.327.170596.src.rpm

Available:

kernel-kdump-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
kernel-utility-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
kernel-utility-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
kernel-xen-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
kernel-xen-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
kernel-extra-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
kernel-firmware-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
kernel-kdump-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm

Download from http://ge.tt/8OUH0VA

I was able to successfully build a nic driver by installing the
kernel-xen-devel (headers) package into an XCP build box, although one
should be able to easily update a DDK..

--Bill

--0015173ff05088537004b2d96e88
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

I made binary rpms from kernel-2.6.32.12-0.7.1.xs1.1.0.327.170596.src.rpm<b=
r><br>Available:<br><br>kernel-kdump-devel-2.6.32.12-0.7.1.xs1.1.0.327.1705=
96.i686.rpm<br>kernel-utility-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm<b=
r>
kernel-utility-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm<br>kernel-=
xen-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm<br>kernel-xen-devel-2.6.32.=
12-0.7.1.xs1.1.0.327.170596.i686.rpm<br>kernel-extra-devel-2.6.32.12-0.7.1.=
xs1.1.0.327.170596.i686.rpm<br>
kernel-firmware-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm<br>kernel-kdump=
-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm<br><br>Download from <a href=
=3D"http://ge.tt/8OUH0VA">http://ge.tt/8OUH0VA</a><br><br>I was able to suc=
cessfully build a nic driver by installing the kernel-xen-devel (headers) p=
ackage into an XCP build box, although one should be able to easily update =
a DDK..<br>
<br>--Bill<br><br><br><br><br><br><br>

--0015173ff05088537004b2d96e88--


--===============4386516516579376006==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

--===============4386516516579376006==--


From xen-api-bounces@lists.xensource.com Tue Nov 29 06:08:01 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 29 Nov 2011 06:08:01 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVGrB-0001Y0-63; Tue, 29 Nov 2011 06:07:53 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <bill@thebaums.org>) id 1RVGrA-0001Xv-BQ
	for xen-api@lists.xensource.com; Tue, 29 Nov 2011 06:07:52 +0000
X-Env-Sender: bill@thebaums.org
X-Msg-Ref: server-9.tower-27.messagelabs.com!1322546809!54622887!1
X-Originating-IP: [209.85.214.43]
X-SpamReason: No, hits=1.2 required=7.0 tests=HTML_10_20,HTML_MESSAGE,
	RCVD_BY_IP
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 16477 invoked from network); 29 Nov 2011 06:06:50 -0000
Received: from mail-bw0-f43.google.com (HELO mail-bw0-f43.google.com)
	(209.85.214.43)
	by server-9.tower-27.messagelabs.com with RC4-SHA encrypted SMTP;
	29 Nov 2011 06:06:50 -0000
Received: by bkbzt12 with SMTP id zt12so12515506bkb.30
	for <xen-api@lists.xensource.com>; Mon, 28 Nov 2011 22:07:19 -0800 (PST)
MIME-Version: 1.0
Received: by 10.205.121.1 with SMTP id ga1mr46363327bkc.60.1322546838917; Mon,
	28 Nov 2011 22:07:18 -0800 (PST)
Received: by 10.223.74.129 with HTTP; Mon, 28 Nov 2011 22:07:18 -0800 (PST)
Date: Tue, 29 Nov 2011 00:07:18 -0600
Message-ID: <CAEOParg5z3fk=FVoqZek0mb=J4u_LimdaDgj_Mitu=9qA=+HRg@mail.gmail.com>
From: William Baum <bill@thebaums.org>
To: xen-api@lists.xensource.com
Subject: [Xen-API] XCP 1.1 kernel rpm's
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: multipart/mixed; boundary="===============4386516516579376006=="
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

--===============4386516516579376006==
Content-Type: multipart/alternative; boundary=0015173ff05088537004b2d96e88

--0015173ff05088537004b2d96e88
Content-Type: text/plain; charset=ISO-8859-1

I made binary rpms from kernel-2.6.32.12-0.7.1.xs1.1.0.327.170596.src.rpm

Available:

kernel-kdump-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
kernel-utility-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
kernel-utility-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
kernel-xen-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
kernel-xen-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
kernel-extra-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
kernel-firmware-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
kernel-kdump-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm

Download from http://ge.tt/8OUH0VA

I was able to successfully build a nic driver by installing the
kernel-xen-devel (headers) package into an XCP build box, although one
should be able to easily update a DDK..

--Bill

--0015173ff05088537004b2d96e88
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

I made binary rpms from kernel-2.6.32.12-0.7.1.xs1.1.0.327.170596.src.rpm<b=
r><br>Available:<br><br>kernel-kdump-devel-2.6.32.12-0.7.1.xs1.1.0.327.1705=
96.i686.rpm<br>kernel-utility-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm<b=
r>
kernel-utility-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm<br>kernel-=
xen-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm<br>kernel-xen-devel-2.6.32.=
12-0.7.1.xs1.1.0.327.170596.i686.rpm<br>kernel-extra-devel-2.6.32.12-0.7.1.=
xs1.1.0.327.170596.i686.rpm<br>
kernel-firmware-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm<br>kernel-kdump=
-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm<br><br>Download from <a href=
=3D"http://ge.tt/8OUH0VA">http://ge.tt/8OUH0VA</a><br><br>I was able to suc=
cessfully build a nic driver by installing the kernel-xen-devel (headers) p=
ackage into an XCP build box, although one should be able to easily update =
a DDK..<br>
<br>--Bill<br><br><br><br><br><br><br>

--0015173ff05088537004b2d96e88--


--===============4386516516579376006==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

--===============4386516516579376006==--


From xen-api-bounces@lists.xensource.com Tue Nov 29 11:08:15 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 29 Nov 2011 11:08:15 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVLXk-0000Ce-Rz; Tue, 29 Nov 2011 11:08:08 +0000
Received: from mail21.messagelabs.com ([85.158.143.35])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <Dave.Scott@eu.citrix.com>) id 1RVLXj-0000CW-Cv
	for xen-api@lists.xensource.com; Tue, 29 Nov 2011 11:08:07 +0000
X-Env-Sender: Dave.Scott@eu.citrix.com
X-Msg-Ref: server-11.tower-21.messagelabs.com!1322564849!6038499!1
X-Originating-IP: [62.200.22.115]
X-SpamReason: No, hits=0.0 required=7.0 tests=sa_preprocessor: 
	VHJ1c3RlZCBJUDogNjIuMjAwLjIyLjExNSA9PiA5MTAwNw==\n
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 19741 invoked from network); 29 Nov 2011 11:07:30 -0000
Received: from smtp.eu.citrix.com (HELO SMTP.EU.CITRIX.COM) (62.200.22.115)
	by server-11.tower-21.messagelabs.com with RC4-SHA encrypted SMTP;
	29 Nov 2011 11:07:30 -0000
X-IronPort-AV: E=Sophos;i="4.69,590,1315180800"; 
   d="scan'208";a="9181427"
Received: from lonpmailmx02.citrite.net ([10.30.203.163])
	by LONPIPO01.EU.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	29 Nov 2011 11:06:56 +0000
Received: from LONPMAILBOX01.citrite.net ([10.30.224.161]) by
	LONPMAILMX02.citrite.net ([10.30.203.163]) with mapi; Tue, 29 Nov 2011
	11:06:56 +0000
From: Dave Scott <Dave.Scott@eu.citrix.com>
To: xen-api <xen-api@lists.xensource.com>
Date: Tue, 29 Nov 2011 11:06:55 +0000
Thread-Topic: making it easier to install VMs on XCP
Thread-Index: AcyuhwDWwYxmuXZNRXa4FUfJI2V5WA==
Message-ID: <81A73678E76EA642801C8F2E4823AD21C4F901F513@LONPMAILBOX01.citrite.net>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
acceptlanguage: en-US
MIME-Version: 1.0
Subject: [Xen-API] making it easier to install VMs on XCP
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Hi,

I've been chatting to various people about ways of making it easier to install VMs (particularly Linux ones) on XCP. If you're a CLI user then it takes quite a few steps to (eg) set up a network install of a debian VM. I think we can make this a lot simpler; I've made some notes on the wiki:

http://wiki.xen.org/wiki/Making_it_easier_to_install_VMs_on_XCP

It would be awesome if you could install a VM like this:

# xe vm-install template="Debian 6.0" new-name-label=debian auto-install=true
# xe vm-start vm=debian

And have sensible defaults (e.g. network URL, preseed file) used throughout.

Let me know what you think!

Cheers,
Dave

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Tue Nov 29 11:08:15 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 29 Nov 2011 11:08:15 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVLXk-0000Ce-Rz; Tue, 29 Nov 2011 11:08:08 +0000
Received: from mail21.messagelabs.com ([85.158.143.35])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <Dave.Scott@eu.citrix.com>) id 1RVLXj-0000CW-Cv
	for xen-api@lists.xensource.com; Tue, 29 Nov 2011 11:08:07 +0000
X-Env-Sender: Dave.Scott@eu.citrix.com
X-Msg-Ref: server-11.tower-21.messagelabs.com!1322564849!6038499!1
X-Originating-IP: [62.200.22.115]
X-SpamReason: No, hits=0.0 required=7.0 tests=sa_preprocessor: 
	VHJ1c3RlZCBJUDogNjIuMjAwLjIyLjExNSA9PiA5MTAwNw==\n
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 19741 invoked from network); 29 Nov 2011 11:07:30 -0000
Received: from smtp.eu.citrix.com (HELO SMTP.EU.CITRIX.COM) (62.200.22.115)
	by server-11.tower-21.messagelabs.com with RC4-SHA encrypted SMTP;
	29 Nov 2011 11:07:30 -0000
X-IronPort-AV: E=Sophos;i="4.69,590,1315180800"; 
   d="scan'208";a="9181427"
Received: from lonpmailmx02.citrite.net ([10.30.203.163])
	by LONPIPO01.EU.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	29 Nov 2011 11:06:56 +0000
Received: from LONPMAILBOX01.citrite.net ([10.30.224.161]) by
	LONPMAILMX02.citrite.net ([10.30.203.163]) with mapi; Tue, 29 Nov 2011
	11:06:56 +0000
From: Dave Scott <Dave.Scott@eu.citrix.com>
To: xen-api <xen-api@lists.xensource.com>
Date: Tue, 29 Nov 2011 11:06:55 +0000
Thread-Topic: making it easier to install VMs on XCP
Thread-Index: AcyuhwDWwYxmuXZNRXa4FUfJI2V5WA==
Message-ID: <81A73678E76EA642801C8F2E4823AD21C4F901F513@LONPMAILBOX01.citrite.net>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
acceptlanguage: en-US
MIME-Version: 1.0
Subject: [Xen-API] making it easier to install VMs on XCP
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Hi,

I've been chatting to various people about ways of making it easier to install VMs (particularly Linux ones) on XCP. If you're a CLI user then it takes quite a few steps to (eg) set up a network install of a debian VM. I think we can make this a lot simpler; I've made some notes on the wiki:

http://wiki.xen.org/wiki/Making_it_easier_to_install_VMs_on_XCP

It would be awesome if you could install a VM like this:

# xe vm-install template="Debian 6.0" new-name-label=debian auto-install=true
# xe vm-start vm=debian

And have sensible defaults (e.g. network URL, preseed file) used throughout.

Let me know what you think!

Cheers,
Dave

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Tue Nov 29 11:18:15 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 29 Nov 2011 11:18:15 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVLhR-0000SU-91; Tue, 29 Nov 2011 11:18:09 +0000
Received: from mail21.messagelabs.com ([85.158.143.35])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <andrew.pounce@citrix.com>) id 1RVLhQ-0000SO-A7
	for xen-api@lists.xen.org; Tue, 29 Nov 2011 11:18:08 +0000
X-Env-Sender: andrew.pounce@citrix.com
X-Msg-Ref: server-2.tower-21.messagelabs.com!1322565450!476018!1
X-Originating-IP: [62.200.22.115]
X-SpamReason: No, hits=0.0 required=7.0 tests=sa_preprocessor: 
	VHJ1c3RlZCBJUDogNjIuMjAwLjIyLjExNSA9PiA5MTAwNw==\n
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 11227 invoked from network); 29 Nov 2011 11:17:31 -0000
Received: from smtp.ctxuk.citrix.com (HELO SMTP.EU.CITRIX.COM) (62.200.22.115)
	by server-2.tower-21.messagelabs.com with RC4-SHA encrypted SMTP;
	29 Nov 2011 11:17:31 -0000
X-IronPort-AV: E=Sophos;i="4.69,590,1315180800"; 
   d="scan'208";a="9181903"
Received: from lonpmailmx01.citrite.net ([10.30.203.162])
	by LONPIPO01.EU.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	29 Nov 2011 11:17:28 +0000
Received: from norwich.cam.xci-test.com (10.80.248.129) by
	smtprelay.citrix.com (10.30.203.162) with Microsoft SMTP Server id
	8.3.213.0; Tue, 29 Nov 2011 11:17:28 +0000
Received: from dust.cam.xci-test.com ([10.80.248.95] helo=dust)	by
	norwich.cam.xci-test.com with esmtp (Exim 4.72)	(envelope-from
	<andrew.pounce@citrix.com>)	id 1RVLgm-0002mj-4t;
	Tue, 29 Nov 2011 11:17:28 +0000
Received: from andrewpou by dust with local (Exim 4.76)	(envelope-from
	<andrew.pounce@citrix.com>)	id 1RVLgm-0003us-0V;
	Tue, 29 Nov 2011 11:17:28 +0000
Date: Tue, 29 Nov 2011 11:17:28 +0000
From: Andrew <andrew.pounce@citrix.com>
To: Dave Scott <Dave.Scott@eu.citrix.com>
Message-ID: <20111129111727.GC9987@citrix.com>
References: <81A73678E76EA642801C8F2E4823AD21C4F901F513@LONPMAILBOX01.citrite.net>
MIME-Version: 1.0
Content-Disposition: inline
In-Reply-To: <81A73678E76EA642801C8F2E4823AD21C4F901F513@LONPMAILBOX01.citrite.net>
User-Agent: Mutt/1.5.21 (2010-09-15)
Cc: xen-api@lists.xen.org
Subject: Re: [Xen-API] making it easier to install VMs on XCP
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Hi Dave,

One of the things that I really miss is just using debootstrap to create an install.  

I either use debootstrap on a lv on my xen machines or netboot physical machines and use the same method - having to make use of the installer is less than ideal from my perspective.

 -Andrew

On Tue, Nov 29, 2011 at 11:06:55AM +0000, Dave Scott wrote:
> Hi,
> 
> I've been chatting to various people about ways of making it easier to install VMs (particularly Linux ones) on XCP. If you're a CLI user then it takes quite a few steps to (eg) set up a network install of a debian VM. I think we can make this a lot simpler; I've made some notes on the wiki:
> 
> http://wiki.xen.org/wiki/Making_it_easier_to_install_VMs_on_XCP
> 
> It would be awesome if you could install a VM like this:
> 
> # xe vm-install template="Debian 6.0" new-name-label=debian auto-install=true
> # xe vm-start vm=debian
> 
> And have sensible defaults (e.g. network URL, preseed file) used throughout.
> 
> Let me know what you think!
> 
> Cheers,
> Dave
> 
> _______________________________________________
> xen-api mailing list
> xen-api@lists.xensource.com
> http://lists.xensource.com/mailman/listinfo/xen-api

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Tue Nov 29 11:18:15 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 29 Nov 2011 11:18:15 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVLhR-0000SU-91; Tue, 29 Nov 2011 11:18:09 +0000
Received: from mail21.messagelabs.com ([85.158.143.35])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <andrew.pounce@citrix.com>) id 1RVLhQ-0000SO-A7
	for xen-api@lists.xen.org; Tue, 29 Nov 2011 11:18:08 +0000
X-Env-Sender: andrew.pounce@citrix.com
X-Msg-Ref: server-2.tower-21.messagelabs.com!1322565450!476018!1
X-Originating-IP: [62.200.22.115]
X-SpamReason: No, hits=0.0 required=7.0 tests=sa_preprocessor: 
	VHJ1c3RlZCBJUDogNjIuMjAwLjIyLjExNSA9PiA5MTAwNw==\n
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 11227 invoked from network); 29 Nov 2011 11:17:31 -0000
Received: from smtp.ctxuk.citrix.com (HELO SMTP.EU.CITRIX.COM) (62.200.22.115)
	by server-2.tower-21.messagelabs.com with RC4-SHA encrypted SMTP;
	29 Nov 2011 11:17:31 -0000
X-IronPort-AV: E=Sophos;i="4.69,590,1315180800"; 
   d="scan'208";a="9181903"
Received: from lonpmailmx01.citrite.net ([10.30.203.162])
	by LONPIPO01.EU.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	29 Nov 2011 11:17:28 +0000
Received: from norwich.cam.xci-test.com (10.80.248.129) by
	smtprelay.citrix.com (10.30.203.162) with Microsoft SMTP Server id
	8.3.213.0; Tue, 29 Nov 2011 11:17:28 +0000
Received: from dust.cam.xci-test.com ([10.80.248.95] helo=dust)	by
	norwich.cam.xci-test.com with esmtp (Exim 4.72)	(envelope-from
	<andrew.pounce@citrix.com>)	id 1RVLgm-0002mj-4t;
	Tue, 29 Nov 2011 11:17:28 +0000
Received: from andrewpou by dust with local (Exim 4.76)	(envelope-from
	<andrew.pounce@citrix.com>)	id 1RVLgm-0003us-0V;
	Tue, 29 Nov 2011 11:17:28 +0000
Date: Tue, 29 Nov 2011 11:17:28 +0000
From: Andrew <andrew.pounce@citrix.com>
To: Dave Scott <Dave.Scott@eu.citrix.com>
Message-ID: <20111129111727.GC9987@citrix.com>
References: <81A73678E76EA642801C8F2E4823AD21C4F901F513@LONPMAILBOX01.citrite.net>
MIME-Version: 1.0
Content-Disposition: inline
In-Reply-To: <81A73678E76EA642801C8F2E4823AD21C4F901F513@LONPMAILBOX01.citrite.net>
User-Agent: Mutt/1.5.21 (2010-09-15)
Cc: xen-api@lists.xen.org
Subject: Re: [Xen-API] making it easier to install VMs on XCP
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Hi Dave,

One of the things that I really miss is just using debootstrap to create an install.  

I either use debootstrap on a lv on my xen machines or netboot physical machines and use the same method - having to make use of the installer is less than ideal from my perspective.

 -Andrew

On Tue, Nov 29, 2011 at 11:06:55AM +0000, Dave Scott wrote:
> Hi,
> 
> I've been chatting to various people about ways of making it easier to install VMs (particularly Linux ones) on XCP. If you're a CLI user then it takes quite a few steps to (eg) set up a network install of a debian VM. I think we can make this a lot simpler; I've made some notes on the wiki:
> 
> http://wiki.xen.org/wiki/Making_it_easier_to_install_VMs_on_XCP
> 
> It would be awesome if you could install a VM like this:
> 
> # xe vm-install template="Debian 6.0" new-name-label=debian auto-install=true
> # xe vm-start vm=debian
> 
> And have sensible defaults (e.g. network URL, preseed file) used throughout.
> 
> Let me know what you think!
> 
> Cheers,
> Dave
> 
> _______________________________________________
> xen-api mailing list
> xen-api@lists.xensource.com
> http://lists.xensource.com/mailman/listinfo/xen-api

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Tue Nov 29 11:22:38 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 29 Nov 2011 11:22:38 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVLlg-0000Xb-Qz; Tue, 29 Nov 2011 11:22:32 +0000
Received: from mail21.messagelabs.com ([85.158.143.35])
	by lists.xen.org with smtp (Exim 4.72)
	(envelope-from <jakob@praher.info>) id 1RVLlf-0000XW-AI
	for xen-api@lists.xensource.com; Tue, 29 Nov 2011 11:22:31 +0000
X-Env-Sender: jakob@praher.info
X-Msg-Ref: server-15.tower-21.messagelabs.com!1322565714!6213505!1
X-Originating-IP: [83.164.192.85]
X-SpamReason: No, hits=0.0 required=7.0 tests=
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 18410 invoked from network); 29 Nov 2011 11:21:54 -0000
Received: from r2.relay.mail.lagis.at (HELO r2.relay.mail.lagis.at)
	(83.164.192.85) by server-15.tower-21.messagelabs.com with SMTP;
	29 Nov 2011 11:21:54 -0000
Received: from mail2.farm.prahersoft.com (unknown [83.164.139.102])
	by reseller.relay.mail.lagis.at (Postfix) with ESMTP id 38350880A8;
	Tue, 29 Nov 2011 12:21:51 +0100 (CET)
Received: from localhost (mail2.farm.prahersoft.com [127.0.0.1])
	by mail2.farm.prahersoft.com (iRedMail) with ESMTP id AF89A7EB6A;
	Tue, 29 Nov 2011 12:21:46 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=praher.info; h=
	content-transfer-encoding:user-agent:reply-to:content-type
	:mime-version:date:subject:message-id:from:to:in-reply-to
	:x-virus-scanned; s=dkim; t=1322565706; x=1323429706; bh=7XgxfUa
	abSKidrE+1VPWp4d1VnPJ3twd/krzStWG+ME=; b=QdkDNN3L0l1aAZIPCl7i0TR
	m1sRqwaE4JdkXvzzZfxIJdz971YbzAqZKEUhFA4Nl2qD6efvxXp0wXJDrypVfVTw
	46ElHPGu5fSslCJ4+fhwuSKA6kLtLAUF86E12eAMYf4praEb2J0Y3Cm9+ox9SAaE
	WgDnJs0RtsT4mFi1Qv90=
X-Virus-Scanned: Debian amavisd-new at xenU_syssrv-mail2
Received: from mail2.farm.prahersoft.com ([127.0.0.1])
	by localhost (mail2.farm.prahersoft.com [127.0.0.1]) (amavisd-new,
	port 10024)
	with ESMTP id 6a+I-LKPMP5d; Tue, 29 Nov 2011 12:21:46 +0100 (CET)
Received: from xenU_syssrv-calendar (unknown [172.16.212.180])
	by mail2.farm.prahersoft.com (iRedMail) with ESMTP id 527607EB69;
	Tue, 29 Nov 2011 12:21:45 +0100 (CET)
in-reply-to: <81A73678E76EA642801C8F2E4823AD21C4F901F513@LONPMAILBOX01.citrite.net>
to: "Dave Scott" <Dave.Scott@eu.citrix.com>
from: "Jakob Praher" <jakob@praher.info>
message-id: <339e-4ed4c080-7-61bea680@114951752>
X-Forward: webmail.praher.info
date: Tue, 29 Nov 2011 12:21:45 +0100
MIME-Version: 1.0
User-Agent: SOGoMail 1.3.4
Cc: xen-api <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] making it easier to install VMs on XCP
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
Reply-To: Jakob Praher <jakob@praher.info>
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Hi Scott,

this would be really great! Also adapting the disk size would be great feature to pass as option (to override the template settings).
Back in my plain Xen days, I was using xen-tools which is using plain deboostrap for bootrstrapping plus a set of scripts to adapt the image (mount the disk and patch config files).

Passing parameters to the installer via kernel params is tedious.
What are your concrete plans? Maybe using deboostrap on a vdi plugged to the control domain is a cheap work-around.

Best,
Jakob

 
Am Dienstag, 29. November 2011 12:06 CET, Dave Scott <Dave.Scott@eu.citrix.com> schrieb: 
 
> Hi,
> 
> I've been chatting to various people about ways of making it easier to install VMs (particularly Linux ones) on XCP. If you're a CLI user then it takes quite a few steps to (eg) set up a network install of a debian VM. I think we can make this a lot simpler; I've made some notes on the wiki:
> 
> http://wiki.xen.org/wiki/Making_it_easier_to_install_VMs_on_XCP
> 
> It would be awesome if you could install a VM like this:
> 
> # xe vm-install template="Debian 6.0" new-name-label=debian auto-install=true
> # xe vm-start vm=debian
> 
> And have sensible defaults (e.g. network URL, preseed file) used throughout.
> 
> Let me know what you think!
> 
> Cheers,
> Dave
> 
> _______________________________________________
> xen-api mailing list
> xen-api@lists.xensource.com
> http://lists.xensource.com/mailman/listinfo/xen-api
 
 
 
 


_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Tue Nov 29 11:22:38 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 29 Nov 2011 11:22:38 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVLlg-0000Xb-Qz; Tue, 29 Nov 2011 11:22:32 +0000
Received: from mail21.messagelabs.com ([85.158.143.35])
	by lists.xen.org with smtp (Exim 4.72)
	(envelope-from <jakob@praher.info>) id 1RVLlf-0000XW-AI
	for xen-api@lists.xensource.com; Tue, 29 Nov 2011 11:22:31 +0000
X-Env-Sender: jakob@praher.info
X-Msg-Ref: server-15.tower-21.messagelabs.com!1322565714!6213505!1
X-Originating-IP: [83.164.192.85]
X-SpamReason: No, hits=0.0 required=7.0 tests=
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 18410 invoked from network); 29 Nov 2011 11:21:54 -0000
Received: from r2.relay.mail.lagis.at (HELO r2.relay.mail.lagis.at)
	(83.164.192.85) by server-15.tower-21.messagelabs.com with SMTP;
	29 Nov 2011 11:21:54 -0000
Received: from mail2.farm.prahersoft.com (unknown [83.164.139.102])
	by reseller.relay.mail.lagis.at (Postfix) with ESMTP id 38350880A8;
	Tue, 29 Nov 2011 12:21:51 +0100 (CET)
Received: from localhost (mail2.farm.prahersoft.com [127.0.0.1])
	by mail2.farm.prahersoft.com (iRedMail) with ESMTP id AF89A7EB6A;
	Tue, 29 Nov 2011 12:21:46 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=praher.info; h=
	content-transfer-encoding:user-agent:reply-to:content-type
	:mime-version:date:subject:message-id:from:to:in-reply-to
	:x-virus-scanned; s=dkim; t=1322565706; x=1323429706; bh=7XgxfUa
	abSKidrE+1VPWp4d1VnPJ3twd/krzStWG+ME=; b=QdkDNN3L0l1aAZIPCl7i0TR
	m1sRqwaE4JdkXvzzZfxIJdz971YbzAqZKEUhFA4Nl2qD6efvxXp0wXJDrypVfVTw
	46ElHPGu5fSslCJ4+fhwuSKA6kLtLAUF86E12eAMYf4praEb2J0Y3Cm9+ox9SAaE
	WgDnJs0RtsT4mFi1Qv90=
X-Virus-Scanned: Debian amavisd-new at xenU_syssrv-mail2
Received: from mail2.farm.prahersoft.com ([127.0.0.1])
	by localhost (mail2.farm.prahersoft.com [127.0.0.1]) (amavisd-new,
	port 10024)
	with ESMTP id 6a+I-LKPMP5d; Tue, 29 Nov 2011 12:21:46 +0100 (CET)
Received: from xenU_syssrv-calendar (unknown [172.16.212.180])
	by mail2.farm.prahersoft.com (iRedMail) with ESMTP id 527607EB69;
	Tue, 29 Nov 2011 12:21:45 +0100 (CET)
in-reply-to: <81A73678E76EA642801C8F2E4823AD21C4F901F513@LONPMAILBOX01.citrite.net>
to: "Dave Scott" <Dave.Scott@eu.citrix.com>
from: "Jakob Praher" <jakob@praher.info>
message-id: <339e-4ed4c080-7-61bea680@114951752>
X-Forward: webmail.praher.info
date: Tue, 29 Nov 2011 12:21:45 +0100
MIME-Version: 1.0
User-Agent: SOGoMail 1.3.4
Cc: xen-api <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] making it easier to install VMs on XCP
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
Reply-To: Jakob Praher <jakob@praher.info>
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Hi Scott,

this would be really great! Also adapting the disk size would be great feature to pass as option (to override the template settings).
Back in my plain Xen days, I was using xen-tools which is using plain deboostrap for bootrstrapping plus a set of scripts to adapt the image (mount the disk and patch config files).

Passing parameters to the installer via kernel params is tedious.
What are your concrete plans? Maybe using deboostrap on a vdi plugged to the control domain is a cheap work-around.

Best,
Jakob

 
Am Dienstag, 29. November 2011 12:06 CET, Dave Scott <Dave.Scott@eu.citrix.com> schrieb: 
 
> Hi,
> 
> I've been chatting to various people about ways of making it easier to install VMs (particularly Linux ones) on XCP. If you're a CLI user then it takes quite a few steps to (eg) set up a network install of a debian VM. I think we can make this a lot simpler; I've made some notes on the wiki:
> 
> http://wiki.xen.org/wiki/Making_it_easier_to_install_VMs_on_XCP
> 
> It would be awesome if you could install a VM like this:
> 
> # xe vm-install template="Debian 6.0" new-name-label=debian auto-install=true
> # xe vm-start vm=debian
> 
> And have sensible defaults (e.g. network URL, preseed file) used throughout.
> 
> Let me know what you think!
> 
> Cheers,
> Dave
> 
> _______________________________________________
> xen-api mailing list
> xen-api@lists.xensource.com
> http://lists.xensource.com/mailman/listinfo/xen-api
 
 
 
 


_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Tue Nov 29 12:01:51 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 29 Nov 2011 12:01:51 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVMNb-0001Dk-LK; Tue, 29 Nov 2011 12:01:43 +0000
Received: from mail174.messagelabs.com ([85.158.138.51])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <mike.mcclurg@citrix.com>) id 1RVMNa-0001DW-FF
	for xen-api@lists.xensource.com; Tue, 29 Nov 2011 12:01:42 +0000
X-Env-Sender: mike.mcclurg@citrix.com
X-Msg-Ref: server-13.tower-174.messagelabs.com!1322568063!3525993!1
X-Originating-IP: [66.165.176.63]
X-SpamReason: No, hits=0.0 required=7.0 tests=sa_preprocessor: 
	VHJ1c3RlZCBJUDogNjYuMTY1LjE3Ni42MyA9PiAyMjYxMjY=\n
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 9983 invoked from network); 29 Nov 2011 12:01:04 -0000
Received: from smtp02.citrix.com (HELO SMTP02.CITRIX.COM) (66.165.176.63)
	by server-13.tower-174.messagelabs.com with RC4-SHA encrypted SMTP;
	29 Nov 2011 12:01:04 -0000
X-IronPort-AV: E=Sophos;i="4.69,590,1315195200"; d="scan'208";a="172165685"
Received: from ftlpmailmx01.citrite.net ([10.13.107.65])
	by FTLPIPO02.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	29 Nov 2011 07:01:02 -0500
Received: from [127.0.0.1] (10.80.16.67) by smtprelay.citrix.com
	(10.13.107.65) with Microsoft SMTP Server id 8.3.213.0; Tue, 29 Nov 2011
	07:01:02 -0500
Message-ID: <4ED4C97D.6070509@citrix.com>
Date: Tue, 29 Nov 2011 12:01:01 +0000
From: Mike McClurg <mike.mcclurg@citrix.com>
User-Agent: Mozilla/5.0 (X11; Linux x86_64;
	rv:8.0) Gecko/20111124 Thunderbird/8.0
MIME-Version: 1.0
To: William Baum <bill@thebaums.org>
References: <CAEOParg5z3fk=FVoqZek0mb=J4u_LimdaDgj_Mitu=9qA=+HRg@mail.gmail.com>
In-Reply-To: <CAEOParg5z3fk=FVoqZek0mb=J4u_LimdaDgj_Mitu=9qA=+HRg@mail.gmail.com>
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] XCP 1.1 kernel rpm's
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

On 29/11/11 06:07, William Baum wrote:
> I made binary rpms from kernel-2.6.32.12-0.7.1.xs1.1.0.327.170596.src.rpm
> 
> Available:
> 
> kernel-kdump-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> kernel-utility-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> kernel-utility-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> kernel-xen-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> kernel-xen-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> kernel-extra-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> kernel-firmware-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> kernel-kdump-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> 
> Download from http://ge.tt/8OUH0VA
> 
> I was able to successfully build a nic driver by installing the
> kernel-xen-devel (headers) package into an XCP build box, although one
> should be able to easily update a DDK..
> 
> --Bill
> 

Hi Bill,

This is good news. Do you think you could write a short wiki page
documenting your work? I think people would really appreciate it.

By the way, today is Xen Doc day:
http://blog.xen.org/index.php/2011/11/25/xen-document-day-november-29th/

Mike

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Tue Nov 29 12:01:51 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 29 Nov 2011 12:01:51 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVMNb-0001Dk-LK; Tue, 29 Nov 2011 12:01:43 +0000
Received: from mail174.messagelabs.com ([85.158.138.51])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <mike.mcclurg@citrix.com>) id 1RVMNa-0001DW-FF
	for xen-api@lists.xensource.com; Tue, 29 Nov 2011 12:01:42 +0000
X-Env-Sender: mike.mcclurg@citrix.com
X-Msg-Ref: server-13.tower-174.messagelabs.com!1322568063!3525993!1
X-Originating-IP: [66.165.176.63]
X-SpamReason: No, hits=0.0 required=7.0 tests=sa_preprocessor: 
	VHJ1c3RlZCBJUDogNjYuMTY1LjE3Ni42MyA9PiAyMjYxMjY=\n
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 9983 invoked from network); 29 Nov 2011 12:01:04 -0000
Received: from smtp02.citrix.com (HELO SMTP02.CITRIX.COM) (66.165.176.63)
	by server-13.tower-174.messagelabs.com with RC4-SHA encrypted SMTP;
	29 Nov 2011 12:01:04 -0000
X-IronPort-AV: E=Sophos;i="4.69,590,1315195200"; d="scan'208";a="172165685"
Received: from ftlpmailmx01.citrite.net ([10.13.107.65])
	by FTLPIPO02.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	29 Nov 2011 07:01:02 -0500
Received: from [127.0.0.1] (10.80.16.67) by smtprelay.citrix.com
	(10.13.107.65) with Microsoft SMTP Server id 8.3.213.0; Tue, 29 Nov 2011
	07:01:02 -0500
Message-ID: <4ED4C97D.6070509@citrix.com>
Date: Tue, 29 Nov 2011 12:01:01 +0000
From: Mike McClurg <mike.mcclurg@citrix.com>
User-Agent: Mozilla/5.0 (X11; Linux x86_64;
	rv:8.0) Gecko/20111124 Thunderbird/8.0
MIME-Version: 1.0
To: William Baum <bill@thebaums.org>
References: <CAEOParg5z3fk=FVoqZek0mb=J4u_LimdaDgj_Mitu=9qA=+HRg@mail.gmail.com>
In-Reply-To: <CAEOParg5z3fk=FVoqZek0mb=J4u_LimdaDgj_Mitu=9qA=+HRg@mail.gmail.com>
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] XCP 1.1 kernel rpm's
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

On 29/11/11 06:07, William Baum wrote:
> I made binary rpms from kernel-2.6.32.12-0.7.1.xs1.1.0.327.170596.src.rpm
> 
> Available:
> 
> kernel-kdump-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> kernel-utility-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> kernel-utility-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> kernel-xen-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> kernel-xen-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> kernel-extra-devel-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> kernel-firmware-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> kernel-kdump-2.6.32.12-0.7.1.xs1.1.0.327.170596.i686.rpm
> 
> Download from http://ge.tt/8OUH0VA
> 
> I was able to successfully build a nic driver by installing the
> kernel-xen-devel (headers) package into an XCP build box, although one
> should be able to easily update a DDK..
> 
> --Bill
> 

Hi Bill,

This is good news. Do you think you could write a short wiki page
documenting your work? I think people would really appreciate it.

By the way, today is Xen Doc day:
http://blog.xen.org/index.php/2011/11/25/xen-document-day-november-29th/

Mike

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Tue Nov 29 15:09:28 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 29 Nov 2011 15:09:28 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVPJC-0001wy-Pt; Tue, 29 Nov 2011 15:09:22 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <Ian.Campbell@citrix.com>)
	id 1RVPJA-0001wD-Pz; Tue, 29 Nov 2011 15:09:21 +0000
X-Env-Sender: Ian.Campbell@citrix.com
X-Msg-Ref: server-12.tower-27.messagelabs.com!1322579298!42886686!1
X-Originating-IP: [62.200.22.115]
X-SpamReason: No, hits=0.0 required=7.0 tests=sa_preprocessor: 
	VHJ1c3RlZCBJUDogNjIuMjAwLjIyLjExNSA9PiA5MTAwNw==\n
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 13616 invoked from network); 29 Nov 2011 15:08:19 -0000
Received: from smtp.ctxuk.citrix.com (HELO SMTP.EU.CITRIX.COM) (62.200.22.115)
	by server-12.tower-27.messagelabs.com with RC4-SHA encrypted SMTP;
	29 Nov 2011 15:08:19 -0000
X-IronPort-AV: E=Sophos;i="4.69,591,1315180800"; 
   d="scan'208";a="9188630"
Received: from lonpmailmx01.citrite.net ([10.30.203.162])
	by LONPIPO01.EU.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	29 Nov 2011 15:08:44 +0000
Received: from [10.80.2.42] (10.80.2.42) by LONPMAILMX01.citrite.net
	(10.30.203.162) with Microsoft SMTP Server id 8.3.213.0;
	Tue, 29 Nov 2011 15:08:44 +0000
From: Ian Campbell <Ian.Campbell@citrix.com>
To: Lars Kurth <lars.kurth@xen.org>
Date: Tue, 29 Nov 2011 15:08:44 +0000
In-Reply-To: <4ECF8648.9020108@xen.org>
References: <4ECF8648.9020108@xen.org>
Organization: Citrix Systems, Inc.
X-Mailer: Evolution 3.0.3- 
Message-ID: <1322579324.31810.8.camel@zakaz.uk.xensource.com>
MIME-Version: 1.0
Cc: "xen-arm@lists.xensource.com" <xen-arm@lists.xensource.com>,
	"xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>,
	"xen-users@lists.xensource.com" <xen-users@lists.xensource.com>,
	"xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] [Xen-devel] Xen Document Day: November 29th
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Reminder: This is happening now!

Please join us on #xendocday on the Freenode IRC network.

Ian.

On Fri, 2011-11-25 at 12:12 +0000, Lars Kurth wrote:
> Hi everybody,
> 
> after the last Xen Document Day, many people asked me when we would do
> another document day. After a discussion on the mailing list, we
> settled on next Tuesday (November 29). This will be an all-day on-line
> IRC event with the aim to 
>       * Improve user documentation
>       * Improve developer documentation, including the creation of man
>         pages, etc.
> 
> There is no hard start and end to the event, but volunteers in the UK
> will be on-line on Nov 29th from around 9:00 UTC+1 until around 18:00
> UTC+1, and then volunteers from the US will take over. The event will
> be take place on freenode channel #xendocday
> 
> An intial work item lists and what we agreed on can be found on the
> Documentation Day Etherpad. Other work that needs doing is:
> 
>       * Improve user and wiki documentation 
>               * Migrate remaining wiki pages
>               * Pages that need reviewing/fixing
>               * Pages that need formatting
>               * Missing pages (many may just need to be migrated),
>                 some may be obsolete
>       * Improve developer documentation, including the creation of man
>         pages, etc.
> 
> But anyway, a long list of stuff that is needed can be found on the
> Documentation Day Etherpad. I am sure, you will find something that
> suits you. Instructions on how to use the new wiki, can be found here
> and on the front-page.
> 
> The Protocol
> 
>       * Join us on IRC: freenode channel #xendocday
>       * Tell people what you intend to work on (to avoid doing
>         something somebody else is already working on)
>       * Fix some documentation
>       * Help others
>       * And above all: have fun!
> 
> I am looking forward to the day and hopefully documentation days will
> become a regular Xen event. See you on IRC!
> 
> 
> Regards
> Lars
> 
> 



_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Tue Nov 29 15:09:28 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 29 Nov 2011 15:09:28 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVPJC-0001wy-Pt; Tue, 29 Nov 2011 15:09:22 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <Ian.Campbell@citrix.com>)
	id 1RVPJA-0001wD-Pz; Tue, 29 Nov 2011 15:09:21 +0000
X-Env-Sender: Ian.Campbell@citrix.com
X-Msg-Ref: server-12.tower-27.messagelabs.com!1322579298!42886686!1
X-Originating-IP: [62.200.22.115]
X-SpamReason: No, hits=0.0 required=7.0 tests=sa_preprocessor: 
	VHJ1c3RlZCBJUDogNjIuMjAwLjIyLjExNSA9PiA5MTAwNw==\n
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 13616 invoked from network); 29 Nov 2011 15:08:19 -0000
Received: from smtp.ctxuk.citrix.com (HELO SMTP.EU.CITRIX.COM) (62.200.22.115)
	by server-12.tower-27.messagelabs.com with RC4-SHA encrypted SMTP;
	29 Nov 2011 15:08:19 -0000
X-IronPort-AV: E=Sophos;i="4.69,591,1315180800"; 
   d="scan'208";a="9188630"
Received: from lonpmailmx01.citrite.net ([10.30.203.162])
	by LONPIPO01.EU.CITRIX.COM with ESMTP/TLS/RC4-MD5;
	29 Nov 2011 15:08:44 +0000
Received: from [10.80.2.42] (10.80.2.42) by LONPMAILMX01.citrite.net
	(10.30.203.162) with Microsoft SMTP Server id 8.3.213.0;
	Tue, 29 Nov 2011 15:08:44 +0000
From: Ian Campbell <Ian.Campbell@citrix.com>
To: Lars Kurth <lars.kurth@xen.org>
Date: Tue, 29 Nov 2011 15:08:44 +0000
In-Reply-To: <4ECF8648.9020108@xen.org>
References: <4ECF8648.9020108@xen.org>
Organization: Citrix Systems, Inc.
X-Mailer: Evolution 3.0.3- 
Message-ID: <1322579324.31810.8.camel@zakaz.uk.xensource.com>
MIME-Version: 1.0
Cc: "xen-arm@lists.xensource.com" <xen-arm@lists.xensource.com>,
	"xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>,
	"xen-users@lists.xensource.com" <xen-users@lists.xensource.com>,
	"xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] [Xen-devel] Xen Document Day: November 29th
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

Reminder: This is happening now!

Please join us on #xendocday on the Freenode IRC network.

Ian.

On Fri, 2011-11-25 at 12:12 +0000, Lars Kurth wrote:
> Hi everybody,
> 
> after the last Xen Document Day, many people asked me when we would do
> another document day. After a discussion on the mailing list, we
> settled on next Tuesday (November 29). This will be an all-day on-line
> IRC event with the aim to 
>       * Improve user documentation
>       * Improve developer documentation, including the creation of man
>         pages, etc.
> 
> There is no hard start and end to the event, but volunteers in the UK
> will be on-line on Nov 29th from around 9:00 UTC+1 until around 18:00
> UTC+1, and then volunteers from the US will take over. The event will
> be take place on freenode channel #xendocday
> 
> An intial work item lists and what we agreed on can be found on the
> Documentation Day Etherpad. Other work that needs doing is:
> 
>       * Improve user and wiki documentation 
>               * Migrate remaining wiki pages
>               * Pages that need reviewing/fixing
>               * Pages that need formatting
>               * Missing pages (many may just need to be migrated),
>                 some may be obsolete
>       * Improve developer documentation, including the creation of man
>         pages, etc.
> 
> But anyway, a long list of stuff that is needed can be found on the
> Documentation Day Etherpad. I am sure, you will find something that
> suits you. Instructions on how to use the new wiki, can be found here
> and on the front-page.
> 
> The Protocol
> 
>       * Join us on IRC: freenode channel #xendocday
>       * Tell people what you intend to work on (to avoid doing
>         something somebody else is already working on)
>       * Fix some documentation
>       * Help others
>       * And above all: have fun!
> 
> I am looking forward to the day and hopefully documentation days will
> become a regular Xen event. See you on IRC!
> 
> 
> Regards
> Lars
> 
> 



_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Tue Nov 29 17:36:11 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 29 Nov 2011 17:36:11 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVRbA-0008VK-RV; Tue, 29 Nov 2011 17:36:04 +0000
Received: from mail216.messagelabs.com ([85.158.143.99])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <george.shuklin@gmail.com>) id 1RVRb9-0008VF-R2
	for xen-api@lists.xensource.com; Tue, 29 Nov 2011 17:36:04 +0000
X-Env-Sender: george.shuklin@gmail.com
X-Msg-Ref: server-4.tower-216.messagelabs.com!1322588125!5502716!1
X-Originating-IP: [209.85.161.43]
X-SpamReason: No, hits=0.3 required=7.0 tests=ML_RADAR_SPEW_LINKS_14,
	RCVD_BY_IP,spamassassin: 
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 3640 invoked from network); 29 Nov 2011 17:35:26 -0000
Received: from mail-fx0-f43.google.com (HELO mail-fx0-f43.google.com)
	(209.85.161.43)
	by server-4.tower-216.messagelabs.com with RC4-SHA encrypted SMTP;
	29 Nov 2011 17:35:26 -0000
Received: by fagn18 with SMTP id n18so2787251fag.30
	for <xen-api@lists.xensource.com>; Tue, 29 Nov 2011 09:35:25 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=message-id:date:from:user-agent:mime-version:to:subject:references
	:in-reply-to:content-type:content-transfer-encoding;
	bh=V7wsXARPaUEV5CSPMV53Jdgosi8FfIG5H6jn14btIrQ=;
	b=Qvf8sEJwo7cKBO6lyn2/V2ZdHxdKjnui8pIrq9yCNosZnsdJkhDcQMXUaOUATYMRul
	XyyqsHYJg//dv+dLlABwPXAs80G4GcvrQWzI4IZZFXpgdljvoeff7w7qFMk5OFEW2f2R
	H7muh94j3nvfSUYxhhC/Zw2fgwEfJxPBXIqzk=
Received: by 10.180.18.10 with SMTP id s10mr3747744wid.21.1322588125622;
	Tue, 29 Nov 2011 09:35:25 -0800 (PST)
Received: from [192.168.1.145] ([89.163.30.177])
	by mx.google.com with ESMTPS id d17sm43365802wbh.19.2011.11.29.09.35.23
	(version=SSLv3 cipher=OTHER); Tue, 29 Nov 2011 09:35:24 -0800 (PST)
Message-ID: <4ED517D9.3040405@gmail.com>
Date: Tue, 29 Nov 2011 21:35:21 +0400
From: George Shuklin <george.shuklin@gmail.com>
User-Agent: Mozilla/5.0 (X11; Linux i686;
	rv:9.0) Gecko/20111124 Thunderbird/9.0
MIME-Version: 1.0
To: xen-api@lists.xensource.com
References: <81A73678E76EA642801C8F2E4823AD21C4F901F513@LONPMAILBOX01.citrite.net>
In-Reply-To: <81A73678E76EA642801C8F2E4823AD21C4F901F513@LONPMAILBOX01.citrite.net>
Subject: Re: [Xen-API] making it easier to install VMs on XCP
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset="us-ascii"; Format="flowed"
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

This will be nice, but how we define 'auto-install'? I mean LVM vs plain 
partition, network settings, enabled ssh and so on? I think this kind of 
problem is bother all virtualization players and SUSE right now do have 
most advanced solution with yast/autoyast configuration tool.

N.B. I add some proposal about pre-shipped initrd/kernel.

On 29.11.2011 15:06, Dave Scott wrote:
> Hi,
>
> I've been chatting to various people about ways of making it easier to install VMs (particularly Linux ones) on XCP. If you're a CLI user then it takes quite a few steps to (eg) set up a network install of a debian VM. I think we can make this a lot simpler; I've made some notes on the wiki:
>
> http://wiki.xen.org/wiki/Making_it_easier_to_install_VMs_on_XCP
>
> It would be awesome if you could install a VM like this:
>
> # xe vm-install template="Debian 6.0" new-name-label=debian auto-install=true
> # xe vm-start vm=debian
>
> And have sensible defaults (e.g. network URL, preseed file) used throughout.
>
> Let me know what you think!
>
> Cheers,
> Dave
>
> _______________________________________________
> xen-api mailing list
> xen-api@lists.xensource.com
> http://lists.xensource.com/mailman/listinfo/xen-api


_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Tue Nov 29 17:36:11 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Tue, 29 Nov 2011 17:36:11 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVRbA-0008VK-RV; Tue, 29 Nov 2011 17:36:04 +0000
Received: from mail216.messagelabs.com ([85.158.143.99])
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <george.shuklin@gmail.com>) id 1RVRb9-0008VF-R2
	for xen-api@lists.xensource.com; Tue, 29 Nov 2011 17:36:04 +0000
X-Env-Sender: george.shuklin@gmail.com
X-Msg-Ref: server-4.tower-216.messagelabs.com!1322588125!5502716!1
X-Originating-IP: [209.85.161.43]
X-SpamReason: No, hits=0.3 required=7.0 tests=ML_RADAR_SPEW_LINKS_14,
	RCVD_BY_IP,spamassassin: 
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 3640 invoked from network); 29 Nov 2011 17:35:26 -0000
Received: from mail-fx0-f43.google.com (HELO mail-fx0-f43.google.com)
	(209.85.161.43)
	by server-4.tower-216.messagelabs.com with RC4-SHA encrypted SMTP;
	29 Nov 2011 17:35:26 -0000
Received: by fagn18 with SMTP id n18so2787251fag.30
	for <xen-api@lists.xensource.com>; Tue, 29 Nov 2011 09:35:25 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=message-id:date:from:user-agent:mime-version:to:subject:references
	:in-reply-to:content-type:content-transfer-encoding;
	bh=V7wsXARPaUEV5CSPMV53Jdgosi8FfIG5H6jn14btIrQ=;
	b=Qvf8sEJwo7cKBO6lyn2/V2ZdHxdKjnui8pIrq9yCNosZnsdJkhDcQMXUaOUATYMRul
	XyyqsHYJg//dv+dLlABwPXAs80G4GcvrQWzI4IZZFXpgdljvoeff7w7qFMk5OFEW2f2R
	H7muh94j3nvfSUYxhhC/Zw2fgwEfJxPBXIqzk=
Received: by 10.180.18.10 with SMTP id s10mr3747744wid.21.1322588125622;
	Tue, 29 Nov 2011 09:35:25 -0800 (PST)
Received: from [192.168.1.145] ([89.163.30.177])
	by mx.google.com with ESMTPS id d17sm43365802wbh.19.2011.11.29.09.35.23
	(version=SSLv3 cipher=OTHER); Tue, 29 Nov 2011 09:35:24 -0800 (PST)
Message-ID: <4ED517D9.3040405@gmail.com>
Date: Tue, 29 Nov 2011 21:35:21 +0400
From: George Shuklin <george.shuklin@gmail.com>
User-Agent: Mozilla/5.0 (X11; Linux i686;
	rv:9.0) Gecko/20111124 Thunderbird/9.0
MIME-Version: 1.0
To: xen-api@lists.xensource.com
References: <81A73678E76EA642801C8F2E4823AD21C4F901F513@LONPMAILBOX01.citrite.net>
In-Reply-To: <81A73678E76EA642801C8F2E4823AD21C4F901F513@LONPMAILBOX01.citrite.net>
Subject: Re: [Xen-API] making it easier to install VMs on XCP
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset="us-ascii"; Format="flowed"
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

This will be nice, but how we define 'auto-install'? I mean LVM vs plain 
partition, network settings, enabled ssh and so on? I think this kind of 
problem is bother all virtualization players and SUSE right now do have 
most advanced solution with yast/autoyast configuration tool.

N.B. I add some proposal about pre-shipped initrd/kernel.

On 29.11.2011 15:06, Dave Scott wrote:
> Hi,
>
> I've been chatting to various people about ways of making it easier to install VMs (particularly Linux ones) on XCP. If you're a CLI user then it takes quite a few steps to (eg) set up a network install of a debian VM. I think we can make this a lot simpler; I've made some notes on the wiki:
>
> http://wiki.xen.org/wiki/Making_it_easier_to_install_VMs_on_XCP
>
> It would be awesome if you could install a VM like this:
>
> # xe vm-install template="Debian 6.0" new-name-label=debian auto-install=true
> # xe vm-start vm=debian
>
> And have sensible defaults (e.g. network URL, preseed file) used throughout.
>
> Let me know what you think!
>
> Cheers,
> Dave
>
> _______________________________________________
> xen-api mailing list
> xen-api@lists.xensource.com
> http://lists.xensource.com/mailman/listinfo/xen-api


_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Wed Nov 30 10:42:39 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 30 Nov 2011 10:42:39 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVhcV-0000lc-G0; Wed, 30 Nov 2011 10:42:31 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with smtp (Exim 4.72)
	(envelope-from <christian.fischer@easterngraphics.com>)
	id 1RVhcU-0000lV-9U
	for xen-api@lists.xensource.com; Wed, 30 Nov 2011 10:42:30 +0000
X-Env-Sender: christian.fischer@easterngraphics.com
X-Msg-Ref: server-2.tower-27.messagelabs.com!1322649670!55441255!1
X-Originating-IP: [195.191.216.34]
X-SpamReason: No, hits=0.0 required=7.0 tests=
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 29343 invoked from network); 30 Nov 2011 10:41:10 -0000
Received: from mail.easterngraphics.com (HELO intranet.easterngraphics.com)
	(195.191.216.34) by server-2.tower-27.messagelabs.com with SMTP;
	30 Nov 2011 10:41:10 -0000
Received: from localhost (unknown [127.0.0.1])
	by intranet.easterngraphics.com (Postfix) with ESMTP id 8DD9518135232
	for <xen-api@lists.xensource.com>; Wed, 30 Nov 2011 10:41:53 +0000 (UTC)
X-Virus-Scanned: amavisd-new at easterngraphics.com
Received: from intranet.easterngraphics.com ([127.0.0.1])
	by localhost (intranet.easterngraphics.com [127.0.0.1]) (amavisd-new,
	port 10024)
	with ESMTP id olNGtuRcIEOq for <xen-api@lists.xensource.com>;
	Wed, 30 Nov 2011 11:41:53 +0100 (CET)
Received: from iwan.localnet (unknown [195.191.216.126])
	(Authenticated sender: fischer)
	by intranet.easterngraphics.com (Postfix) with ESMTPSA id 0164418134BEE
	for <xen-api@lists.xensource.com>; Wed, 30 Nov 2011 11:41:53 +0100 (CET)
From: Christian Fischer <christian.fischer@easterngraphics.com>
Organization: EasternGraphics GmbH
To: xen-api@lists.xensource.com
Date: Wed, 30 Nov 2011 11:41:52 +0100
User-Agent: KMail/1.13.7 (Linux/2.6.41.1-1.fc15.i686; KDE/4.6.5; i686; ; )
MIME-Version: 1.0
Message-Id: <201111301141.52682.christian.fischer@easterngraphics.com>
Subject: [Xen-API] [XCP1.1] ixgbe jumbo frame support not working
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

I need jumbo frame support. It is not possible to set MTU values above 1504. 
Any hints? ixgbe version 2.1.4 should support a maximum MTU value of 16110.

[root@pool5-icl ~]# ip link set mtu 1505 dev eth5
SIOCSIFMTU: Invalid argument

[root@pool5-icl ~]# lspci | grep 10\ Gigabit
17:00.0 Ethernet controller: Intel Corporation 82599EB 10 Gigabit TN Network 
Connection (rev 01)
17:00.1 Ethernet controller: Intel Corporation 82599EB 10 Gigabit TN Network 
Connection (rev 01)

No problem to set MTU to 9000 for all other network interfaces (Broadcom/Intel 
1GBit).

Thanks
Christian

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Wed Nov 30 10:42:39 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 30 Nov 2011 10:42:39 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVhcV-0000lc-G0; Wed, 30 Nov 2011 10:42:31 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with smtp (Exim 4.72)
	(envelope-from <christian.fischer@easterngraphics.com>)
	id 1RVhcU-0000lV-9U
	for xen-api@lists.xensource.com; Wed, 30 Nov 2011 10:42:30 +0000
X-Env-Sender: christian.fischer@easterngraphics.com
X-Msg-Ref: server-2.tower-27.messagelabs.com!1322649670!55441255!1
X-Originating-IP: [195.191.216.34]
X-SpamReason: No, hits=0.0 required=7.0 tests=
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 29343 invoked from network); 30 Nov 2011 10:41:10 -0000
Received: from mail.easterngraphics.com (HELO intranet.easterngraphics.com)
	(195.191.216.34) by server-2.tower-27.messagelabs.com with SMTP;
	30 Nov 2011 10:41:10 -0000
Received: from localhost (unknown [127.0.0.1])
	by intranet.easterngraphics.com (Postfix) with ESMTP id 8DD9518135232
	for <xen-api@lists.xensource.com>; Wed, 30 Nov 2011 10:41:53 +0000 (UTC)
X-Virus-Scanned: amavisd-new at easterngraphics.com
Received: from intranet.easterngraphics.com ([127.0.0.1])
	by localhost (intranet.easterngraphics.com [127.0.0.1]) (amavisd-new,
	port 10024)
	with ESMTP id olNGtuRcIEOq for <xen-api@lists.xensource.com>;
	Wed, 30 Nov 2011 11:41:53 +0100 (CET)
Received: from iwan.localnet (unknown [195.191.216.126])
	(Authenticated sender: fischer)
	by intranet.easterngraphics.com (Postfix) with ESMTPSA id 0164418134BEE
	for <xen-api@lists.xensource.com>; Wed, 30 Nov 2011 11:41:53 +0100 (CET)
From: Christian Fischer <christian.fischer@easterngraphics.com>
Organization: EasternGraphics GmbH
To: xen-api@lists.xensource.com
Date: Wed, 30 Nov 2011 11:41:52 +0100
User-Agent: KMail/1.13.7 (Linux/2.6.41.1-1.fc15.i686; KDE/4.6.5; i686; ; )
MIME-Version: 1.0
Message-Id: <201111301141.52682.christian.fischer@easterngraphics.com>
Subject: [Xen-API] [XCP1.1] ixgbe jumbo frame support not working
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

I need jumbo frame support. It is not possible to set MTU values above 1504. 
Any hints? ixgbe version 2.1.4 should support a maximum MTU value of 16110.

[root@pool5-icl ~]# ip link set mtu 1505 dev eth5
SIOCSIFMTU: Invalid argument

[root@pool5-icl ~]# lspci | grep 10\ Gigabit
17:00.0 Ethernet controller: Intel Corporation 82599EB 10 Gigabit TN Network 
Connection (rev 01)
17:00.1 Ethernet controller: Intel Corporation 82599EB 10 Gigabit TN Network 
Connection (rev 01)

No problem to set MTU to 9000 for all other network interfaces (Broadcom/Intel 
1GBit).

Thanks
Christian

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Wed Nov 30 11:11:11 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 30 Nov 2011 11:11:11 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVi46-00018E-4F; Wed, 30 Nov 2011 11:11:02 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with smtp (Exim 4.72)
	(envelope-from <Uli.Staerk@globalways.net>) id 1RVi44-000189-QS
	for xen-api@lists.xensource.com; Wed, 30 Nov 2011 11:11:01 +0000
X-Env-Sender: Uli.Staerk@globalways.net
X-Msg-Ref: server-15.tower-27.messagelabs.com!1322651408!57114770!1
X-Originating-IP: [94.186.131.14]
X-SpamReason: No, hits=5.5 required=7.0 tests=ML_RADAR_923,spamassassin: 
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 20208 invoked from network); 30 Nov 2011 11:10:08 -0000
Received: from mx5.emx.globalways.net (HELO mx5.emx.globalways.net)
	(94.186.131.14) by server-15.tower-27.messagelabs.com with SMTP;
	30 Nov 2011 11:10:08 -0000
Received: (qmail 4535 invoked by uid 5007); 30 Nov 2011 12:10:23 +0100
Received: from mail-out1.emx.globalways.net by mx5 (envelope-from
	<Uli.Staerk@globalways.net>, uid 5001) with qmail-scanner-2.08 
	(clamdscan: 0.96/12115. spamassassin: 3.2.5.  
	Clear:RC:1(94.186.131.60):. 
	Processed in 0.017509 secs); 30 Nov 2011 11:10:23 -0000
Received: from mail-out1.emx.globalways.net (94.186.131.60)
	by mx5.emx.globalways.net with SMTP; 30 Nov 2011 12:10:23 +0100
Received: (qmail 17741 invoked from network); 30 Nov 2011 11:10:23 -0000
Received: from unknown (HELO EX1-STGT.intern.globalways.net) (94.186.131.40)
	by mail-out1.emx.globalways.net with ESMTPS (AES128-SHA encrypted);
	30 Nov 2011 11:10:23 -0000
Received: from EX1-STGT.intern.globalways.net ([10.9.0.3]) by
	EX1-STGT.intern.globalways.net ([10.9.0.3]) with mapi id 14.01.0218.012;
	Wed, 30 Nov 2011 12:09:45 +0100
From: =?iso-8859-1?Q?Uli_St=E4rk?= <Uli.Staerk@globalways.net>
To: Christian Fischer <christian.fischer@easterngraphics.com>,
	"xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Thread-Topic: [Xen-API] [XCP1.1] ixgbe jumbo frame support not working
Thread-Index: AQHMr00M9GmRSBvjfU6hrNVIELOMrZXFQWtA
Date: Wed, 30 Nov 2011 11:09:44 +0000
Message-ID: <BD4874944A68BE4C92E66740829DD3161D484F@EX1-STGT.intern.globalways.net>
References: <201111301141.52682.christian.fischer@easterngraphics.com>
In-Reply-To: <201111301141.52682.christian.fischer@easterngraphics.com>
Accept-Language: de-DE, en-US
Content-Language: de-DE
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
x-originating-ip: [10.9.0.1]
MIME-Version: 1.0
Subject: Re: [Xen-API] [XCP1.1] ixgbe jumbo frame support not working
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

This has something to do with xen, see: http://forums.citrix.com/message.js=
pa?messageID=3D1593544

I did not find any proper solution and fixed it manually for the storage ne=
twork adapters:

DEVICE_ID=3D"10fb"
MODULE_NAME=3D"ixgbe"
THIS_HOST_DOM0_UUID=3D$(grep CONTROL_DOMAIN_UUID /etc/xensource-inventory |=
 /bin/cut -f 2 -d "=3D" | /bin/cut -f 2 -d "'")
THIS_HOST_UUID=3D$(/opt/xensource/bin/xe vm-list uuid=3D$THIS_HOST_DOM0_UUI=
D params=3Dresident-on --minimal)
PIF_UUIDS=3D$(/opt/xensource/bin/xe pif-list host-uuid=3D$THIS_HOST_UUID ph=
ysical=3Dtrue management=3Dfalse device-id=3D$DEVICE_ID --minimal | /bin/se=
d 's/,/ /g')

for PIF_UUID in $PIF_UUIDS
do
        /opt/xensource/bin/xe pif-param-set uuid=3D$PIF_UUID disallow-unplu=
g=3Dfalse
        /opt/xensource/bin/xe pif-unplug uuid=3D$PIF_UUID
done

/sbin/rmmod $MODULE_NAME
/sbin/insmod $(/usr/bin/find /lib/modules/$(/bin/uname --kernel-release) -n=
ame $MODULE_NAME.ko)
sleep 2

for PIF_UUID in $PIF_UUIDS
do
        PIF_IP=3D$(xe pif-list uuid=3D$PIF_UUID params=3DIP --minimal)
#        PIF_NETMASK=3D$(xe pif-list uuid=3D$PIF_UUID params=3Dnetmask --mi=
nimal)
        PIF_DEVICE=3D$(xe pif-list uuid=3D$PIF_UUID params=3Ddevice --minim=
al)

        /sbin/ip link set $PIF_DEVICE mtu 9000 up
        /sbin/ip addr add $PIF_IP/24 dev $PIF_DEVICE
done

-----Urspr=FCngliche Nachricht-----
Von: xen-api-bounces@lists.xensource.com [mailto:xen-api-bounces@lists.xens=
ource.com] Im Auftrag von Christian Fischer
Gesendet: Mittwoch, 30. November 2011 11:42
An: xen-api@lists.xensource.com
Betreff: [Xen-API] [XCP1.1] ixgbe jumbo frame support not working

I need jumbo frame support. It is not possible to set MTU values above 1504=
. =

Any hints? ixgbe version 2.1.4 should support a maximum MTU value of 16110.

[root@pool5-icl ~]# ip link set mtu 1505 dev eth5
SIOCSIFMTU: Invalid argument

[root@pool5-icl ~]# lspci | grep 10\ Gigabit
17:00.0 Ethernet controller: Intel Corporation 82599EB 10 Gigabit TN Networ=
k Connection (rev 01)
17:00.1 Ethernet controller: Intel Corporation 82599EB 10 Gigabit TN Networ=
k Connection (rev 01)

No problem to set MTU to 9000 for all other network interfaces (Broadcom/In=
tel 1GBit).

Thanks
Christian

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Wed Nov 30 11:11:11 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 30 Nov 2011 11:11:11 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVi46-00018E-4F; Wed, 30 Nov 2011 11:11:02 +0000
Received: from mail27.messagelabs.com ([193.109.254.147])
	by lists.xen.org with smtp (Exim 4.72)
	(envelope-from <Uli.Staerk@globalways.net>) id 1RVi44-000189-QS
	for xen-api@lists.xensource.com; Wed, 30 Nov 2011 11:11:01 +0000
X-Env-Sender: Uli.Staerk@globalways.net
X-Msg-Ref: server-15.tower-27.messagelabs.com!1322651408!57114770!1
X-Originating-IP: [94.186.131.14]
X-SpamReason: No, hits=5.5 required=7.0 tests=ML_RADAR_923,spamassassin: 
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 20208 invoked from network); 30 Nov 2011 11:10:08 -0000
Received: from mx5.emx.globalways.net (HELO mx5.emx.globalways.net)
	(94.186.131.14) by server-15.tower-27.messagelabs.com with SMTP;
	30 Nov 2011 11:10:08 -0000
Received: (qmail 4535 invoked by uid 5007); 30 Nov 2011 12:10:23 +0100
Received: from mail-out1.emx.globalways.net by mx5 (envelope-from
	<Uli.Staerk@globalways.net>, uid 5001) with qmail-scanner-2.08 
	(clamdscan: 0.96/12115. spamassassin: 3.2.5.  
	Clear:RC:1(94.186.131.60):. 
	Processed in 0.017509 secs); 30 Nov 2011 11:10:23 -0000
Received: from mail-out1.emx.globalways.net (94.186.131.60)
	by mx5.emx.globalways.net with SMTP; 30 Nov 2011 12:10:23 +0100
Received: (qmail 17741 invoked from network); 30 Nov 2011 11:10:23 -0000
Received: from unknown (HELO EX1-STGT.intern.globalways.net) (94.186.131.40)
	by mail-out1.emx.globalways.net with ESMTPS (AES128-SHA encrypted);
	30 Nov 2011 11:10:23 -0000
Received: from EX1-STGT.intern.globalways.net ([10.9.0.3]) by
	EX1-STGT.intern.globalways.net ([10.9.0.3]) with mapi id 14.01.0218.012;
	Wed, 30 Nov 2011 12:09:45 +0100
From: =?iso-8859-1?Q?Uli_St=E4rk?= <Uli.Staerk@globalways.net>
To: Christian Fischer <christian.fischer@easterngraphics.com>,
	"xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Thread-Topic: [Xen-API] [XCP1.1] ixgbe jumbo frame support not working
Thread-Index: AQHMr00M9GmRSBvjfU6hrNVIELOMrZXFQWtA
Date: Wed, 30 Nov 2011 11:09:44 +0000
Message-ID: <BD4874944A68BE4C92E66740829DD3161D484F@EX1-STGT.intern.globalways.net>
References: <201111301141.52682.christian.fischer@easterngraphics.com>
In-Reply-To: <201111301141.52682.christian.fischer@easterngraphics.com>
Accept-Language: de-DE, en-US
Content-Language: de-DE
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
x-originating-ip: [10.9.0.1]
MIME-Version: 1.0
Subject: Re: [Xen-API] [XCP1.1] ixgbe jumbo frame support not working
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

This has something to do with xen, see: http://forums.citrix.com/message.js=
pa?messageID=3D1593544

I did not find any proper solution and fixed it manually for the storage ne=
twork adapters:

DEVICE_ID=3D"10fb"
MODULE_NAME=3D"ixgbe"
THIS_HOST_DOM0_UUID=3D$(grep CONTROL_DOMAIN_UUID /etc/xensource-inventory |=
 /bin/cut -f 2 -d "=3D" | /bin/cut -f 2 -d "'")
THIS_HOST_UUID=3D$(/opt/xensource/bin/xe vm-list uuid=3D$THIS_HOST_DOM0_UUI=
D params=3Dresident-on --minimal)
PIF_UUIDS=3D$(/opt/xensource/bin/xe pif-list host-uuid=3D$THIS_HOST_UUID ph=
ysical=3Dtrue management=3Dfalse device-id=3D$DEVICE_ID --minimal | /bin/se=
d 's/,/ /g')

for PIF_UUID in $PIF_UUIDS
do
        /opt/xensource/bin/xe pif-param-set uuid=3D$PIF_UUID disallow-unplu=
g=3Dfalse
        /opt/xensource/bin/xe pif-unplug uuid=3D$PIF_UUID
done

/sbin/rmmod $MODULE_NAME
/sbin/insmod $(/usr/bin/find /lib/modules/$(/bin/uname --kernel-release) -n=
ame $MODULE_NAME.ko)
sleep 2

for PIF_UUID in $PIF_UUIDS
do
        PIF_IP=3D$(xe pif-list uuid=3D$PIF_UUID params=3DIP --minimal)
#        PIF_NETMASK=3D$(xe pif-list uuid=3D$PIF_UUID params=3Dnetmask --mi=
nimal)
        PIF_DEVICE=3D$(xe pif-list uuid=3D$PIF_UUID params=3Ddevice --minim=
al)

        /sbin/ip link set $PIF_DEVICE mtu 9000 up
        /sbin/ip addr add $PIF_IP/24 dev $PIF_DEVICE
done

-----Urspr=FCngliche Nachricht-----
Von: xen-api-bounces@lists.xensource.com [mailto:xen-api-bounces@lists.xens=
ource.com] Im Auftrag von Christian Fischer
Gesendet: Mittwoch, 30. November 2011 11:42
An: xen-api@lists.xensource.com
Betreff: [Xen-API] [XCP1.1] ixgbe jumbo frame support not working

I need jumbo frame support. It is not possible to set MTU values above 1504=
. =

Any hints? ixgbe version 2.1.4 should support a maximum MTU value of 16110.

[root@pool5-icl ~]# ip link set mtu 1505 dev eth5
SIOCSIFMTU: Invalid argument

[root@pool5-icl ~]# lspci | grep 10\ Gigabit
17:00.0 Ethernet controller: Intel Corporation 82599EB 10 Gigabit TN Networ=
k Connection (rev 01)
17:00.1 Ethernet controller: Intel Corporation 82599EB 10 Gigabit TN Networ=
k Connection (rev 01)

No problem to set MTU to 9000 for all other network interfaces (Broadcom/In=
tel 1GBit).

Thanks
Christian

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Wed Nov 30 13:43:11 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 30 Nov 2011 13:43:11 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVkRF-0003ec-D8; Wed, 30 Nov 2011 13:43:05 +0000
Received: from mail21.messagelabs.com ([85.158.143.35])
	by lists.xen.org with smtp (Exim 4.72)
	(envelope-from <christian.fischer@easterngraphics.com>)
	id 1RVkRD-0003eU-61
	for xen-api@lists.xensource.com; Wed, 30 Nov 2011 13:43:03 +0000
X-Env-Sender: christian.fischer@easterngraphics.com
X-Msg-Ref: server-9.tower-21.messagelabs.com!1322660544!131153!1
X-Originating-IP: [195.191.216.34]
X-SpamReason: No, hits=0.0 required=7.0 tests=
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 31116 invoked from network); 30 Nov 2011 13:42:24 -0000
Received: from mail.easterngraphics.com (HELO intranet.easterngraphics.com)
	(195.191.216.34) by server-9.tower-21.messagelabs.com with SMTP;
	30 Nov 2011 13:42:24 -0000
Received: from localhost (unknown [127.0.0.1])
	by intranet.easterngraphics.com (Postfix) with ESMTP id B70D81813419B; 
	Wed, 30 Nov 2011 13:42:23 +0000 (UTC)
X-Virus-Scanned: amavisd-new at easterngraphics.com
Received: from intranet.easterngraphics.com ([127.0.0.1])
	by localhost (intranet.easterngraphics.com [127.0.0.1]) (amavisd-new,
	port 10024)
	with ESMTP id r5nva3VKwye6; Wed, 30 Nov 2011 14:41:52 +0100 (CET)
Received: from iwan.localnet (unknown [195.191.216.126])
	(Authenticated sender: fischer)
	by intranet.easterngraphics.com (Postfix) with ESMTPSA id 9B830181352C3;
	Wed, 30 Nov 2011 14:41:48 +0100 (CET)
From: Christian Fischer <christian.fischer@easterngraphics.com>
Organization: EasternGraphics GmbH
To: Uli =?iso-8859-1?q?St=E4rk?= <Uli.Staerk@globalways.net>
Date: Wed, 30 Nov 2011 14:41:47 +0100
User-Agent: KMail/1.13.7 (Linux/2.6.41.1-1.fc15.i686; KDE/4.6.5; i686; ; )
References: <201111301141.52682.christian.fischer@easterngraphics.com>
	<BD4874944A68BE4C92E66740829DD3161D484F@EX1-STGT.intern.globalways.net>
In-Reply-To: <BD4874944A68BE4C92E66740829DD3161D484F@EX1-STGT.intern.globalways.net>
MIME-Version: 1.0
Message-Id: <201111301441.48276.christian.fischer@easterngraphics.com>
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] [XCP1.1] ixgbe jumbo frame support not working
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

WTF.

I've seen this thread, but it shows no solution. And I think it has nothing=
 to =

do with xen. But the insmod hint was great, thanks.

Changing the MTU to a value above 1504 isn't permitted if you load the modu=
le =

using modprobe, but with insmod it is.

[root@pool4-icl ~]# rmmod ixgbe
[root@pool4-icl ~]# modprobe ixgbe
[root@pool4-icl ~]# ip link set mtu 9000 dev eth5
SIOCSIFMTU: Invalid argument
[root@pool4-icl ~]# rmmod ixgbe
[root@pool4-icl ~]# /sbin/insmod $(/usr/bin/find /lib/modules/$(/bin/uname =
--
kernel-release) -name ixgbe.ko)
[root@pool4-icl ~]# ip link set mtu 9000 dev eth5
[root@pool4-icl ~]#


On Wednesday 30 November 2011 12:09:44 Uli St=E4rk wrote:
> This has something to do with xen, see:
> http://forums.citrix.com/message.jspa?messageID=3D1593544
> =

> I did not find any proper solution and fixed it manually for the storage
> network adapters:
> =

> DEVICE_ID=3D"10fb"
> MODULE_NAME=3D"ixgbe"
> THIS_HOST_DOM0_UUID=3D$(grep CONTROL_DOMAIN_UUID /etc/xensource-inventory=
 |
> /bin/cut -f 2 -d "=3D" | /bin/cut -f 2 -d "'")
> THIS_HOST_UUID=3D$(/opt/xensource/bin/xe vm-list uuid=3D$THIS_HOST_DOM0_U=
UID
> params=3Dresident-on --minimal) PIF_UUIDS=3D$(/opt/xensource/bin/xe pif-l=
ist
> host-uuid=3D$THIS_HOST_UUID physical=3Dtrue management=3Dfalse
> device-id=3D$DEVICE_ID --minimal | /bin/sed 's/,/ /g')
> =

> for PIF_UUID in $PIF_UUIDS
> do
>         /opt/xensource/bin/xe pif-param-set uuid=3D$PIF_UUID
> disallow-unplug=3Dfalse /opt/xensource/bin/xe pif-unplug uuid=3D$PIF_UUID
> done
> =

> /sbin/rmmod $MODULE_NAME
> /sbin/insmod $(/usr/bin/find /lib/modules/$(/bin/uname --kernel-release)
> -name $MODULE_NAME.ko) sleep 2
> =

> for PIF_UUID in $PIF_UUIDS
> do
>         PIF_IP=3D$(xe pif-list uuid=3D$PIF_UUID params=3DIP --minimal)
> #        PIF_NETMASK=3D$(xe pif-list uuid=3D$PIF_UUID params=3Dnetmask --=
minimal)
>         PIF_DEVICE=3D$(xe pif-list uuid=3D$PIF_UUID params=3Ddevice --min=
imal)
> =

>         /sbin/ip link set $PIF_DEVICE mtu 9000 up
>         /sbin/ip addr add $PIF_IP/24 dev $PIF_DEVICE
> done
> =

> -----Urspr=FCngliche Nachricht-----
> Von: xen-api-bounces@lists.xensource.com
> [mailto:xen-api-bounces@lists.xensource.com] Im Auftrag von Christian
> Fischer Gesendet: Mittwoch, 30. November 2011 11:42
> An: xen-api@lists.xensource.com
> Betreff: [Xen-API] [XCP1.1] ixgbe jumbo frame support not working
> =

> I need jumbo frame support. It is not possible to set MTU values above
> 1504. Any hints? ixgbe version 2.1.4 should support a maximum MTU value of
> 16110.
> =

> [root@pool5-icl ~]# ip link set mtu 1505 dev eth5
> SIOCSIFMTU: Invalid argument
> =

> [root@pool5-icl ~]# lspci | grep 10\ Gigabit
> 17:00.0 Ethernet controller: Intel Corporation 82599EB 10 Gigabit TN
> Network Connection (rev 01) 17:00.1 Ethernet controller: Intel Corporation
> 82599EB 10 Gigabit TN Network Connection (rev 01)
> =

> No problem to set MTU to 9000 for all other network interfaces
> (Broadcom/Intel 1GBit).
> =

> Thanks
> Christian
> =

> _______________________________________________
> xen-api mailing list
> xen-api@lists.xensource.com
> http://lists.xensource.com/mailman/listinfo/xen-api


_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

From xen-api-bounces@lists.xensource.com Wed Nov 30 13:43:11 2011
Return-path: <xen-api-bounces@lists.xensource.com>
Envelope-to: archives@lists.xen.org
Delivery-date: Wed, 30 Nov 2011 13:43:11 +0000
Received: from localhost ([127.0.0.1] helo=lists.xen.org)
	by lists.xen.org with esmtp (Exim 4.72)
	(envelope-from <xen-api-bounces@lists.xensource.com>)
	id 1RVkRF-0003ec-D8; Wed, 30 Nov 2011 13:43:05 +0000
Received: from mail21.messagelabs.com ([85.158.143.35])
	by lists.xen.org with smtp (Exim 4.72)
	(envelope-from <christian.fischer@easterngraphics.com>)
	id 1RVkRD-0003eU-61
	for xen-api@lists.xensource.com; Wed, 30 Nov 2011 13:43:03 +0000
X-Env-Sender: christian.fischer@easterngraphics.com
X-Msg-Ref: server-9.tower-21.messagelabs.com!1322660544!131153!1
X-Originating-IP: [195.191.216.34]
X-SpamReason: No, hits=0.0 required=7.0 tests=
X-StarScan-Version: 6.4.1; banners=-,-,-
X-VirusChecked: Checked
Received: (qmail 31116 invoked from network); 30 Nov 2011 13:42:24 -0000
Received: from mail.easterngraphics.com (HELO intranet.easterngraphics.com)
	(195.191.216.34) by server-9.tower-21.messagelabs.com with SMTP;
	30 Nov 2011 13:42:24 -0000
Received: from localhost (unknown [127.0.0.1])
	by intranet.easterngraphics.com (Postfix) with ESMTP id B70D81813419B; 
	Wed, 30 Nov 2011 13:42:23 +0000 (UTC)
X-Virus-Scanned: amavisd-new at easterngraphics.com
Received: from intranet.easterngraphics.com ([127.0.0.1])
	by localhost (intranet.easterngraphics.com [127.0.0.1]) (amavisd-new,
	port 10024)
	with ESMTP id r5nva3VKwye6; Wed, 30 Nov 2011 14:41:52 +0100 (CET)
Received: from iwan.localnet (unknown [195.191.216.126])
	(Authenticated sender: fischer)
	by intranet.easterngraphics.com (Postfix) with ESMTPSA id 9B830181352C3;
	Wed, 30 Nov 2011 14:41:48 +0100 (CET)
From: Christian Fischer <christian.fischer@easterngraphics.com>
Organization: EasternGraphics GmbH
To: Uli =?iso-8859-1?q?St=E4rk?= <Uli.Staerk@globalways.net>
Date: Wed, 30 Nov 2011 14:41:47 +0100
User-Agent: KMail/1.13.7 (Linux/2.6.41.1-1.fc15.i686; KDE/4.6.5; i686; ; )
References: <201111301141.52682.christian.fischer@easterngraphics.com>
	<BD4874944A68BE4C92E66740829DD3161D484F@EX1-STGT.intern.globalways.net>
In-Reply-To: <BD4874944A68BE4C92E66740829DD3161D484F@EX1-STGT.intern.globalways.net>
MIME-Version: 1.0
Message-Id: <201111301441.48276.christian.fischer@easterngraphics.com>
Cc: "xen-api@lists.xensource.com" <xen-api@lists.xensource.com>
Subject: Re: [Xen-API] [XCP1.1] ixgbe jumbo frame support not working
X-BeenThere: xen-api@lists.xensource.com
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-Unsubscribe: <http://lists.xensource.com/mailman/options/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
List-Post: <mailto:xen-api@lists.xensource.com>
List-Help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>,
	<mailto:xen-api-request@lists.xensource.com?subject=subscribe>
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Sender: xen-api-bounces@lists.xensource.com
Errors-To: xen-api-bounces@lists.xensource.com

WTF.

I've seen this thread, but it shows no solution. And I think it has nothing=
 to =

do with xen. But the insmod hint was great, thanks.

Changing the MTU to a value above 1504 isn't permitted if you load the modu=
le =

using modprobe, but with insmod it is.

[root@pool4-icl ~]# rmmod ixgbe
[root@pool4-icl ~]# modprobe ixgbe
[root@pool4-icl ~]# ip link set mtu 9000 dev eth5
SIOCSIFMTU: Invalid argument
[root@pool4-icl ~]# rmmod ixgbe
[root@pool4-icl ~]# /sbin/insmod $(/usr/bin/find /lib/modules/$(/bin/uname =
--
kernel-release) -name ixgbe.ko)
[root@pool4-icl ~]# ip link set mtu 9000 dev eth5
[root@pool4-icl ~]#


On Wednesday 30 November 2011 12:09:44 Uli St=E4rk wrote:
> This has something to do with xen, see:
> http://forums.citrix.com/message.jspa?messageID=3D1593544
> =

> I did not find any proper solution and fixed it manually for the storage
> network adapters:
> =

> DEVICE_ID=3D"10fb"
> MODULE_NAME=3D"ixgbe"
> THIS_HOST_DOM0_UUID=3D$(grep CONTROL_DOMAIN_UUID /etc/xensource-inventory=
 |
> /bin/cut -f 2 -d "=3D" | /bin/cut -f 2 -d "'")
> THIS_HOST_UUID=3D$(/opt/xensource/bin/xe vm-list uuid=3D$THIS_HOST_DOM0_U=
UID
> params=3Dresident-on --minimal) PIF_UUIDS=3D$(/opt/xensource/bin/xe pif-l=
ist
> host-uuid=3D$THIS_HOST_UUID physical=3Dtrue management=3Dfalse
> device-id=3D$DEVICE_ID --minimal | /bin/sed 's/,/ /g')
> =

> for PIF_UUID in $PIF_UUIDS
> do
>         /opt/xensource/bin/xe pif-param-set uuid=3D$PIF_UUID
> disallow-unplug=3Dfalse /opt/xensource/bin/xe pif-unplug uuid=3D$PIF_UUID
> done
> =

> /sbin/rmmod $MODULE_NAME
> /sbin/insmod $(/usr/bin/find /lib/modules/$(/bin/uname --kernel-release)
> -name $MODULE_NAME.ko) sleep 2
> =

> for PIF_UUID in $PIF_UUIDS
> do
>         PIF_IP=3D$(xe pif-list uuid=3D$PIF_UUID params=3DIP --minimal)
> #        PIF_NETMASK=3D$(xe pif-list uuid=3D$PIF_UUID params=3Dnetmask --=
minimal)
>         PIF_DEVICE=3D$(xe pif-list uuid=3D$PIF_UUID params=3Ddevice --min=
imal)
> =

>         /sbin/ip link set $PIF_DEVICE mtu 9000 up
>         /sbin/ip addr add $PIF_IP/24 dev $PIF_DEVICE
> done
> =

> -----Urspr=FCngliche Nachricht-----
> Von: xen-api-bounces@lists.xensource.com
> [mailto:xen-api-bounces@lists.xensource.com] Im Auftrag von Christian
> Fischer Gesendet: Mittwoch, 30. November 2011 11:42
> An: xen-api@lists.xensource.com
> Betreff: [Xen-API] [XCP1.1] ixgbe jumbo frame support not working
> =

> I need jumbo frame support. It is not possible to set MTU values above
> 1504. Any hints? ixgbe version 2.1.4 should support a maximum MTU value of
> 16110.
> =

> [root@pool5-icl ~]# ip link set mtu 1505 dev eth5
> SIOCSIFMTU: Invalid argument
> =

> [root@pool5-icl ~]# lspci | grep 10\ Gigabit
> 17:00.0 Ethernet controller: Intel Corporation 82599EB 10 Gigabit TN
> Network Connection (rev 01) 17:00.1 Ethernet controller: Intel Corporation
> 82599EB 10 Gigabit TN Network Connection (rev 01)
> =

> No problem to set MTU to 9000 for all other network interfaces
> (Broadcom/Intel 1GBit).
> =

> Thanks
> Christian
> =

> _______________________________________________
> xen-api mailing list
> xen-api@lists.xensource.com
> http://lists.xensource.com/mailman/listinfo/xen-api


_______________________________________________
xen-api mailing list
xen-api@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-api

