From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754834AbbISNfK (ORCPT ); Sat, 19 Sep 2015 09:35:10 -0400 Received: from mx1.redhat.com ([209.132.183.28]:38192 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752077AbbISNfI (ORCPT ); Sat, 19 Sep 2015 09:35:08 -0400 Date: Sat, 19 Sep 2015 15:35:05 +0200 From: Jiri Olsa To: Arnaldo Carvalho de Melo Cc: Jiri Olsa , Ingo Molnar , Namhyung Kim , Adrian Hunter , David Ahern , Linux Kernel Mailing List Subject: Re: tools build: Unused function, incomplete rename Message-ID: <20150919133505.GA6650@krava.brq.redhat.com> References: <20150918192334.GW11551@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150918192334.GW11551@kernel.org> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Sep 18, 2015 at 04:23:34PM -0300, Arnaldo Carvalho de Melo wrote: > Hi Jiri, Ingo, > > While trying to figure out why the bpf feature test is always > triggering the display of the "Auto-detecting system features" I noticed > this pattern: > > [acme@felicio linux]$ egrep '^define|eval' tools/build/Makefile.feature > feature_check = $(eval $(feature_check_code)) > define feature_check_code > feature_set = $(eval $(feature_set_code)) > define feature_set_code > set_test_all_flags = $(eval $(set_test_all_flags_code)) > define set_test_all_flags_code > feature_print_status = $(eval $(feature_print_status_code)) $(info $(MSG)) > define feature_print_status_code > feature_print_text = $(eval $(feature_print_text_code)) $(info $(MSG)) > define feature_print_text_code > feature_display_check = $(eval $(feature_check_code)) > define feature_display_check_code > [acme@felicio linux]$ > > > In all but one case the eval matches the following define, except for the last > one, don't we need the following patch? > > $ git diff tools/build/Makefile.feature > diff --git a/tools/build/Makefile.feature b/tools/build/Makefile.feature > index 0caeaf2cae5f..072ec879b84f 100644 > --- a/tools/build/Makefile.feature > +++ b/tools/build/Makefile.feature > @@ -142,7 +142,7 @@ ifneq ("$(FEATURE_DUMP)","$(FEATURE_DUMP_FILE)") > feature_display := 1 > endif > > -feature_display_check = $(eval $(feature_check_code)) > +feature_display_check = $(eval $(feature_check_display_code)) > define feature_display_check_code > ifneq ($(feature-$(1)), 1) > feature_display := 1 ouch, that is a bug.. nice catch! thanks, jirka