diff mbox

[net-next] macvlan: make start_xmit local

Message ID 20131227120646.52138f4b@nehalam.linuxnetplumber.net
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Stephen Hemminger Dec. 27, 2013, 8:06 p.m. UTC
Only used in one file, no need to expose

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>

---
 drivers/net/macvlan.c      |    5 ++---
 include/linux/if_macvlan.h |    3 ---
 2 files changed, 2 insertions(+), 6 deletions(-)

--
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

Comments

David Miller Dec. 28, 2013, 6:21 a.m. UTC | #1
From: Stephen Hemminger <stephen@networkplumber.org>
Date: Fri, 27 Dec 2013 12:06:46 -0800

> Only used in one file, no need to expose
> 
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>

Applied.
--
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

--- a/drivers/net/macvlan.c	2013-12-24 15:15:26.885739628 -0800
+++ b/drivers/net/macvlan.c	2013-12-24 15:15:59.221305048 -0800
@@ -290,8 +290,8 @@  xmit_world:
 	return dev_queue_xmit(skb);
 }
 
-netdev_tx_t macvlan_start_xmit(struct sk_buff *skb,
-			       struct net_device *dev)
+static netdev_tx_t macvlan_start_xmit(struct sk_buff *skb,
+				      struct net_device *dev)
 {
 	unsigned int len = skb->len;
 	int ret;
@@ -317,7 +317,6 @@  netdev_tx_t macvlan_start_xmit(struct sk
 	}
 	return ret;
 }
-EXPORT_SYMBOL_GPL(macvlan_start_xmit);
 
 static int macvlan_hard_header(struct sk_buff *skb, struct net_device *dev,
 			       unsigned short type, const void *daddr,
--- a/include/linux/if_macvlan.h	2013-12-24 15:15:26.885739628 -0800
+++ b/include/linux/if_macvlan.h	2013-12-24 15:15:59.221305048 -0800
@@ -111,9 +111,6 @@  extern void macvlan_dellink(struct net_d
 
 extern int macvlan_link_register(struct rtnl_link_ops *ops);
 
-extern netdev_tx_t macvlan_start_xmit(struct sk_buff *skb,
-				      struct net_device *dev);
-
 #if IS_ENABLED(CONFIG_MACVLAN)
 static inline struct net_device *
 macvlan_dev_real_dev(const struct net_device *dev)