All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dan Smith <danms@us.ibm.com>
To: xen-devel@lists.xensource.com
Cc: Ewan Mellor <ewan@xensource.com>
Subject: Re: [Xen-changelog] /home/emellor/log2
Date: Mon, 10 Oct 2005 14:28:43 -0700	[thread overview]
Message-ID: <87zmphjc38.fsf@us.ibm.com> (raw)
In-Reply-To: E1EOZA4-0002p0-IQ@xenbits.xensource.com


> # HG changeset patch
> # User emellor@ewan
> # Node ID 32f9300618d607a486d7efccccc57d8a08b9deae
> # Parent  8e3ec9ab0075cbf6fcd1125a96a4c2734405374c
> /home/emellor/log2

This changeset breaks a lot of xm commands.  I get the following stack
trace on about 40 xm-tests:

>  Traceback (most recent call last):
>   File "/usr/sbin/xm", line 10, in ?
>     main.main(sys.argv)
>   File "/usr/lib/python/xen/xm/main.py", line 706, in main
>     handle_xend_error(argv[1], args[0], ex)
>   File "/usr/lib/python/xen/xm/main.py", line 174, in handle_xend_error
>     raise ex
> xen.xend.XendProtocol.XendError: Exception: Missing parameter: dev_config

I've tracked the problem down to the following in this changeset:

>      def op_device_create(self, op, req):
> -        fn = FormFn(self.xd.domain_device_create,
> -                    [['dom',    'int'],
> -                     ['config', 'sxpr']])
> -        val = fn(req.args, {'dom': self.dom.domid})
> -        return val
> +        return self.call(self.dom.device_create,
> +                         [['dev_config', 'sxpr']],
> +                         req)

The problem is that req.args has a 'config' arg, but no 'dev_config'
arg.  I imagine this was made in anticipation of changing the actual
argument to 'dev_config'.  If I change it back to 'config', things
start working again.

Do we want it named 'config' or 'dev_config'?  I can fix it up if I
know which way to go :)

-- 
Dan Smith
IBM Linux Technology Center
Open Hypervisor Team
email: danms@us.ibm.com

           reply	other threads:[~2005-10-10 21:28 UTC|newest]

Thread overview: expand[flat|nested]  mbox.gz  Atom feed
 [parent not found: <E1EOZA4-0002p0-IQ@xenbits.xensource.com>]

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=87zmphjc38.fsf@us.ibm.com \
    --to=danms@us.ibm.com \
    --cc=ewan@xensource.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.