From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754498AbdEHLHv (ORCPT ); Mon, 8 May 2017 07:07:51 -0400 Received: from mail-pg0-f67.google.com ([74.125.83.67]:34353 "EHLO mail-pg0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754432AbdEHLHt (ORCPT ); Mon, 8 May 2017 07:07:49 -0400 From: Taeung Song To: Arnaldo Carvalho de Melo Cc: linux-kernel@vger.kernel.org, Jiri Olsa , Namhyung Kim Subject: [PATCH v2 3/4] perf config: Correctly check whether it is from system config Date: Mon, 8 May 2017 20:07:45 +0900 Message-Id: <1494241665-32472-1-git-send-email-treeze.taeung@gmail.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Currently section's from_system_config was checked twice. So adjust it in order to correctly check not only section's but also item's from_system_config. Cc: Jiri Olsa Cc: Namhyung Kim Signed-off-by: Taeung Song --- tools/perf/builtin-config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/builtin-config.c b/tools/perf/builtin-config.c index 0d38599..2a6ca0d 100644 --- a/tools/perf/builtin-config.c +++ b/tools/perf/builtin-config.c @@ -56,7 +56,7 @@ static int set_config(struct perf_config_set *set, const char *file_name) fprintf(fp, "[%s]\n", section->name); perf_config_items__for_each_entry(§ion->items, item) { - if (!use_system_config && section->from_system_config) + if (!use_system_config && item->from_system_config) continue; if (item->value) fprintf(fp, "\t%s = %s\n", -- 2.7.4