bonding: make local function static
authorstephen hemminger <stephen@networkplumber.org>
Sun, 29 Dec 2013 19:41:25 +0000 (11:41 -0800)
committerDavid S. Miller <davem@davemloft.net>
Sun, 29 Dec 2013 21:34:25 +0000 (16:34 -0500)
bond_xmit_slave_id is only used in main.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bonding/bond_main.c
drivers/net/bonding/bonding.h

index c0456cc8661047045b2ab5cb0df47377388d4e5a..881fade9891983626ecf63fff5aab936445369dd 100644 (file)
@@ -3511,7 +3511,7 @@ unwind:
  * it fails, it tries to find the first available slave for transmission.
  * The skb is consumed in all cases, thus the function is void.
  */
-void bond_xmit_slave_id(struct bonding *bond, struct sk_buff *skb, int slave_id)
+static void bond_xmit_slave_id(struct bonding *bond, struct sk_buff *skb, int slave_id)
 {
        struct list_head *iter;
        struct slave *slave;
index 5886f07dc1f316425d6b2ee10148dabdea923662..2897137e892f0c2d8d00baba9504a0b1493bb4d9 100644 (file)
@@ -417,7 +417,6 @@ struct bond_net;
 
 int bond_arp_rcv(const struct sk_buff *skb, struct bonding *bond, struct slave *slave);
 int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb, struct net_device *slave_dev);
-void bond_xmit_slave_id(struct bonding *bond, struct sk_buff *skb, int slave_id);
 int bond_create(struct net *net, const char *name);
 int bond_create_sysfs(struct bond_net *net);
 void bond_destroy_sysfs(struct bond_net *net);