From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49471) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VH91i-0003wJ-Qj for qemu-devel@nongnu.org; Wed, 04 Sep 2013 05:05:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VH91Z-0007oR-7z for qemu-devel@nongnu.org; Wed, 04 Sep 2013 05:05:26 -0400 Received: from [222.73.24.84] (port=50591 helo=song.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VH91Y-0007n5-Id for qemu-devel@nongnu.org; Wed, 04 Sep 2013 05:05:16 -0400 From: Wanlong Gao Date: Wed, 4 Sep 2013 17:03:34 +0800 Message-Id: <1378285422-7361-6-git-send-email-gaowanlong@cn.fujitsu.com> In-Reply-To: <1378285422-7361-1-git-send-email-gaowanlong@cn.fujitsu.com> References: <1378285422-7361-1-git-send-email-gaowanlong@cn.fujitsu.com> Subject: [Qemu-devel] [PATCH V12 05/13] 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, 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 fe12ea5..3ca742e 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3783,7 +3783,8 @@ ## { 'union': 'NumaOptions', 'data': { - 'node': 'NumaNodeOptions' }} + 'node': 'NumaNodeOptions', + 'mem' : 'NumaMemOptions' }} ## # @NumaNodeOptions @@ -3803,3 +3804,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.21.g992c386