Skip to content

Commit

Permalink
devlink: remove "gen" from struct devlink_gen_cmd name
Browse files Browse the repository at this point in the history
No need to have "gen" inside name of the structure for devlink commands.
Remove it.

Signed-off-by: Jiri Pirko <jiri@nvidia.com>
Reviewed-by: Leon Romanovsky <leonro@nvidia.com>
Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
  • Loading branch information
Jiri Pirko authored and Jakub Kicinski committed Feb 1, 2023
1 parent c3a4fd5 commit f874459
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 36 deletions.
36 changes: 18 additions & 18 deletions net/devlink/devl_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ struct devlink_nl_dump_state {
};
};

struct devlink_gen_cmd {
struct devlink_cmd {
int (*dump_one)(struct sk_buff *msg, struct devlink *devlink,
struct netlink_callback *cb);
};
Expand All @@ -139,22 +139,22 @@ devlink_dump_state(struct netlink_callback *cb)
return (struct devlink_nl_dump_state *)cb->ctx;
}

/* gen cmds */
extern const struct devlink_gen_cmd devl_gen_inst;
extern const struct devlink_gen_cmd devl_gen_port;
extern const struct devlink_gen_cmd devl_gen_sb;
extern const struct devlink_gen_cmd devl_gen_sb_pool;
extern const struct devlink_gen_cmd devl_gen_sb_port_pool;
extern const struct devlink_gen_cmd devl_gen_sb_tc_pool_bind;
extern const struct devlink_gen_cmd devl_gen_selftests;
extern const struct devlink_gen_cmd devl_gen_param;
extern const struct devlink_gen_cmd devl_gen_region;
extern const struct devlink_gen_cmd devl_gen_info;
extern const struct devlink_gen_cmd devl_gen_health_reporter;
extern const struct devlink_gen_cmd devl_gen_trap;
extern const struct devlink_gen_cmd devl_gen_trap_group;
extern const struct devlink_gen_cmd devl_gen_trap_policer;
extern const struct devlink_gen_cmd devl_gen_linecard;
/* Commands */
extern const struct devlink_cmd devl_gen_inst;
extern const struct devlink_cmd devl_gen_port;
extern const struct devlink_cmd devl_gen_sb;
extern const struct devlink_cmd devl_gen_sb_pool;
extern const struct devlink_cmd devl_gen_sb_port_pool;
extern const struct devlink_cmd devl_gen_sb_tc_pool_bind;
extern const struct devlink_cmd devl_gen_selftests;
extern const struct devlink_cmd devl_gen_param;
extern const struct devlink_cmd devl_gen_region;
extern const struct devlink_cmd devl_gen_info;
extern const struct devlink_cmd devl_gen_health_reporter;
extern const struct devlink_cmd devl_gen_trap;
extern const struct devlink_cmd devl_gen_trap_group;
extern const struct devlink_cmd devl_gen_trap_policer;
extern const struct devlink_cmd devl_gen_linecard;

/* Ports */
int devlink_port_netdevice_event(struct notifier_block *nb,
Expand Down Expand Up @@ -182,7 +182,7 @@ struct devlink_linecard *
devlink_linecard_get_from_info(struct devlink *devlink, struct genl_info *info);

/* Rates */
extern const struct devlink_gen_cmd devl_gen_rate_get;
extern const struct devlink_cmd devl_gen_rate_get;

struct devlink_rate *
devlink_rate_get_from_info(struct devlink *devlink, struct genl_info *info);
Expand Down
32 changes: 16 additions & 16 deletions net/devlink/leftover.c
Original file line number Diff line number Diff line change
Expand Up @@ -1236,7 +1236,7 @@ devlink_nl_cmd_rate_get_dump_one(struct sk_buff *msg, struct devlink *devlink,
return err;
}

const struct devlink_gen_cmd devl_gen_rate_get = {
const struct devlink_cmd devl_gen_rate_get = {
.dump_one = devlink_nl_cmd_rate_get_dump_one,
};

Expand Down Expand Up @@ -1303,7 +1303,7 @@ devlink_nl_cmd_get_dump_one(struct sk_buff *msg, struct devlink *devlink,
cb->nlh->nlmsg_seq, NLM_F_MULTI);
}

const struct devlink_gen_cmd devl_gen_inst = {
const struct devlink_cmd devl_gen_inst = {
.dump_one = devlink_nl_cmd_get_dump_one,
};

Expand Down Expand Up @@ -1359,7 +1359,7 @@ devlink_nl_cmd_port_get_dump_one(struct sk_buff *msg, struct devlink *devlink,
return err;
}

const struct devlink_gen_cmd devl_gen_port = {
const struct devlink_cmd devl_gen_port = {
.dump_one = devlink_nl_cmd_port_get_dump_one,
};

Expand Down Expand Up @@ -2137,7 +2137,7 @@ static int devlink_nl_cmd_linecard_get_dump_one(struct sk_buff *msg,
return err;
}

const struct devlink_gen_cmd devl_gen_linecard = {
const struct devlink_cmd devl_gen_linecard = {
.dump_one = devlink_nl_cmd_linecard_get_dump_one,
};

Expand Down Expand Up @@ -2392,7 +2392,7 @@ devlink_nl_cmd_sb_get_dump_one(struct sk_buff *msg, struct devlink *devlink,
return err;
}

const struct devlink_gen_cmd devl_gen_sb = {
const struct devlink_cmd devl_gen_sb = {
.dump_one = devlink_nl_cmd_sb_get_dump_one,
};

Expand Down Expand Up @@ -2530,7 +2530,7 @@ devlink_nl_cmd_sb_pool_get_dump_one(struct sk_buff *msg,
return err;
}

const struct devlink_gen_cmd devl_gen_sb_pool = {
const struct devlink_cmd devl_gen_sb_pool = {
.dump_one = devlink_nl_cmd_sb_pool_get_dump_one,
};

Expand Down Expand Up @@ -2738,7 +2738,7 @@ devlink_nl_cmd_sb_port_pool_get_dump_one(struct sk_buff *msg,
return err;
}

const struct devlink_gen_cmd devl_gen_sb_port_pool = {
const struct devlink_cmd devl_gen_sb_port_pool = {
.dump_one = devlink_nl_cmd_sb_port_pool_get_dump_one,
};

Expand Down Expand Up @@ -2973,7 +2973,7 @@ devlink_nl_cmd_sb_tc_pool_bind_get_dump_one(struct sk_buff *msg,
return err;
}

const struct devlink_gen_cmd devl_gen_sb_tc_pool_bind = {
const struct devlink_cmd devl_gen_sb_tc_pool_bind = {
.dump_one = devlink_nl_cmd_sb_tc_pool_bind_get_dump_one,
};

Expand Down Expand Up @@ -4785,7 +4785,7 @@ devlink_nl_cmd_selftests_get_dump_one(struct sk_buff *msg,
cb->extack);
}

const struct devlink_gen_cmd devl_gen_selftests = {
const struct devlink_cmd devl_gen_selftests = {
.dump_one = devlink_nl_cmd_selftests_get_dump_one,
};

Expand Down Expand Up @@ -5271,7 +5271,7 @@ devlink_nl_cmd_param_get_dump_one(struct sk_buff *msg, struct devlink *devlink,
return err;
}

const struct devlink_gen_cmd devl_gen_param = {
const struct devlink_cmd devl_gen_param = {
.dump_one = devlink_nl_cmd_param_get_dump_one,
};

Expand Down Expand Up @@ -5978,7 +5978,7 @@ devlink_nl_cmd_region_get_dump_one(struct sk_buff *msg, struct devlink *devlink,
return 0;
}

const struct devlink_gen_cmd devl_gen_region = {
const struct devlink_cmd devl_gen_region = {
.dump_one = devlink_nl_cmd_region_get_dump_one,
};

Expand Down Expand Up @@ -6625,7 +6625,7 @@ devlink_nl_cmd_info_get_dump_one(struct sk_buff *msg, struct devlink *devlink,
return err;
}

const struct devlink_gen_cmd devl_gen_info = {
const struct devlink_cmd devl_gen_info = {
.dump_one = devlink_nl_cmd_info_get_dump_one,
};

Expand Down Expand Up @@ -7793,7 +7793,7 @@ devlink_nl_cmd_health_reporter_get_dump_one(struct sk_buff *msg,
return 0;
}

const struct devlink_gen_cmd devl_gen_health_reporter = {
const struct devlink_cmd devl_gen_health_reporter = {
.dump_one = devlink_nl_cmd_health_reporter_get_dump_one,
};

Expand Down Expand Up @@ -8311,7 +8311,7 @@ devlink_nl_cmd_trap_get_dump_one(struct sk_buff *msg, struct devlink *devlink,
return err;
}

const struct devlink_gen_cmd devl_gen_trap = {
const struct devlink_cmd devl_gen_trap = {
.dump_one = devlink_nl_cmd_trap_get_dump_one,
};

Expand Down Expand Up @@ -8524,7 +8524,7 @@ devlink_nl_cmd_trap_group_get_dump_one(struct sk_buff *msg,
return err;
}

const struct devlink_gen_cmd devl_gen_trap_group = {
const struct devlink_cmd devl_gen_trap_group = {
.dump_one = devlink_nl_cmd_trap_group_get_dump_one,
};

Expand Down Expand Up @@ -8817,7 +8817,7 @@ devlink_nl_cmd_trap_policer_get_dump_one(struct sk_buff *msg,
return err;
}

const struct devlink_gen_cmd devl_gen_trap_policer = {
const struct devlink_cmd devl_gen_trap_policer = {
.dump_one = devlink_nl_cmd_trap_policer_get_dump_one,
};

Expand Down
4 changes: 2 additions & 2 deletions net/devlink/netlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ static void devlink_nl_post_doit(const struct genl_split_ops *ops,
devlink_put(devlink);
}

static const struct devlink_gen_cmd *devl_gen_cmds[] = {
static const struct devlink_cmd *devl_gen_cmds[] = {
[DEVLINK_CMD_GET] = &devl_gen_inst,
[DEVLINK_CMD_PORT_GET] = &devl_gen_port,
[DEVLINK_CMD_SB_GET] = &devl_gen_sb,
Expand All @@ -201,7 +201,7 @@ int devlink_nl_instance_iter_dumpit(struct sk_buff *msg,
{
const struct genl_dumpit_info *info = genl_dumpit_info(cb);
struct devlink_nl_dump_state *state = devlink_dump_state(cb);
const struct devlink_gen_cmd *cmd;
const struct devlink_cmd *cmd;
struct devlink *devlink;
int err = 0;

Expand Down

0 comments on commit f874459

Please sign in to comment.