mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-06 22:42:10 +00:00
drivers/net/bonding: fix sparse warnings: move decls to header file
Fix this sparse warnings: drivers/net/bonding/bond_main.c:104:20: warning: symbol 'bonding_defaults' was not declared. Should it be static? drivers/net/bonding/bond_main.c:204:22: warning: symbol 'ad_select_tbl' was not declared. Should it be static? drivers/net/bonding/bond_sysfs.c:60:21: warning: symbol 'bonding_rwsem' was not declared. Should it be static? Signed-off-by: Hannes Eder <hannes@hanneseder.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9dc20f553f
commit
b06715b7a3
3 changed files with 5 additions and 4 deletions
|
@ -154,7 +154,6 @@ LIST_HEAD(bond_dev_list);
|
||||||
static struct proc_dir_entry *bond_proc_dir = NULL;
|
static struct proc_dir_entry *bond_proc_dir = NULL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern struct rw_semaphore bonding_rwsem;
|
|
||||||
static __be32 arp_target[BOND_MAX_ARP_TARGETS] = { 0, } ;
|
static __be32 arp_target[BOND_MAX_ARP_TARGETS] = { 0, } ;
|
||||||
static int arp_ip_count = 0;
|
static int arp_ip_count = 0;
|
||||||
static int bond_mode = BOND_MODE_ROUNDROBIN;
|
static int bond_mode = BOND_MODE_ROUNDROBIN;
|
||||||
|
|
|
@ -43,9 +43,6 @@
|
||||||
|
|
||||||
/*---------------------------- Declarations -------------------------------*/
|
/*---------------------------- Declarations -------------------------------*/
|
||||||
|
|
||||||
extern struct bond_params bonding_defaults;
|
|
||||||
extern struct bond_parm_tbl ad_select_tbl[];
|
|
||||||
|
|
||||||
static int expected_refcount = -1;
|
static int expected_refcount = -1;
|
||||||
/*--------------------------- Data Structures -----------------------------*/
|
/*--------------------------- Data Structures -----------------------------*/
|
||||||
|
|
||||||
|
|
|
@ -350,6 +350,11 @@ extern const struct bond_parm_tbl bond_mode_tbl[];
|
||||||
extern const struct bond_parm_tbl xmit_hashtype_tbl[];
|
extern const struct bond_parm_tbl xmit_hashtype_tbl[];
|
||||||
extern const struct bond_parm_tbl arp_validate_tbl[];
|
extern const struct bond_parm_tbl arp_validate_tbl[];
|
||||||
extern const struct bond_parm_tbl fail_over_mac_tbl[];
|
extern const struct bond_parm_tbl fail_over_mac_tbl[];
|
||||||
|
extern struct bond_params bonding_defaults;
|
||||||
|
extern struct bond_parm_tbl ad_select_tbl[];
|
||||||
|
|
||||||
|
/* exported from bond_sysfs.c */
|
||||||
|
extern struct rw_semaphore bonding_rwsem;
|
||||||
|
|
||||||
#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
|
#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
|
||||||
void bond_send_unsolicited_na(struct bonding *bond);
|
void bond_send_unsolicited_na(struct bonding *bond);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue