From patchwork Mon Jan 10 09:28:20 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lai Jiangshan X-Patchwork-Id: 78111 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 9F1C9B70AF for ; Mon, 10 Jan 2011 21:09:13 +1100 (EST) Received: from localhost ([127.0.0.1]:51130 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PcEHO-0004Rb-1p for incoming@patchwork.ozlabs.org; Mon, 10 Jan 2011 04:43:10 -0500 Received: from [140.186.70.92] (port=55600 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PcEGW-0004RP-V6 for qemu-devel@nongnu.org; Mon, 10 Jan 2011 04:42:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PcEGV-0000u6-UF for qemu-devel@nongnu.org; Mon, 10 Jan 2011 04:42:16 -0500 Received: from [222.73.24.84] (port=59149 helo=song.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PcEGV-0000t0-Hl for qemu-devel@nongnu.org; Mon, 10 Jan 2011 04:42:15 -0500 Received: from tang.cn.fujitsu.com (tang.cn.fujitsu.com [10.167.250.3]) by song.cn.fujitsu.com (Postfix) with ESMTP id BAE0717012E; Mon, 10 Jan 2011 17:42:09 +0800 (CST) Received: from mailserver.fnst.cn.fujitus.com (tang.cn.fujitsu.com [127.0.0.1]) by tang.cn.fujitsu.com (8.14.3/8.13.1) with ESMTP id p0A9axol028668; Mon, 10 Jan 2011 17:37:00 +0800 Received: from fc14_lai.fnst ([10.167.225.146]) by mailserver.fnst.cn.fujitus.com (Lotus Domino Release 8.5.1FP4) with ESMTP id 2011011017273068-132406 ; Mon, 10 Jan 2011 17:27:30 +0800 Message-ID: <4D2AD134.1060406@cn.fujitsu.com> Date: Mon, 10 Jan 2011 17:28:20 +0800 From: Lai Jiangshan User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.9) Gecko/20100921 Fedora/3.1.4-1.fc14 Thunderbird/3.1.4 MIME-Version: 1.0 To: Luiz Capitulino , Markus Armbruster , qemu-devel@nongnu.org, aliguori@us.ibm.com, kvm@vger.kernel.org, Avi Kivity X-MIMETrack: Itemize by SMTP Server on mailserver/fnst(Release 8.5.1FP4|July 25, 2010) at 2011-01-10 17:27:30, Serialize by Router on mailserver/fnst(Release 8.5.1FP4|July 25, 2010) at 2011-01-10 17:41:46, Serialize complete at 2011-01-10 17:41:46 X-detected-operating-system: by eggs.gnu.org: FreeBSD 6.x (1) Cc: Subject: [Qemu-devel] [PATCH V5 4/4] nmi: report error(QError) when the cpu-index is invalid X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org When cpu-index is found invalid in runtime, it will report QERR_INVALID_PARAMETER_VALUE. Signed-off-by: Lai Jiangshan diff --git a/monitor.c b/monitor.c index 1bee840..7402c0f 100644 --- a/monitor.c +++ b/monitor.c @@ -2535,6 +2535,7 @@ static int do_inject_nmi(Monitor *mon, const QDict *qdict, QObject **ret_data) return 0; } + qerror_report(QERR_INVALID_PARAMETER_VALUE, "cpu-index", "a CPU number"); return -1; } #endif