| Submitter | Lai Jiangshan |
|---|---|
| Date | Jan. 10, 2011, 9:28 a.m. |
| Message ID | <4D2AD134.1060406@cn.fujitsu.com> |
| Download | mbox | patch |
| Permalink | /patch/78111/ |
| State | New |
| Headers | show |
Comments
Patch
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
When cpu-index is found invalid in runtime, it will report QERR_INVALID_PARAMETER_VALUE. Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com> ---