[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20190326193834.GA13540@hari-Inspiron-1545>
Date: Wed, 27 Mar 2019 01:08:34 +0530
From: Hariprasad Kelam <hariprasad.kelam@...il.com>
To: Steven Rostedt <rostedt@...dmis.org>,
Ingo Molnar <mingo@...hat.com>,
"David S. Miller" <davem@...emloft.net>,
Edward Cree <ecree@...arflare.com>, gbastien@...satic.net,
linux-kernel@...r.kernel.org
Subject: [PATCH] net: trace : fix error directive in argument list
This patch fixes below spare errors.
Sparse error:
make C=2 CF=-D__CHECK_ENDIAN__ M=net/core
./include/trace/events/net.h:171:1: error: directive in argument list
./include/trace/events/net.h:173:1: error: directive in argument list
./include/trace/events/net.h:175:1: error: directive in argument list
./include/trace/events/net.h:171:1: error: directive in argument list
./include/trace/events/net.h:173:1: error: directive in argument list
./include/trace/events/net.h:175:1: error: directive in argument list
To avoid sparse error changed
to
if (IS_ENABLED(CONFIG_NET_RX_BUSY_POLL))
Signed-off-by: Hariprasad Kelam <hariprasad.kelam@...il.com>
---
include/trace/events/net.h | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/include/trace/events/net.h b/include/trace/events/net.h
index 1efd7d9..49e6003 100644
--- a/include/trace/events/net.h
+++ b/include/trace/events/net.h
@@ -168,11 +168,12 @@ DECLARE_EVENT_CLASS(net_dev_rx_verbose_template,
TP_fast_assign(
__assign_str(name, skb->dev->name);
-#ifdef CONFIG_NET_RX_BUSY_POLL
- __entry->napi_id = skb->napi_id;
-#else
- __entry->napi_id = 0;
-#endif
+
+ if (IS_ENABLED(CONFIG_NET_RX_BUSY_POLL))
+ __entry->napi_id = skb->napi_id;
+ else
+ __entry->napi_id = 0;
+
__entry->queue_mapping = skb->queue_mapping;
__entry->skbaddr = skb;
__entry->vlan_tagged = skb_vlan_tag_present(skb);
--
2.7.4
Powered by blists - more mailing lists