From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60556) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c1aJb-0002X2-FY for qemu-devel@nongnu.org; Tue, 01 Nov 2016 10:45:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c1aJW-0006TK-KT for qemu-devel@nongnu.org; Tue, 01 Nov 2016 10:45:27 -0400 Received: from mx1.redhat.com ([209.132.183.28]:42984) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1c1aJW-0006TD-FS for qemu-devel@nongnu.org; Tue, 01 Nov 2016 10:45:22 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B533061BB2 for ; Tue, 1 Nov 2016 14:45:21 +0000 (UTC) References: <83b0fae0728906e18849c971d22d077d7fc0f179.1478010883.git.jcody@redhat.com> From: Paolo Bonzini Message-ID: <01a57e1e-81b8-644c-de61-c232df918294@redhat.com> Date: Tue, 1 Nov 2016 15:45:17 +0100 MIME-Version: 1.0 In-Reply-To: <83b0fae0728906e18849c971d22d077d7fc0f179.1478010883.git.jcody@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 1/1] checkpatch: allow spaces before parenthesis for 'coroutine_fn' List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jeff Cody , qemu-devel@nongnu.org Cc: armbru@redhat.com On 01/11/2016 15:38, Jeff Cody wrote: > Signed-off-by: Jeff Cody > --- > scripts/checkpatch.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl > index 3afa19a..9e64e61 100755 > --- a/scripts/checkpatch.pl > +++ b/scripts/checkpatch.pl > @@ -1754,7 +1754,7 @@ sub process { > # Ignore those directives where spaces _are_ permitted. > if ($name =~ /^(?: > if|for|while|switch|return|case| > - volatile|__volatile__| > + volatile|__volatile__|coroutine_fn| > __attribute__|format|__extension__| > asm|__asm__)$/x) > { > Looks good, thanks. Paolo