From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43497) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V44QI-0003u4-7d for qemu-devel@nongnu.org; Tue, 30 Jul 2013 03:32:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V44QD-0006pN-Ik for qemu-devel@nongnu.org; Tue, 30 Jul 2013 03:32:46 -0400 Received: from [222.73.24.84] (port=22507 helo=song.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V44QD-0006oL-6v for qemu-devel@nongnu.org; Tue, 30 Jul 2013 03:32:41 -0400 From: Wanlong Gao Date: Tue, 30 Jul 2013 15:32:23 +0800 Message-Id: <1375169553-12099-2-git-send-email-gaowanlong@cn.fujitsu.com> In-Reply-To: <1375169553-12099-1-git-send-email-gaowanlong@cn.fujitsu.com> References: <1375169553-12099-1-git-send-email-gaowanlong@cn.fujitsu.com> Subject: [Qemu-devel] [PATCH V6 01/11] NUMA: add NumaOptions, NumaNodeOptions and NumaMemOptions List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, ehabkost@redhat.com, lersek@redhat.com, peter.huangpeng@huawei.com, lcapitulino@redhat.com, bsd@redhat.com, hutao@cn.fujitsu.com, y-goto@jp.fujitsu.com, pbonzini@redhat.com, afaerber@suse.de, gaowanlong@cn.fujitsu.com Signed-off-by: Wanlong Gao --- qapi-schema.json | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/qapi-schema.json b/qapi-schema.json index a51f7d2..b31fd08 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3773,3 +3773,61 @@ ## { 'command': 'query-rx-filter', 'data': { '*name': 'str' }, 'returns': ['RxFilterInfo'] } + +## +# @UInt16 +# +# Let "uint16" be entry-wise +# +# @u16: a "uint16" type value +# +# Since 1.7 +## +{ 'type': 'UInt16', 'data': { 'u16': 'uint16' }} + +## +# @NumaOptions +# +# A discriminated record of NUMA options. +# +# Since 1.7 +## +{ 'union': 'NumaOptions', + 'data': { + 'node': 'NumaNodeOptions', + 'mem': 'NumaMemOptions' }} + +## +# @NumaNodeOptions +# +# Create a guest NUMA node. +# +# @nodeid: #optional NUMA node ID +# +# @cpus: #optional VCPUs belong to this node +# +# @mem: #optional memory size of this node (remain as legacy) +# +# Since: 1.7 +## +{ 'type': 'NumaNodeOptions', + 'data': { + '*nodeid': 'uint16', + '*cpus': ['UInt16'], + '*mem': 'str' }} + +## +# @NumaMemOptions +# +# Set memory information of guest NUMA node. +# +# @nodeid: #optional NUMA node ID +# +# @size: #optional memory size of this node +# +# Since 1.7 +## +{ 'type': 'NumaMemOptions', + 'data': { + '*nodeid': 'uint16', + '*size': 'size' }} -- 1.8.3.3.754.g9c3c367