mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-29 23:24:11 +08:00
bonding: make more functions static
More functions in bonding that can be declared static because they are only used in one file. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
3678a9d863
commit
6da67d2608
@ -2088,7 +2088,7 @@ do_failover:
|
|||||||
* an acquisition of appropriate locks followed by a commit phase to
|
* an acquisition of appropriate locks followed by a commit phase to
|
||||||
* implement whatever link state changes are indicated.
|
* implement whatever link state changes are indicated.
|
||||||
*/
|
*/
|
||||||
void bond_mii_monitor(struct work_struct *work)
|
static void bond_mii_monitor(struct work_struct *work)
|
||||||
{
|
{
|
||||||
struct bonding *bond = container_of(work, struct bonding,
|
struct bonding *bond = container_of(work, struct bonding,
|
||||||
mii_work.work);
|
mii_work.work);
|
||||||
@ -2377,7 +2377,7 @@ static bool bond_time_in_interval(struct bonding *bond, unsigned long last_act,
|
|||||||
* arp is transmitted to generate traffic. see activebackup_arp_monitor for
|
* arp is transmitted to generate traffic. see activebackup_arp_monitor for
|
||||||
* arp monitoring in active backup mode.
|
* arp monitoring in active backup mode.
|
||||||
*/
|
*/
|
||||||
void bond_loadbalance_arp_mon(struct work_struct *work)
|
static void bond_loadbalance_arp_mon(struct work_struct *work)
|
||||||
{
|
{
|
||||||
struct bonding *bond = container_of(work, struct bonding,
|
struct bonding *bond = container_of(work, struct bonding,
|
||||||
arp_work.work);
|
arp_work.work);
|
||||||
@ -2714,7 +2714,7 @@ static void bond_ab_arp_probe(struct bonding *bond)
|
|||||||
rcu_assign_pointer(bond->current_arp_slave, new_slave);
|
rcu_assign_pointer(bond->current_arp_slave, new_slave);
|
||||||
}
|
}
|
||||||
|
|
||||||
void bond_activebackup_arp_mon(struct work_struct *work)
|
static void bond_activebackup_arp_mon(struct work_struct *work)
|
||||||
{
|
{
|
||||||
struct bonding *bond = container_of(work, struct bonding,
|
struct bonding *bond = container_of(work, struct bonding,
|
||||||
arp_work.work);
|
arp_work.work);
|
||||||
|
@ -423,9 +423,6 @@ void bond_destroy_sysfs(struct bond_net *net);
|
|||||||
void bond_prepare_sysfs_group(struct bonding *bond);
|
void bond_prepare_sysfs_group(struct bonding *bond);
|
||||||
int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev);
|
int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev);
|
||||||
int bond_release(struct net_device *bond_dev, struct net_device *slave_dev);
|
int bond_release(struct net_device *bond_dev, struct net_device *slave_dev);
|
||||||
void bond_mii_monitor(struct work_struct *);
|
|
||||||
void bond_loadbalance_arp_mon(struct work_struct *);
|
|
||||||
void bond_activebackup_arp_mon(struct work_struct *);
|
|
||||||
int bond_xmit_hash(struct bonding *bond, struct sk_buff *skb, int count);
|
int bond_xmit_hash(struct bonding *bond, struct sk_buff *skb, int count);
|
||||||
int bond_parse_parm(const char *mode_arg, const struct bond_parm_tbl *tbl);
|
int bond_parse_parm(const char *mode_arg, const struct bond_parm_tbl *tbl);
|
||||||
void bond_select_active_slave(struct bonding *bond);
|
void bond_select_active_slave(struct bonding *bond);
|
||||||
|
Loading…
Reference in New Issue
Block a user