All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arun Sharma <arun.sharma@intel.com>
To: xen-devel <xen-devel@lists.xensource.com>
Subject: [PATCH] Fix TypeError when starting VMX domains
Date: Mon, 08 Aug 2005 15:38:18 -0700	[thread overview]
Message-ID: <42F7DEDA.4000400@intel.com> (raw)


The attached patch fixes this traceback:

Traceback (most recent call last):
   File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 510, in construct
     self.construct_image()
   File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 574, in 
construct_image
     self.store_channel)
   File "/usr/lib/python/xen/xend/xenstore/xsobj.py", line 310, in 
introduceDomain
     log.info("DBMap>introduceDomain> %d %d %s %s" %(dom, page, evtchn, 
path))
TypeError: int argument required

--- a/tools/python/xen/xend/XendDomainInfo.py   Mon Aug  8 20:22:16 2005
+++ b/tools/python/xen/xend/XendDomainInfo.py   Mon Aug  8 15:00:19 2005
@@ -239,7 +239,7 @@

          self.channel = None
          self.store_channel = None
-        self.store_mfn = None
+        self.store_mfn = 0
          self.controllers = {}

             reply	other threads:[~2005-08-08 22:38 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-08-08 22:38 Arun Sharma [this message]
2005-08-09 11:00 ` [PATCH] Fix TypeError when starting VMX domains Christian Limpach
2005-08-09 20:46   ` Arun Sharma
2005-08-09 23:42     ` Arun Sharma
2005-08-10  8:49       ` Christian Limpach

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=42F7DEDA.4000400@intel.com \
    --to=arun.sharma@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 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.