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 <kra...@redhat.com> [...] > +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