Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1349101 > unrolled thread

[PATCH] perf tools: explicitly declare inc_group_count as a void function

Started byColin King <colin.king@canonical.com>
First post2016-03-03 13:40 +0100
Last post2016-03-08 11:40 +0100
Articles 4 — 4 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] perf tools: explicitly declare inc_group_count as a void function Colin King <colin.king@canonical.com> - 2016-03-03 13:40 +0100
    Re: [PATCH] perf tools: explicitly declare inc_group_count as a void  function Jiri Olsa <jolsa@redhat.com> - 2016-03-03 13:40 +0100
      Re: [PATCH] perf tools: explicitly declare inc_group_count as a void  function Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-03-03 21:00 +0100
    [tip:perf/core] perf tools: Explicitly declare inc_group_count as a  void function tip-bot for Colin Ian King <tipbot@zytor.com> - 2016-03-08 11:40 +0100

#1349101 — [PATCH] perf tools: explicitly declare inc_group_count as a void function

FromColin King <colin.king@canonical.com>
Date2016-03-03 13:40 +0100
Subject[PATCH] perf tools: explicitly declare inc_group_count as a void function
Message-ID<r8AHU-77v-9@gated-at.bofh.it>
From: Colin Ian King <colin.king@canonical.com>

The return type is not defined, so it defaults to int, however,
the function is not returning anything, so this is clearly not
correct. Make it a void function.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 tools/perf/util/parse-events.y | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/util/parse-events.y b/tools/perf/util/parse-events.y
index 85c44ba..5be4a5f 100644
--- a/tools/perf/util/parse-events.y
+++ b/tools/perf/util/parse-events.y
@@ -28,7 +28,7 @@ do { \
 	INIT_LIST_HEAD(list);         \
 } while (0)
 
-static inc_group_count(struct list_head *list,
+static void inc_group_count(struct list_head *list,
 		       struct parse_events_evlist *data)
 {
 	/* Count groups only have more than 1 members */
-- 
2.7.0

[toc] | [next] | [standalone]


#1349107 — Re: [PATCH] perf tools: explicitly declare inc_group_count as a void function

FromJiri Olsa <jolsa@redhat.com>
Date2016-03-03 13:40 +0100
SubjectRe: [PATCH] perf tools: explicitly declare inc_group_count as a void function
Message-ID<r8AHV-77v-29@gated-at.bofh.it>
In reply to#1349101
On Thu, Mar 03, 2016 at 12:30:14PM +0000, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> The return type is not defined, so it defaults to int, however,
> the function is not returning anything, so this is clearly not
> correct. Make it a void function.

Acked-by: Jiri Olsa <jolsa@kernel.org>

thanks,
jirka

> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  tools/perf/util/parse-events.y | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/perf/util/parse-events.y b/tools/perf/util/parse-events.y
> index 85c44ba..5be4a5f 100644
> --- a/tools/perf/util/parse-events.y
> +++ b/tools/perf/util/parse-events.y
> @@ -28,7 +28,7 @@ do { \
>  	INIT_LIST_HEAD(list);         \
>  } while (0)
>  
> -static inc_group_count(struct list_head *list,
> +static void inc_group_count(struct list_head *list,
>  		       struct parse_events_evlist *data)
>  {
>  	/* Count groups only have more than 1 members */
> -- 
> 2.7.0
> 

[toc] | [prev] | [next] | [standalone]


#1349538 — Re: [PATCH] perf tools: explicitly declare inc_group_count as a void function

FromArnaldo Carvalho de Melo <acme@kernel.org>
Date2016-03-03 21:00 +0100
SubjectRe: [PATCH] perf tools: explicitly declare inc_group_count as a void function
Message-ID<r8HzI-3qB-9@gated-at.bofh.it>
In reply to#1349107
Em Thu, Mar 03, 2016 at 01:39:39PM +0100, Jiri Olsa escreveu:
> On Thu, Mar 03, 2016 at 12:30:14PM +0000, Colin King wrote:
> > From: Colin Ian King <colin.king@canonical.com>
> > 
> > The return type is not defined, so it defaults to int, however,
> > the function is not returning anything, so this is clearly not
> > correct. Make it a void function.
> 
> Acked-by: Jiri Olsa <jolsa@kernel.org>

Thanks, applied.

[toc] | [prev] | [next] | [standalone]


#1352840 — [tip:perf/core] perf tools: Explicitly declare inc_group_count as a void function

Fromtip-bot for Colin Ian King <tipbot@zytor.com>
Date2016-03-08 11:40 +0100
Subject[tip:perf/core] perf tools: Explicitly declare inc_group_count as a void function
Message-ID<randw-84x-19@gated-at.bofh.it>
In reply to#1349101
Commit-ID:  07ef7574458369cb0345facc748e964af68a75f4
Gitweb:     http://git.kernel.org/tip/07ef7574458369cb0345facc748e964af68a75f4
Author:     Colin Ian King <colin.king@canonical.com>
AuthorDate: Mon, 7 Mar 2016 16:44:37 -0300
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Tue, 8 Mar 2016 10:11:16 +0100

perf tools: Explicitly declare inc_group_count as a void function

The return type is not defined, so it defaults to int, however, the
function is not returning anything, so this is clearly not correct. Make
it a void function.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: He Kuang <hekuang@huawei.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1457008214-14393-1-git-send-email-colin.king@canonical.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 tools/perf/util/parse-events.y | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/util/parse-events.y b/tools/perf/util/parse-events.y
index 85c44ba..5be4a5f 100644
--- a/tools/perf/util/parse-events.y
+++ b/tools/perf/util/parse-events.y
@@ -28,7 +28,7 @@ do { \
 	INIT_LIST_HEAD(list);         \
 } while (0)
 
-static inc_group_count(struct list_head *list,
+static void inc_group_count(struct list_head *list,
 		       struct parse_events_evlist *data)
 {
 	/* Count groups only have more than 1 members */

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web