Skip to content

Commit

Permalink
team: make team_port_enabled() and team_port_txable() static inline
Browse files Browse the repository at this point in the history
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Jiri Pirko authored and David S. Miller committed Jul 12, 2012
1 parent 5fc8899 commit 68c4504
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 14 deletions.
12 changes: 0 additions & 12 deletions drivers/net/team/team.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 9 additions & 2 deletions include/linux/if_team.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 68c4504

Please sign in to comment.