Commit fca28094 authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller

bonding: remove dead code

These functions are defined but no longer used.
Compile tested only.
Signed-off-by: default avatarStephen Hemminger <stephen@networkplumber.org>
Reviewed-by: default avatarDing Tianhong <dingtianhong@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f7324acd
......@@ -3947,52 +3947,6 @@ static void bond_uninit(struct net_device *bond_dev)
/*------------------------- Module initialization ---------------------------*/
int bond_parm_tbl_lookup(int mode, const struct bond_parm_tbl *tbl)
{
int i;
for (i = 0; tbl[i].modename; i++)
if (mode == tbl[i].mode)
return tbl[i].mode;
return -1;
}
static int bond_parm_tbl_lookup_name(const char *modename,
const struct bond_parm_tbl *tbl)
{
int i;
for (i = 0; tbl[i].modename; i++)
if (strcmp(modename, tbl[i].modename) == 0)
return tbl[i].mode;
return -1;
}
/*
* Convert string input module parms. Accept either the
* number of the mode or its string name. A bit complicated because
* some mode names are substrings of other names, and calls from sysfs
* may have whitespace in the name (trailing newlines, for example).
*/
int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
{
int modeint;
char *p, modestr[BOND_MAX_MODENAME_LEN + 1];
for (p = (char *)buf; *p; p++)
if (!(isdigit(*p) || isspace(*p)))
break;
if (*p && sscanf(buf, "%20s", modestr) != 0)
return bond_parm_tbl_lookup_name(modestr, tbl);
else if (sscanf(buf, "%d", &modeint) != 0)
return bond_parm_tbl_lookup(modeint, tbl);
return -1;
}
static int bond_check_params(struct bond_params *params)
{
int arp_validate_value, fail_over_mac_value, primary_reselect_value, i;
......
......@@ -495,8 +495,6 @@ void bond_sysfs_slave_del(struct slave *slave);
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_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_parm_tbl_lookup(int mode, const struct bond_parm_tbl *tbl);
void bond_select_active_slave(struct bonding *bond);
void bond_change_active_slave(struct bonding *bond, struct slave *new_active);
void bond_create_debugfs(void);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment