All of lore.kernel.org
 help / color / mirror / Atom feed
* WG: Re: Xen 4.1.2 - when ?
@ 2011-08-29 10:00 Carsten Schiers
  2011-08-30 15:58 ` Ian Jackson
  0 siblings, 1 reply; 2+ messages in thread
From: Carsten Schiers @ 2011-08-29 10:00 UTC (permalink / raw)
  To: Ian.Jackson; +Cc: xen-devel

[-- Attachment #1: Type: text/plain, Size: 1695 bytes --]

cced the list WITH attachment...

Signed-off-by: Carsten Schiers <carsten@schiers.de>

(not sure, whether the line above is necessary).

BR,
Carsten.

----- Originalnachricht -----
Von: Carsten Schiers <carsten@schiers.de>
Gesendet: Son, 28.8.2011 23:02
An: Ian.Jackson <Ian.Jackson@eu.citrix.com>
Cc: fabio.fantoni <fabio.fantoni@heliman.it> ; keir.xen <keir.xen@gmail.com> ; xen-devel <xen-devel@lists.xen.org>
Betreff: AW: [Xen-devel] Re: Xen 4.1.2 - when ?

Hi,

done. Find attached as file against actual xen-4.1-testing.hg.

BR,
Carsten.

-----Ursprüngliche Nachricht-----
Von: Ian Jackson [mailto:Ian.Jackson@eu.citrix.com] 
Gesendet: Donnerstag, 25. August 2011 17:07
An: Carsten Schiers
Cc: keir.xen@gmail.com; xen-devel@lists.xen.org; Fabio Fantoni
Betreff: AW: [Xen-devel] Re: Xen 4.1.2 - when ?

(xen-devel added to the CC)

Carsten Schiers writes ("AW: [Xen-devel] Re: Xen 4.1.2 - when ?"):
> Hi Keir, did you intentionally left these out for 4.1.2?
> 
> They improve usability of xl toolstack as xend replacement.
> 
> http://xenbits.xen.org/hg/xen-unstable.hg/rev/0648846b4d17
> http://xenbits.xen.org/hg/xen-unstable.hg/rev/2ae357405850
> http://xenbits.xen.org/hg/xen-unstable.hg/rev/c2995f0555af

I'm happy with all of these being backported.

The first two apply cleanly to 4.1-testing.  Keir, should I port them
across or do you have a clever backport script ?

The last one, c2995f0555af, has conflicts.  Carsten, would you care to
post a version against 4.1 ?

Thanks,
Ian.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel



[-- Attachment #2: xl-4.1-testing.patch --]
[-- Type: application/octet-stream, Size: 2297 bytes --]

diff -r 007a40379000 tools/libxl/xl_cmdimpl.c
--- a/tools/libxl/xl_cmdimpl.c	Thu Aug 25 15:36:14 2011 +0100
+++ b/tools/libxl/xl_cmdimpl.c	Sun Aug 28 23:01:04 2011 +0200
@@ -293,7 +293,7 @@
     libxl_domain_build_info *b_info = &d_config->b_info;
 
     printf("(domain\n\t(domid %d)\n", domid);
-    printf("\t(domain_create_info)\n");
+    printf("\t(create_info)\n");
     printf("\t(hvm %d)\n", c_info->hvm);
     printf("\t(hap %d)\n", c_info->hap);
     printf("\t(oos %d)\n", c_info->oos);
@@ -320,7 +320,7 @@
         printf("\t(platformdata (null))\n");
 
 
-    printf("\t(domain_build_info)\n");
+    printf("\t(build_info)\n");
     printf("\t(max_vcpus %d)\n", b_info->max_vcpus);
     printf("\t(tsc_mode %d)\n", b_info->tsc_mode);
     printf("\t(max_memkb %d)\n", b_info->max_memkb);
@@ -379,7 +379,7 @@
         printf("\t(device\n");
         printf("\t\t(tap\n");
         printf("\t\t\t(backend_domid %d)\n", d_config->disks[i].backend_domid);
-        printf("\t\t\t(domid %d)\n", d_config->disks[i].domid);
+        printf("\t\t\t(frontend_domid %d)\n", d_config->disks[i].domid);
         printf("\t\t\t(physpath %s)\n", d_config->disks[i].pdev_path);
         printf("\t\t\t(phystype %d)\n", d_config->disks[i].backend);
         printf("\t\t\t(virtpath %s)\n", d_config->disks[i].vdev);
@@ -394,7 +394,7 @@
         printf("\t(device\n");
         printf("\t\t(vif\n");
         printf("\t\t\t(backend_domid %d)\n", d_config->vifs[i].backend_domid);
-        printf("\t\t\t(domid %d)\n", d_config->vifs[i].domid);
+        printf("\t\t\t(frontend_domid %d)\n", d_config->vifs[i].domid);
         printf("\t\t\t(devid %d)\n", d_config->vifs[i].devid);
         printf("\t\t\t(mtu %d)\n", d_config->vifs[i].mtu);
         printf("\t\t\t(model %s)\n", d_config->vifs[i].model);
@@ -424,7 +424,7 @@
         printf("\t(device\n");
         printf("\t\t(vfb\n");
         printf("\t\t\t(backend_domid %d)\n", d_config->vfbs[i].backend_domid);
-        printf("\t\t\t(domid %d)\n", d_config->vfbs[i].domid);
+        printf("\t\t\t(frontend_domid %d)\n", d_config->vfbs[i].domid);
         printf("\t\t\t(devid %d)\n", d_config->vfbs[i].devid);
         printf("\t\t\t(vnc %d)\n", d_config->vfbs[i].vnc);
         printf("\t\t\t(vnclisten %s)\n", d_config->vfbs[i].vnclisten);

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 2+ messages in thread

* WG: Re: Xen 4.1.2 - when ?
  2011-08-29 10:00 WG: Re: Xen 4.1.2 - when ? Carsten Schiers
@ 2011-08-30 15:58 ` Ian Jackson
  0 siblings, 0 replies; 2+ messages in thread
From: Ian Jackson @ 2011-08-30 15:58 UTC (permalink / raw)
  To: Carsten Schiers; +Cc: xen-devel

Carsten Schiers writes ("WG: [Xen-devel] Re: Xen 4.1.2 - when ?"):
> cced the list WITH attachment...

Thanks :-).

> Signed-off-by: Carsten Schiers <carsten@schiers.de>
> (not sure, whether the line above is necessary).

Since you've edited the patch, I think so.  I have applied all three
(the one you adjusted, and the other two).

Thanks,
Ian.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-08-30 15:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-29 10:00 WG: Re: Xen 4.1.2 - when ? Carsten Schiers
2011-08-30 15:58 ` Ian Jackson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.