From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34314) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WhOBS-00085b-Fh for qemu-devel@nongnu.org; Mon, 05 May 2014 15:04:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WhOBM-0004xY-DX for qemu-devel@nongnu.org; Mon, 05 May 2014 15:04:14 -0400 Received: from cantor2.suse.de ([195.135.220.15]:44524 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WhOBM-0004xG-3Y for qemu-devel@nongnu.org; Mon, 05 May 2014 15:04:08 -0400 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Mon, 5 May 2014 21:03:46 +0200 Message-Id: <1399316644-20700-3-git-send-email-afaerber@suse.de> In-Reply-To: <1399316644-20700-1-git-send-email-afaerber@suse.de> References: <1399316644-20700-1-git-send-email-afaerber@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 02/20] machine: Remove obsoleted field from QEMUMachine List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Andreas=20F=C3=A4rber?= , Marcel Apfelbaum From: Marcel Apfelbaum This field shouldn't be used any more since we adopted the QOM way of iterating over the types. The commit that obsoleted it is: commit 261747f176f6f2d88f8268aaebfdd1a1afe887e2 vl: Use MachineClass instead of global QEMUMachine list The machine registration flow is refactored to use the QOM functional= ity. Instead of linking the machines into a list, each machine has a type and the types can be traversed in the QOM way. Signed-off-by: Marcel Apfelbaum Signed-off-by: Andreas F=C3=A4rber --- include/hw/boards.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/hw/boards.h b/include/hw/boards.h index dd2c70d..aaaa871 100644 --- a/include/hw/boards.h +++ b/include/hw/boards.h @@ -46,7 +46,6 @@ struct QEMUMachine { const char *default_machine_opts; const char *default_boot_order; GlobalProperty *compat_props; - struct QEMUMachine *next; const char *hw_version; }; =20 --=20 1.8.4.5