[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20190330194721.5v3r6txftc2zbla5@ltop.local>
Date: Sat, 30 Mar 2019 20:47:22 +0100
From: Luc Van Oostenryck <luc.vanoostenryck@...il.com>
To: Hariprasad Kelam <hariprasad.kelam@...il.com>
Cc: rostedt@...dmis.org, mingo@...hat.com, roopa@...ulusnetworks.com,
davem@...emloft.net, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2] trace: events: fix error directive in argument list
On Sat, Mar 30, 2019 at 11:48:23PM +0530, Hariprasad Kelam wrote:
> This patch fixes below spare errors.
>
> Sparse error:
> make C=2 CF=-D__CHECK_ENDIAN__ M=net/core
> ./include/trace/events/neigh.h:73:1: error: directive in argument list
> ./include/trace/events/neigh.h:78:1: error: directive in argument list
> ./include/trace/events/neigh.h:150:1: error: directive in argument list
> ./include/trace/events/neigh.h:155:1: error: directive in argument list
>
> Changes below two lines to signle line to avoid sparse error
> if (n->tbl->family == AF_INET6) {
> to if (IS_ENABLED(CONFIG_IPV6) && n->tbl->family == AF_INET6)
>
> Signed-off-by: Hariprasad Kelam <hariprasad.kelam@...il.com>
Thanks,
Reviewed-by: Luc Van Oostenryck <luc.vanoostenryck@...il.com>
-- Luc
Powered by blists - more mailing lists