Skip to content

Commit

Permalink
team: make team_mode struct const
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 Jun 19, 2012
1 parent 3879d4e commit 0402788
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 23 deletions.
55 changes: 38 additions & 17 deletions drivers/net/team/team.c
Original file line number Diff line number Diff line change
Expand Up @@ -371,13 +371,18 @@ static int team_option_set(struct team *team,
static LIST_HEAD(mode_list);
static DEFINE_SPINLOCK(mode_list_lock);

static struct team_mode *__find_mode(const char *kind)
struct team_mode_item {
struct list_head list;
const struct team_mode *mode;
};

static struct team_mode_item *__find_mode(const char *kind)
{
struct team_mode *mode;
struct team_mode_item *mitem;

list_for_each_entry(mode, &mode_list, list) {
if (strcmp(mode->kind, kind) == 0)
return mode;
list_for_each_entry(mitem, &mode_list, list) {
if (strcmp(mitem->mode->kind, kind) == 0)
return mitem;
}
return NULL;
}
Expand All @@ -392,49 +397,65 @@ static bool is_good_mode_name(const char *name)
return true;
}

int team_mode_register(struct team_mode *mode)
int team_mode_register(const struct team_mode *mode)
{
int err = 0;
struct team_mode_item *mitem;

if (!is_good_mode_name(mode->kind) ||
mode->priv_size > TEAM_MODE_PRIV_SIZE)
return -EINVAL;

mitem = kmalloc(sizeof(*mitem), GFP_KERNEL);
if (!mitem)
return -ENOMEM;

spin_lock(&mode_list_lock);
if (__find_mode(mode->kind)) {
err = -EEXIST;
kfree(mitem);
goto unlock;
}
list_add_tail(&mode->list, &mode_list);
mitem->mode = mode;
list_add_tail(&mitem->list, &mode_list);
unlock:
spin_unlock(&mode_list_lock);
return err;
}
EXPORT_SYMBOL(team_mode_register);

int team_mode_unregister(struct team_mode *mode)
void team_mode_unregister(const struct team_mode *mode)
{
struct team_mode_item *mitem;

spin_lock(&mode_list_lock);
list_del_init(&mode->list);
mitem = __find_mode(mode->kind);
if (mitem) {
list_del_init(&mitem->list);
kfree(mitem);
}
spin_unlock(&mode_list_lock);
return 0;
}
EXPORT_SYMBOL(team_mode_unregister);

static struct team_mode *team_mode_get(const char *kind)
static const struct team_mode *team_mode_get(const char *kind)
{
struct team_mode *mode;
struct team_mode_item *mitem;
const struct team_mode *mode = NULL;

spin_lock(&mode_list_lock);
mode = __find_mode(kind);
if (!mode) {
mitem = __find_mode(kind);
if (!mitem) {
spin_unlock(&mode_list_lock);
request_module("team-mode-%s", kind);
spin_lock(&mode_list_lock);
mode = __find_mode(kind);
mitem = __find_mode(kind);
}
if (mode)
if (mitem) {
mode = mitem->mode;
if (!try_module_get(mode->owner))
mode = NULL;
}

spin_unlock(&mode_list_lock);
return mode;
Expand Down Expand Up @@ -523,7 +544,7 @@ static int __team_change_mode(struct team *team,

static int team_change_mode(struct team *team, const char *kind)
{
struct team_mode *new_mode;
const struct team_mode *new_mode;
struct net_device *dev = team->dev;
int err;

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/team/team_mode_activebackup.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ static const struct team_mode_ops ab_mode_ops = {
.port_leave = ab_port_leave,
};

static struct team_mode ab_mode = {
static const struct team_mode ab_mode = {
.kind = "activebackup",
.owner = THIS_MODULE,
.priv_size = sizeof(struct ab_priv),
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/team/team_mode_loadbalance.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ static const struct team_mode_ops lb_mode_ops = {
.transmit = lb_transmit,
};

static struct team_mode lb_mode = {
static const struct team_mode lb_mode = {
.kind = "loadbalance",
.owner = THIS_MODULE,
.priv_size = sizeof(struct lb_priv),
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/team/team_mode_roundrobin.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ static const struct team_mode_ops rr_mode_ops = {
.port_change_mac = rr_port_change_mac,
};

static struct team_mode rr_mode = {
static const struct team_mode rr_mode = {
.kind = "roundrobin",
.owner = THIS_MODULE,
.priv_size = sizeof(struct rr_priv),
Expand Down
5 changes: 2 additions & 3 deletions include/linux/if_team.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ struct team_option {
};

struct team_mode {
struct list_head list;
const char *kind;
struct module *owner;
size_t priv_size;
Expand Down Expand Up @@ -178,8 +177,8 @@ extern int team_options_register(struct team *team,
extern void team_options_unregister(struct team *team,
const struct team_option *option,
size_t option_count);
extern int team_mode_register(struct team_mode *mode);
extern int team_mode_unregister(struct team_mode *mode);
extern int team_mode_register(const struct team_mode *mode);
extern void team_mode_unregister(const struct team_mode *mode);

#endif /* __KERNEL__ */

Expand Down

0 comments on commit 0402788

Please sign in to comment.