diff options
| -rw-r--r-- | drivers/net/bonding/bonding.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/bonding/bonding.h b/drivers/net/bonding/bonding.h index 015c7f1d1bc0..f20bb85c1ea5 100644 --- a/drivers/net/bonding/bonding.h +++ b/drivers/net/bonding/bonding.h | |||
| @@ -205,7 +205,7 @@ struct bonding { | |||
| 205 | * | 205 | * |
| 206 | * Caller must hold bond lock for read | 206 | * Caller must hold bond lock for read |
| 207 | */ | 207 | */ |
| 208 | extern inline struct slave *bond_get_slave_by_dev(struct bonding *bond, struct net_device *slave_dev) | 208 | static inline struct slave *bond_get_slave_by_dev(struct bonding *bond, struct net_device *slave_dev) |
| 209 | { | 209 | { |
| 210 | struct slave *slave = NULL; | 210 | struct slave *slave = NULL; |
| 211 | int i; | 211 | int i; |
| @@ -219,7 +219,7 @@ extern inline struct slave *bond_get_slave_by_dev(struct bonding *bond, struct n | |||
| 219 | return slave; | 219 | return slave; |
| 220 | } | 220 | } |
| 221 | 221 | ||
| 222 | extern inline struct bonding *bond_get_bond_by_slave(struct slave *slave) | 222 | static inline struct bonding *bond_get_bond_by_slave(struct slave *slave) |
| 223 | { | 223 | { |
| 224 | if (!slave || !slave->dev->master) { | 224 | if (!slave || !slave->dev->master) { |
| 225 | return NULL; | 225 | return NULL; |
| @@ -228,13 +228,13 @@ extern inline struct bonding *bond_get_bond_by_slave(struct slave *slave) | |||
| 228 | return (struct bonding *)slave->dev->master->priv; | 228 | return (struct bonding *)slave->dev->master->priv; |
| 229 | } | 229 | } |
| 230 | 230 | ||
| 231 | extern inline void bond_set_slave_inactive_flags(struct slave *slave) | 231 | static inline void bond_set_slave_inactive_flags(struct slave *slave) |
| 232 | { | 232 | { |
| 233 | slave->state = BOND_STATE_BACKUP; | 233 | slave->state = BOND_STATE_BACKUP; |
| 234 | slave->dev->flags |= IFF_NOARP; | 234 | slave->dev->flags |= IFF_NOARP; |
| 235 | } | 235 | } |
| 236 | 236 | ||
| 237 | extern inline void bond_set_slave_active_flags(struct slave *slave) | 237 | static inline void bond_set_slave_active_flags(struct slave *slave) |
| 238 | { | 238 | { |
| 239 | slave->state = BOND_STATE_ACTIVE; | 239 | slave->state = BOND_STATE_ACTIVE; |
| 240 | slave->dev->flags &= ~IFF_NOARP; | 240 | slave->dev->flags &= ~IFF_NOARP; |
