From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34961) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VazJm-0000m6-Oa for qemu-devel@nongnu.org; Mon, 28 Oct 2013 22:46:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VazJi-0000u3-6O for qemu-devel@nongnu.org; Mon, 28 Oct 2013 22:46:06 -0400 Received: from [222.73.24.84] (port=53217 helo=song.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VazJh-0008Hl-M1 for qemu-devel@nongnu.org; Mon, 28 Oct 2013 22:46:02 -0400 From: Wanlong Gao Date: Tue, 29 Oct 2013 10:43:34 +0800 Message-Id: <1383014620-6913-6-git-send-email-gaowanlong@cn.fujitsu.com> In-Reply-To: <1383014620-6913-1-git-send-email-gaowanlong@cn.fujitsu.com> References: <1383014620-6913-1-git-send-email-gaowanlong@cn.fujitsu.com> Subject: [Qemu-devel] [PATCH V15 05/11] NUMA: introduce 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, mtosatti@redhat.com, peter.huangpeng@huawei.com, lcapitulino@redhat.com, drjones@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 | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/qapi-schema.json b/qapi-schema.json index b7f0b15..a19e453 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -4198,7 +4198,8 @@ ## { 'union': 'NumaOptions', 'data': { - 'node': 'NumaNodeOptions' }} + 'node': 'NumaNodeOptions', + 'mem' : 'NumaMemOptions' }} ## # @NumaNodeOptions @@ -4218,3 +4219,19 @@ '*nodeid': 'uint16', '*cpus': ['uint16'], '*mem': 'str' }} + +## +# @NumaMemOptions +# +# Set memory information of guest NUMA node. (for OptsVisitor) +# +# @nodeid: #optional NUMA node ID +# +# @size: #optional memory size of this node +# +# Since 1.7 +## +{ 'type': 'NumaMemOptions', + 'data': { + '*nodeid': 'uint16', + '*size': 'size' }} -- 1.8.4.1.600.g3d092bf