Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752436AbbKQKk5 (ORCPT ); Tue, 17 Nov 2015 05:40:57 -0500 Received: from lists.s-osg.org ([54.187.51.154]:57596 "EHLO lists.s-osg.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751390AbbKQKk4 (ORCPT ); Tue, 17 Nov 2015 05:40:56 -0500 Date: Tue, 17 Nov 2015 08:40:46 -0200 From: Mauro Carvalho Chehab To: Danilo Cesar Lemes de Paula , LMML Cc: linux-doc@vger.kernel.org, Randy Dunlap , Daniel Vetter , Laurent Pinchart , Jonathan Corbet , Herbert Xu , Stephan Mueller , Michal Marek , linux-kernel@vger.kernel.org, intel-gfx , dri-devel Subject: Re: [PATCH v2 2/4] scripts/kernel-doc: Replacing highlights hash by an array Message-ID: <20151117084046.5c911c6a@recife.lan> In-Reply-To: <1438112718-12168-3-git-send-email-danilo.cesar@collabora.co.uk> References: <1438112718-12168-1-git-send-email-danilo.cesar@collabora.co.uk> <1438112718-12168-3-git-send-email-danilo.cesar@collabora.co.uk> Organization: Samsung X-Mailer: Claws Mail 3.12.0 (GTK+ 2.24.28; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1612 Lines: 42 Hi Danilo, Em Tue, 28 Jul 2015 16:45:16 -0300 Danilo Cesar Lemes de Paula escreveu: > The "highlight" code is very sensible to the order of the hash keys, > but the order of the keys cannot be predicted on Perl. It generates > faulty DocBook entries like: > - @device_for_each_child > > We should use an array for that job, so we can guarantee that the order > of the regex execution on dohighlight won't change. ... > @@ -2587,9 +2601,11 @@ $kernelversion = get_kernel_version(); > > # generate a sequence of code that will splice in highlighting information > # using the s// operator. > -foreach my $pattern (keys %highlights) { > -# print STDERR "scanning pattern:$pattern, highlight:($highlights{$pattern})\n"; > - $dohighlight .= "\$contents =~ s:$pattern:$highlights{$pattern}:gs;\n"; > +foreach my $k (keys @highlights) { The above causes some versions of perl to fail, as keys expect a hash argument: Execution of .//scripts/kernel-doc aborted due to compilation errors. Type of arg 1 to keys must be hash (not private array) at .//scripts/kernel-doc line 2714, near "@highlights) " This is happening at linuxtv.org server, with runs perl version 5.10.1. I had to revert this patch in order to be able to keep building the documentation of the media kABI on our server. Regards, Mauro -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/