From patchwork Tue Oct 30 12:35:23 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kashyap Chamarthy X-Patchwork-Id: 10660853 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 702AE17DF for ; Tue, 30 Oct 2018 12:37:12 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 4F98629494 for ; Tue, 30 Oct 2018 12:37:12 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 3BC50293A5; Tue, 30 Oct 2018 12:37:12 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id E77DA293A5 for ; Tue, 30 Oct 2018 12:37:11 +0000 (UTC) Received: from localhost ([::1]:52957 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gHTGh-0007Fi-Bk for patchwork-qemu-devel@patchwork.kernel.org; Tue, 30 Oct 2018 08:37:11 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60247) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gHTFI-0005yC-WA for qemu-devel@nongnu.org; Tue, 30 Oct 2018 08:35:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gHTFE-0002dp-M1 for qemu-devel@nongnu.org; Tue, 30 Oct 2018 08:35:44 -0400 Received: from mx1.redhat.com ([209.132.183.28]:35184) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gHTFD-0002U5-8c for qemu-devel@nongnu.org; Tue, 30 Oct 2018 08:35:40 -0400 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 8B278387AF4 for ; Tue, 30 Oct 2018 12:35:32 +0000 (UTC) Received: from paraplu.localdomain (ovpn-112-33.ams2.redhat.com [10.36.112.33]) by smtp.corp.redhat.com (Postfix) with ESMTP id E49C26046B; Tue, 30 Oct 2018 12:35:30 +0000 (UTC) From: Kashyap Chamarthy To: qemu-devel@nongnu.org Date: Tue, 30 Oct 2018 13:35:23 +0100 Message-Id: <20181030123526.26415-1-kchamart@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Tue, 30 Oct 2018 12:35:32 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH v3 0/3] Deprecate QMP & HMP `cpu-add`; document vCPU hotplug X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: thuth@redhat.com, ehabkost@redhat.com, Kashyap Chamarthy , armbru@redhat.com, imammedo@redhat.com Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP The first patch deprecates the QMP `cpu-add`, the second its HMP equivalent, and the third documents vCPU hotplug procedure using QMP `device_add` et al. v2: https://lists.gnu.org/archive/html/qemu-devel/2018-09/msg03191.html Kashyap Chamarthy (3): Deprecate QMP `cpu-add` Deprecate HMP `cpu-add` docs: Document vCPU hotplug procedure docs/cpu-hotplug.rst | 142 +++++++++++++++++++++++++++++++++++++++++++ hmp-commands.hx | 6 +- hmp.c | 2 + qapi/misc.json | 8 ++- qemu-deprecated.texi | 5 ++ 5 files changed, 160 insertions(+), 3 deletions(-) create mode 100644 docs/cpu-hotplug.rst Reviewed-by: Markus Armbruster