From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:50381) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwImA-000460-Am for qemu-devel@nongnu.org; Wed, 24 Aug 2011 15:06:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwIm9-00037m-E8 for qemu-devel@nongnu.org; Wed, 24 Aug 2011 15:06:10 -0400 Received: from e5.ny.us.ibm.com ([32.97.182.145]:42137) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwIm9-00037i-Bf for qemu-devel@nongnu.org; Wed, 24 Aug 2011 15:06:09 -0400 Received: from d01relay04.pok.ibm.com (d01relay04.pok.ibm.com [9.56.227.236]) by e5.ny.us.ibm.com (8.14.4/8.13.1) with ESMTP id p7OIa99H025271 for ; Wed, 24 Aug 2011 14:36:09 -0400 Received: from d01av02.pok.ibm.com (d01av02.pok.ibm.com [9.56.224.216]) by d01relay04.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p7OIjqKu092450 for ; Wed, 24 Aug 2011 15:04:52 -0400 Received: from d01av02.pok.ibm.com (loopback [127.0.0.1]) by d01av02.pok.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p7OIhSOH010800 for ; Wed, 24 Aug 2011 15:43:28 -0300 From: Anthony Liguori Date: Wed, 24 Aug 2011 13:42:55 -0500 Message-Id: <1314211389-28915-1-git-send-email-aliguori@us.ibm.com> Subject: [Qemu-devel] [PATCH 00/14] Convert commands to QAPI (batch 1) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Kevin Wolf , Michael Roth , Luiz Capitulino This is my attempt to jump-start the QAPI switch over. All of the hard work is already done in my qapi branch, we just need to start merging stuff. To simplify the merge process, I've introduced a new mode to the code generator that lets us do conversions without using the new QMP server. Once this series is merged, anything that touchs QMP (to modify a command or add a new command) must do it through QAPI--no exceptions. This series also includes Dans change to the 'change' command. I'm not thrilled about people using this command but its better to err on the side of caution. It's now officially deprecated with much more robust replacement commands.