xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
From: Keir Fraser <keir.fraser@eu.citrix.com>
To: "Xu, Jiajun" <jiajun.xu@intel.com>,
	"xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Cc: Jim Fehlig <jfehlig@novell.com>
Subject: Re: Biweekly VMX status report. Xen: #21237 & Xen0: #a3e7c7...
Date: Sun, 9 May 2010 15:59:28 +0100	[thread overview]
Message-ID: <C80C8C61.1BAB%keir.fraser@eu.citrix.com> (raw)
In-Reply-To: <D5AB6E638E5A3E4B8F4406B113A5A19A1E55D324@shsmsx501.ccr.corp.intel.com>

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

On 09/05/2010 15:21, "Xu, Jiajun" <jiajun.xu@intel.com> wrote:

> New Bugs (4):
> ====================================================================
> 1. Save/Restore and Live Migration can not work
> http://bugzilla.xensource.com/bugzilla/show_bug.cgi?id=1609

Could xen-unstable:21223 be to blame? Can you reproduce this bug if you
revert that changeset? How about with the attached patch added (and with
21223 not reverted) -- I think this patch is intended as a fix for 21223.

 Thanks,
 Keir


[-- Attachment #2: suse-disable-tap2-default.patch --]
[-- Type: application/octet-stream, Size: 1203 bytes --]

Index: xen-4.0.0-testing/tools/python/xen/xm/main.py
===================================================================
--- xen-4.0.0-testing.orig/tools/python/xen/xm/main.py
+++ xen-4.0.0-testing/tools/python/xen/xm/main.py
@@ -2629,8 +2629,10 @@ def xm_usb_list_assignable_devices(args)
 def parse_block_configuration(args):
     dom = args[0]
 
-    if args[1].startswith('tap:'):
+    if args[1].startswith('tap2:'):
         cls = 'tap2'
+    elif args[1].startswith('tap:'):
+        cls = 'tap'
     else:
         cls = 'vbd'
 
Index: xen-4.0.0-testing/tools/python/xen/xm/create.py
===================================================================
--- xen-4.0.0-testing.orig/tools/python/xen/xm/create.py
+++ xen-4.0.0-testing/tools/python/xen/xm/create.py
@@ -791,8 +791,10 @@ def configure_disks(config_devs, vals):
     """Create the config for disks (virtual block devices).
     """
     for (uname, dev, mode, backend, protocol) in vals.disk:
-        if uname.startswith('tap:'):
+        if uname.startswith('tap2:'):
             cls = 'tap2'
+        elif uname.startswith('tap:'):
+            cls = 'tap'
         else:
             cls = 'vbd'
 

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

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

  reply	other threads:[~2010-05-09 14:59 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-09 14:21 Biweekly VMX status report. Xen: #21237 & Xen0: #a3e7c7 Xu, Jiajun
2010-05-09 14:59 ` Keir Fraser [this message]
2010-05-10 12:34   ` Xu, Jiajun
2010-05-10 12:40     ` Keir Fraser

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=C80C8C61.1BAB%keir.fraser@eu.citrix.com \
    --to=keir.fraser@eu.citrix.com \
    --cc=jfehlig@novell.com \
    --cc=jiajun.xu@intel.com \
    --cc=xen-devel@lists.xensource.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).