genetlink: move to smaller ops wherever possible

Bulk of the genetlink users can use smaller ops, move them.

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Reviewed-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jakub Kicinski 2020-10-02 14:49:54 -07:00 committed by David S. Miller
parent 0b588afdd1
commit 66a9b9287d
32 changed files with 107 additions and 102 deletions

View file

@ -644,7 +644,7 @@ err:
nlmsg_free(rep_skb);
}
static const struct genl_ops taskstats_ops[] = {
static const struct genl_small_ops taskstats_ops[] = {
{
.cmd = TASKSTATS_CMD_GET,
.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
@ -687,8 +687,8 @@ static struct genl_family family __ro_after_init = {
.version = TASKSTATS_GENL_VERSION,
.maxattr = TASKSTATS_CMD_ATTR_MAX,
.module = THIS_MODULE,
.ops = taskstats_ops,
.n_ops = ARRAY_SIZE(taskstats_ops),
.small_ops = taskstats_ops,
.n_small_ops = ARRAY_SIZE(taskstats_ops),
.pre_doit = taskstats_pre_doit,
};