From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1dVhBq-0003bS-SP for mharc-qemu-trivial@gnu.org; Thu, 13 Jul 2017 12:42:10 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45880) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dVhBo-0003Yf-2t for qemu-trivial@nongnu.org; Thu, 13 Jul 2017 12:42:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dVhBn-0004dC-Ff for qemu-trivial@nongnu.org; Thu, 13 Jul 2017 12:42:08 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59273) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dVhBj-0004bn-1n; Thu, 13 Jul 2017 12:42:03 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id E064E334583; Thu, 13 Jul 2017 16:42:01 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com E064E334583 Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=ehabkost@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com E064E334583 Received: from localhost (ovpn-116-67.gru2.redhat.com [10.97.116.67]) by smtp.corp.redhat.com (Postfix) with ESMTP id 59794709F3; Thu, 13 Jul 2017 16:41:56 +0000 (UTC) Date: Thu, 13 Jul 2017 13:41:53 -0300 From: Eduardo Habkost To: =?iso-8859-1?Q?Marc-Andr=E9?= Lureau Cc: qemu-devel@nongnu.org, qemu-trivial@nongnu.org, peter.maydell@linaro.org, "Michael S. Tsirkin" , Paolo Bonzini , Richard Henderson Message-ID: <20170713164153.GZ6020@localhost.localdomain> References: <20170713163219.9024-1-marcandre.lureau@redhat.com> <20170713163219.9024-28-marcandre.lureau@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <20170713163219.9024-28-marcandre.lureau@redhat.com> X-Fnord: you can see the fnord User-Agent: Mutt/1.8.0 (2017-02-23) X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Thu, 13 Jul 2017 16:42:02 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: Re: [Qemu-trivial] [PATCH v2 27/29] i386: replace g_malloc()+memcpy() with g_memdup() X-BeenThere: qemu-trivial@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jul 2017 16:42:09 -0000 On Thu, Jul 13, 2017 at 06:32:17PM +0200, Marc-Andr=E9 Lureau wrote: > I found these pattern via grepping the source tree. I don't have a > coccinelle script for it! >=20 > Signed-off-by: Marc-Andr=E9 Lureau Reviewed-by: Eduardo Habkost --=20 Eduardo From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45863) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dVhBm-0003XG-Cx for qemu-devel@nongnu.org; Thu, 13 Jul 2017 12:42:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dVhBj-0004c5-7s for qemu-devel@nongnu.org; Thu, 13 Jul 2017 12:42:06 -0400 Date: Thu, 13 Jul 2017 13:41:53 -0300 From: Eduardo Habkost Message-ID: <20170713164153.GZ6020@localhost.localdomain> References: <20170713163219.9024-1-marcandre.lureau@redhat.com> <20170713163219.9024-28-marcandre.lureau@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <20170713163219.9024-28-marcandre.lureau@redhat.com> Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v2 27/29] i386: replace g_malloc()+memcpy() with g_memdup() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?iso-8859-1?Q?Marc-Andr=E9?= Lureau Cc: qemu-devel@nongnu.org, qemu-trivial@nongnu.org, peter.maydell@linaro.org, "Michael S. Tsirkin" , Paolo Bonzini , Richard Henderson On Thu, Jul 13, 2017 at 06:32:17PM +0200, Marc-Andr=E9 Lureau wrote: > I found these pattern via grepping the source tree. I don't have a > coccinelle script for it! >=20 > Signed-off-by: Marc-Andr=E9 Lureau Reviewed-by: Eduardo Habkost --=20 Eduardo