From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49631) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z0sjX-00060z-6v for qemu-devel@nongnu.org; Fri, 05 Jun 2015 10:36:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z0sjR-0001SK-8M for qemu-devel@nongnu.org; Fri, 05 Jun 2015 10:36:31 -0400 Received: from mail-wi0-x22a.google.com ([2a00:1450:400c:c05::22a]:38112) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z0sjR-0001Re-2K for qemu-devel@nongnu.org; Fri, 05 Jun 2015 10:36:25 -0400 Received: by wibdq8 with SMTP id dq8so21221282wib.1 for ; Fri, 05 Jun 2015 07:36:24 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <5571B3E6.1030606@redhat.com> Date: Fri, 05 Jun 2015 16:36:22 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <02aa01d09f9a$5bb198d0$1314ca70$@samsung.com> In-Reply-To: <02aa01d09f9a$5bb198d0$1314ca70$@samsung.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] Do not fail if id field is present. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Pavel Fedin , qemu-devel@nongnu.org Cc: 'Markus Armbruster' On 05/06/2015 16:17, Pavel Fedin wrote: > This fixes QMP regression: > http://lists.gnu.org/archive/html/qemu-devel/2015-06/msg01795.html > > Signed-off-by: Pavel Fedin > --- > monitor.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/monitor.c b/monitor.c > index c7baa91..ef21bba 100644 > --- a/monitor.c > +++ b/monitor.c > @@ -4955,6 +4955,8 @@ static QDict *qmp_check_input_obj(QObject *input_obj, Error **errp) > "arguments", "object"); > return NULL; > } > + } else if (!strcmp(arg_name, "id")) { > + /* Ignored, necessary for backwards compatibility */ > } else { > error_set(errp, QERR_QMP_EXTRA_MEMBER, arg_name); > return NULL; > Nope, this is not enough to fix virt-test. Paolo