From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37754) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d41Lb-0002gi-Dl for qemu-devel@nongnu.org; Fri, 28 Apr 2017 04:33:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d41La-0003Wh-8M for qemu-devel@nongnu.org; Fri, 28 Apr 2017 04:33:51 -0400 From: Markus Armbruster References: <20170427215821.19397-1-eblake@redhat.com> <20170427215821.19397-7-eblake@redhat.com> Date: Fri, 28 Apr 2017 10:33:36 +0200 In-Reply-To: <20170427215821.19397-7-eblake@redhat.com> (Eric Blake's message of "Thu, 27 Apr 2017 16:58:17 -0500") Message-ID: <87a871nd7j.fsf@dusky.pond.sub.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v5 06/10] qobject: Use simpler QDict/QList scalar insertion macros List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eric Blake Cc: qemu-devel@nongnu.org, Kevin Wolf , Alexander Graf , Josh Durgin , Stefano Stabellini , Fam Zheng , Michael Roth , "open list:Block layer core" , "Richard W.M. Jones" , Stefan Weil , Jeff Cody , Peter Lieven , Max Reitz , Alberto Garcia , Gerd Hoffmann , Stefan Hajnoczi , "open list:X86" , Anthony Perard , Paolo Bonzini , "Dr. David Alan Gilbert" , Richard Henderson , Philippe =?utf-8?Q?Mathieu-Daud?= =?utf-8?Q?=C3=A9?= Eric Blake writes: > We now have macros in place to make it less verbose to add a scalar > to QDict and QList, so use them. To make this patch smaller to > review, a couple of subdirectories were done in earlier patches. Scratch the last sentence. Can do on commit. > Patch created mechanically via: > spatch --sp-file scripts/coccinelle/qobject.cocci \ > --macro-file scripts/cocci-macro-file.h --dir . --in-place > then touched up manually to fix a couple of '?:' back to original > spacing, as well as avoiding a long line in monitor.c. > > Signed-off-by: Eric Blake > Reviewed-by: Markus Armbruster > > --- > v5: rebase to master (Coccinelle found a couple new spots), squash 3 > patches into 1, adjust R-b to only list Markus (while there were other > reviews on the pre-squashed patches, Markus was the only one on all 3) The block: part had Acked-by: Richard W.M. Jones Reviewed-by: Stefan Hajnoczi Reviewed-by: Alberto Garcia The tests and qobject parts had Reviewed-by: Philippe Mathieu-Daud=C3=A9 Richard, Stefan, Alberto, Philippe, let me know if you'd like me to convert your R-by of parts to an Acked-by of the combined patch. Feel free to review the combined patch, of course. > v4: no change > v3: new patch