Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 68c45042 authored by Jiri Pirko's avatar Jiri Pirko Committed by David S. Miller
Browse files

team: make team_port_enabled() and team_port_txable() static inline

parent 5fc88991
Loading
Loading
Loading
Loading
+0 −12
Original line number Diff line number Diff line
@@ -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
+9 −2
Original line number Diff line number Diff line
@@ -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);