diff options
author | Jiri Pirko <jpirko@redhat.com> | 2012-07-11 01:34:04 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-07-12 11:08:20 -0400 |
commit | 68c450426ae665653b06f62539e48727b696496f (patch) | |
tree | 6e8d12827a773c3e93973c2e6529bdd608e38a6a /include/linux/if_team.h | |
parent | 5fc889911a99043a97da1daa0d010ad72cbc3042 (diff) |
team: make team_port_enabled() and team_port_txable() static inline
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/if_team.h')
-rw-r--r-- | include/linux/if_team.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/linux/if_team.h b/include/linux/if_team.h index dca426cb1e12..dfa0c8e0ab84 100644 --- a/include/linux/if_team.h +++ b/include/linux/if_team.h | |||
@@ -63,8 +63,15 @@ struct team_port { | |||
63 | long mode_priv[0]; | 63 | long mode_priv[0]; |
64 | }; | 64 | }; |
65 | 65 | ||
66 | extern bool team_port_enabled(struct team_port *port); | 66 | static inline bool team_port_enabled(struct team_port *port) |
67 | extern bool team_port_txable(struct team_port *port); | 67 | { |
68 | return port->index != -1; | ||
69 | } | ||
70 | |||
71 | static inline bool team_port_txable(struct team_port *port) | ||
72 | { | ||
73 | return port->linkup && team_port_enabled(port); | ||
74 | } | ||
68 | 75 | ||
69 | struct team_mode_ops { | 76 | struct team_mode_ops { |
70 | int (*init)(struct team *team); | 77 | int (*init)(struct team *team); |