team: make team_port_enabled() and team_port_txable() static inline
authorJiri Pirko <jpirko@redhat.com>
Wed, 11 Jul 2012 05:34:04 +0000 (05:34 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 12 Jul 2012 15:08:20 +0000 (08:08 -0700)
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/team/team.c
include/linux/if_team.h

index bc7afa5..3620c63 100644 (file)
@@ -671,18 +671,6 @@ static bool team_port_find(const struct team *team,
        return false;
 }
 
-bool team_port_enabled(struct team_port *port)
-{
-       return port->index != -1;
-}
-EXPORT_SYMBOL(team_port_enabled);
-
-bool team_port_txable(struct team_port *port)
-{
-       return port->linkup && team_port_enabled(port);
-}
-EXPORT_SYMBOL(team_port_txable);
-
 /*
  * Enable/disable port by adding to enabled port hashlist and setting
  * port->index (Might be racy so reader could see incorrect ifindex when
index dca426c..dfa0c8e 100644 (file)
@@ -63,8 +63,15 @@ struct team_port {
        long mode_priv[0];
 };
 
-extern bool team_port_enabled(struct team_port *port);
-extern bool team_port_txable(struct team_port *port);
+static inline bool team_port_enabled(struct team_port *port)
+{
+       return port->index != -1;
+}
+
+static inline bool team_port_txable(struct team_port *port)
+{
+       return port->linkup && team_port_enabled(port);
+}
 
 struct team_mode_ops {
        int (*init)(struct team *team);