From patchwork Fri Aug 10 16:04:10 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anthony Liguori X-Patchwork-Id: 176533 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id E78252C0093 for ; Sat, 11 Aug 2012 02:27:54 +1000 (EST) Received: from localhost ([::1]:43837 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Szs40-0005iI-Uz for incoming@patchwork.ozlabs.org; Fri, 10 Aug 2012 12:27:52 -0400 Received: from eggs.gnu.org ([208.118.235.92]:48253) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Szs3e-0005Sg-Qh for qemu-devel@nongnu.org; Fri, 10 Aug 2012 12:27:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Szs3d-0000Dz-Ok for qemu-devel@nongnu.org; Fri, 10 Aug 2012 12:27:30 -0400 Received: from cpe-70-123-145-39.austin.res.rr.com ([70.123.145.39]:47844 helo=localhost6.localdomain6) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Szs3d-0000C6-Fl for qemu-devel@nongnu.org; Fri, 10 Aug 2012 12:27:29 -0400 Received: from localhost6.localdomain6 (localhost.localdomain [127.0.0.1]) by localhost6.localdomain6 (8.14.4/8.14.4/Debian-2ubuntu2) with ESMTP id q7AG4Otf002327; Fri, 10 Aug 2012 11:04:25 -0500 Received: (from anthony@localhost) by localhost6.localdomain6 (8.14.4/8.14.4/Submit) id q7AG4NCF002326; Fri, 10 Aug 2012 11:04:23 -0500 From: Anthony Liguori To: qemu-devel@nongnu.org Date: Fri, 10 Aug 2012 11:04:10 -0500 Message-Id: <1344614655-2195-3-git-send-email-aliguori@us.ibm.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1344614655-2195-1-git-send-email-aliguori@us.ibm.com> References: <1344614655-2195-1-git-send-email-aliguori@us.ibm.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 70.123.145.39 Cc: Peter Maydell , Anthony Liguori , Alexander Graf , Markus Armbruster , Eric Blake Subject: [Qemu-devel] [PATCH 2/7] qapi: mark QOM commands stable X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org We've had a cycle to tweak. It is time to commit to supporting them. Signed-off-by: Anthony Liguori --- qapi-schema.json | 19 ++++--------------- 1 files changed, 4 insertions(+), 15 deletions(-) diff --git a/qapi-schema.json b/qapi-schema.json index 191a889..a938c8d 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -1363,9 +1363,7 @@ # 4) A link type in the form 'link' where subtype is a qdev # device type name. Link properties form the device model graph. # -# Since: 1.1 -# -# Notes: This type is experimental. Its syntax may change in future releases. +# Since: 1.2 ## { 'type': 'ObjectPropertyInfo', 'data': { 'name': 'str', 'type': 'str' } } @@ -1382,10 +1380,7 @@ # Returns: a list of @ObjectPropertyInfo that describe the properties of the # object. # -# Since: 1.1 -# -# Notes: This command is experimental. It's syntax may change in future -# releases. +# Since: 1.2 ## { 'command': 'qom-list', 'data': { 'path': 'str' }, @@ -1421,9 +1416,7 @@ # returns as #str pathnames. All integer property types (u8, u16, etc) # are returned as #int. # -# Since: 1.1 -# -# Notes: This command is experimental and may change syntax in future releases. +# Since: 1.2 ## { 'command': 'qom-get', 'data': { 'path': 'str', 'property': 'str' }, @@ -1442,9 +1435,7 @@ # @value: a value who's type is appropriate for the property type. See @qom-get # for a description of type mapping. # -# Since: 1.1 -# -# Notes: This command is experimental and may change syntax in future releases. +# Since: 1.2 ## { 'command': 'qom-set', 'data': { 'path': 'str', 'property': 'str', 'value': 'visitor' }, @@ -1721,8 +1712,6 @@ # Returns: a list of @ObjectTypeInfo or an empty list if no results are found # # Since: 1.1 -# -# Notes: This command is experimental and may change syntax in future releases. ## { 'command': 'qom-list-types', 'data': { '*implements': 'str', '*abstract': 'bool' },