From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:40266) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ggoUp-00025P-S0 for qemu-devel@nongnu.org; Tue, 08 Jan 2019 05:20:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ggoUm-0006oE-KX for qemu-devel@nongnu.org; Tue, 08 Jan 2019 05:20:30 -0500 Date: Tue, 8 Jan 2019 11:20:12 +0100 From: Cornelia Huck Message-ID: <20190108112012.78f3dbb9.cohuck@redhat.com> In-Reply-To: <20190108064543.asg63onrb3hpripf@sirius.home.kraxel.org> References: <20190107193020.21744-1-ehabkost@redhat.com> <20190107193020.21744-4-ehabkost@redhat.com> <20190108064543.asg63onrb3hpripf@sirius.home.kraxel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 3/3] machine: Use shorter format for GlobalProperty arrays List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann Cc: Eduardo Habkost , qemu-devel@nongnu.org, qemu-ppc@nongnu.org, Stefano Stabellini , David Hildenbrand , Halil Pasic , Christian Borntraeger , qemu-s390x@nongnu.org, "Michael S. Tsirkin" , =?UTF-8?B?TWFyYy1BbmRyw6k=?= Lureau , Anthony Perard , Paolo Bonzini , David Gibson , xen-devel@lists.xenproject.org, Richard Henderson On Tue, 8 Jan 2019 07:45:43 +0100 Gerd Hoffmann wrote: > Hi, > > > + { "migration", "decompress-error-check", "off" }, > > + { "hda-audio", "use-timer", "false" }, > > + { "cirrus-vga", "global-vmstate", "true" }, > > + { "VGA", "global-vmstate", "true" }, > > + { "vmware-svga", "global-vmstate", "true" }, > > + { "qxl-vga", "global-vmstate", "true" }, > > I'd like to have the fields aligned. Especially in cases like this one > where multiple devices get the same value assigned it makes things more > readable: > > { "migration", "decompress-error-check", "off" }, > { "hda-audio", "use-timer", "false" }, > { "cirrus-vga", "global-vmstate", "true" }, > { "VGA", "global-vmstate", "true" }, > { "vmware-svga", "global-vmstate", "true" }, > { "qxl-vga", "global-vmstate", "true" }, > > thanks, > Gerd > I'm a bit on the fence here. It does make things more readable (at least in your example), but I find editing aligned tables a bit annoying. OTOH, that won't happen often, anyway.