From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:48541) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QzXdz-0000Ex-U3 for qemu-devel@nongnu.org; Fri, 02 Sep 2011 13:35:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QzXdy-0001x6-HR for qemu-devel@nongnu.org; Fri, 02 Sep 2011 13:35:07 -0400 Received: from cpe-70-123-132-139.austin.res.rr.com ([70.123.132.139]:35463 helo=localhost6.localdomain6) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QzXdy-0001vS-1n for qemu-devel@nongnu.org; Fri, 02 Sep 2011 13:35:06 -0400 From: Anthony Liguori Date: Fri, 2 Sep 2011 12:34:43 -0500 Message-Id: <1314984898-19141-1-git-send-email-aliguori@us.ibm.com> Subject: [Qemu-devel] [PATCH 00/15] Convert commands to QAPI (batch 1) (v2) 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. Since v1, I've tried to address all review comments. I've also tested the modified commands extensively.