From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51601) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gHVX2-0008JB-BF for qemu-devel@nongnu.org; Tue, 30 Oct 2018 11:02:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gHVWw-0007tF-VG for qemu-devel@nongnu.org; Tue, 30 Oct 2018 11:02:10 -0400 Date: Tue, 30 Oct 2018 12:02:00 -0300 From: Eduardo Habkost Message-ID: <20181030150200.GW3902@habkost.net> References: <20181030111348.14713-1-kraxel@redhat.com> <20181030111348.14713-2-kraxel@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181030111348.14713-2-kraxel@redhat.com> Subject: Re: [Qemu-devel] [PATCH 1/4] add QemuSupportState List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann Cc: qemu-devel@nongnu.org, Paolo Bonzini , Alexander Graf , Marcel Apfelbaum , "Michael S. Tsirkin" , David Gibson , Eric Blake , qemu-ppc@nongnu.org, Richard Henderson , Markus Armbruster , =?iso-8859-1?Q?Herv=E9?= Poussineau On Tue, Oct 30, 2018 at 12:13:45PM +0100, Gerd Hoffmann wrote: > Indicates support state for somerhing (device, backend, subsystem, ...) > in qemu. Modeled roughly after the "S:" states we have in MAINTANERS. > > Signed-off-by: Gerd Hoffmann [...] > +typedef struct QemuSupportState { > + SupportState state; > + const char *reason; > +} QemuSupportState; I find it weird that we're calling this field "reason", while this is how the field is being actually used: * "use a newer machine type instead" * "use 40p machine type instead" * "use '-vga std' instead" These are not reasons for deprecation, they are just suggested alternatives. -- Eduardo