[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAK7LNATFxF4=nWzO69aNqUkRdeGAyom0Q6k0S+OeKFA2v+fkew@mail.gmail.com>
Date: Sun, 6 Nov 2016 12:00:22 +0900
From: Masahiro Yamada <yamada.masahiro@...ionext.com>
To: Peter Zijlstra <peterz@...radead.org>,
Ingo Molnar <mingo@...hat.com>,
Arnaldo Carvalho de Melo <acme@...nel.org>,
Alexander Shishkin <alexander.shishkin@...ux.intel.com>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Cc: Masahiro Yamada <yamada.masahiro@...ionext.com>,
Andi Kleen <ak@...ux.intel.com>,
Eric Engestrom <eric.engestrom@...tec.com>,
He Kuang <hekuang@...wei.com>, Jiri Olsa <jolsa@...nel.org>
Subject: Re: [PATCH] perf thread: cleanup with list_first_entry_or_null()
Hi maintainers,
Does this patch look good?
2016-09-13 3:29 GMT+09:00 Masahiro Yamada <yamada.masahiro@...ionext.com>:
> The combo of list_empty() check and return list_first_entry()
> can be replaced with list_first_entry_or_null().
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@...ionext.com>
> ---
>
> tools/perf/util/thread.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/tools/perf/util/thread.c b/tools/perf/util/thread.c
> index 8b10a55..ea951df 100644
> --- a/tools/perf/util/thread.c
> +++ b/tools/perf/util/thread.c
> @@ -107,10 +107,7 @@ void thread__put(struct thread *thread)
>
> struct comm *thread__comm(const struct thread *thread)
> {
> - if (list_empty(&thread->comm_list))
> - return NULL;
> -
> - return list_first_entry(&thread->comm_list, struct comm, list);
> + return list_first_entry_or_null(&thread->comm_list, struct comm, list);
> }
>
> struct comm *thread__exec_comm(const struct thread *thread)
> --
> 1.9.1
>
--
Best Regards
Masahiro Yamada
Powered by blists - more mailing lists