From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755158AbaLVPFR (ORCPT ); Mon, 22 Dec 2014 10:05:17 -0500 Received: from mail.kernel.org ([198.145.19.201]:52805 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753184AbaLVPFP (ORCPT ); Mon, 22 Dec 2014 10:05:15 -0500 Date: Mon, 22 Dec 2014 12:05:12 -0300 From: Arnaldo Carvalho de Melo To: Jiri Olsa Cc: Rickard Strandqvist , Peter Zijlstra , Paul Mackerras , Ingo Molnar , Ramkumar Ramachandra , Namhyung Kim , linux-kernel@vger.kernel.org Subject: Re: [PATCH] tools: perf: util: color.c: Remove some unused functions Message-ID: <20141222150512.GE7644@kernel.org> References: <1419079865-354-1-git-send-email-rickard_strandqvist@spectrumdigital.se> <20141222145610.GD29096@krava.brq.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20141222145610.GD29096@krava.brq.redhat.com> X-Url: http://acmel.wordpress.com 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 Em Mon, Dec 22, 2014 at 03:56:10PM +0100, Jiri Olsa escreveu: > On Sat, Dec 20, 2014 at 01:51:05PM +0100, Rickard Strandqvist wrote: > > Removes some functions that are not used anywhere: > > color_parse_mem() color_parse() > > > > This was partially found by using a static code analysis program called cppcheck. > > and partially removed ;-) > > [jolsa@krava perf]$ make > BUILD: Doing 'make -j4' parallel build > CC util/debug.o > CC util/color.o > CC util/machine.o > CC util/map.o > util/color.c:8:12: error: ‘parse_color’ defined but not used [-Werror=unused-function] > static int parse_color(const char *name, int len) > ^ > util/color.c:28:12: error: ‘parse_attr’ defined but not used [-Werror=unused-function] > static int parse_attr(const char *name, int len) > ^ > cc1: all warnings being treated as errors > make[1]: *** [util/color.o] Error 1 > make[1]: *** Waiting for unfinished jobs.... > make: *** [all] Error 2 > > > any clue why this (color name parsing) is in? Humm, there is support for changing the TUI colors in ~/.perfconfig, but probably it doesn't uses those functions? - Arnaldo