From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752215AbcFWNih (ORCPT ); Thu, 23 Jun 2016 09:38:37 -0400 Received: from mail.kernel.org ([198.145.29.136]:52060 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751743AbcFWNif (ORCPT ); Thu, 23 Jun 2016 09:38:35 -0400 Date: Thu, 23 Jun 2016 10:38:27 -0300 From: Arnaldo Carvalho de Melo To: Taeung Song Cc: linux-kernel@vger.kernel.org, Jiri Olsa , Namhyung Kim , Ingo Molnar , Peter Zijlstra , Alexander Shishkin , Masami Hiramatsu , Wang Nan , Jiri Olsa , Ingo Molnar Subject: Re: [PATCH v11 2/3] perf config: Reimplement perf_config() introducing new perf_config__init() and perf_config__finish() Message-ID: <20160623133827.GO4213@kernel.org> References: <1466687020-21198-1-git-send-email-treeze.taeung@gmail.com> <1466687020-21198-3-git-send-email-treeze.taeung@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1466687020-21198-3-git-send-email-treeze.taeung@gmail.com> X-Url: http://acmel.wordpress.com User-Agent: Mutt/1.6.1 (2016-04-27) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Thu, Jun 23, 2016 at 10:03:39PM +0900, Taeung Song escreveu: > +/** > + * perf_config_sections__for_each - iterate thru all the sections > + * @list: list_head instance to iterate > + * @section: struct perf_config_section iterator > + */ > +#define perf_config_sections__for_each(list, section) \ > + list_for_each_entry(section, list, node) > + I was almost applying this but then there is a little detail, which is that it is a goal to make the tools/ code look as much as kernel code as possible, to encourage kernel developers to contribute to the tools codebase and also to expose userspace developers to kernel practices. With that said, please rename these for_each macros to for_each_entry, i.e.: perf_config_sections__for_each_entry() perf_config_items__for_each_entry() As for_each and for_each_entry both exist in the kernel and have well know semantics that we want to keep. Probably there are cases in tools/ where we break this rule, I'll check and fix. Thanks, - Arnaldo > +/** > + * perf_config_items__for_each - iterate thru all the items > + * @list: list_head instance to iterate > + * @item: struct perf_config_item iterator > + */ > +#define perf_config_items__for_each(list, item) \ > + list_for_each_entry(item, list, node) > + > +/** > + * perf_config_set__for_each - iterate thru all the config section-item pairs > + * @set: evlist instance to iterate > + * @section: struct perf_config_section iterator > + * @item: struct perf_config_item iterator > + */ > +#define perf_config_set__for_each(set, section, item) \ > + perf_config_sections__for_each(&set->sections, section) \ > + perf_config_items__for_each(§ion->items, item) > > #endif /* __PERF_CONFIG_H */ > -- > 2.5.0