diff mbox

[net-next] ipv4: remove unused macro.

Message ID 1367069950-17137-1-git-send-email-ramirose@gmail.com
State Rejected, archived
Delegated to: David Miller
Headers show

Commit Message

Rami Rosen April 27, 2013, 1:39 p.m. UTC
This patch removes the IP_ADD_STATS macro from include/net/ip.h as
it is unused.

Signed-off-by: Rami Rosen <ramirose@gmail.com>
---
 include/net/ip.h | 1 -
 1 file changed, 1 deletion(-)

Comments

David Miller April 29, 2013, 6:23 p.m. UTC | #1
From: Rami Rosen <ramirose@gmail.com>
Date: Sat, 27 Apr 2013 16:39:10 +0300

> This patch removes the IP_ADD_STATS macro from include/net/ip.h as
> it is unused.
> 
> Signed-off-by: Rami Rosen <ramirose@gmail.com>

I think this interface does no harm sitting in this header file,
so let's leave it there for now.

Thank you.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/include/net/ip.h b/include/net/ip.h
index a68f838..a17ca36 100644
--- a/include/net/ip.h
+++ b/include/net/ip.h
@@ -174,7 +174,6 @@  struct ipv4_config {
 extern struct ipv4_config ipv4_config;
 #define IP_INC_STATS(net, field)	SNMP_INC_STATS64((net)->mib.ip_statistics, field)
 #define IP_INC_STATS_BH(net, field)	SNMP_INC_STATS64_BH((net)->mib.ip_statistics, field)
-#define IP_ADD_STATS(net, field, val)	SNMP_ADD_STATS64((net)->mib.ip_statistics, field, val)
 #define IP_ADD_STATS_BH(net, field, val) SNMP_ADD_STATS64_BH((net)->mib.ip_statistics, field, val)
 #define IP_UPD_PO_STATS(net, field, val) SNMP_UPD_PO_STATS64((net)->mib.ip_statistics, field, val)
 #define IP_UPD_PO_STATS_BH(net, field, val) SNMP_UPD_PO_STATS64_BH((net)->mib.ip_statistics, field, val)