mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:38:03 +00:00
948dbafc15
generated with: $ ./tools/net/ynl/ynl-gen-c.py --mode kernel \ > --spec Documentation/netlink/specs/team.yaml --source \ > -o drivers/net/team/team_nl.c $ ./tools/net/ynl/ynl-gen-c.py --mode kernel \ > --spec Documentation/netlink/specs/team.yaml --header \ > -o drivers/net/team/team_nl.h The TEAM_ATTR_LIST_PORT in team_nl_policy is removed as it is only in the port list reply attributes. Signed-off-by: Hangbin Liu <liuhangbin@gmail.com> Reviewed-by: Jiri Pirko <jiri@nvidia.com> Link: https://lore.kernel.org/r/20240401031004.1159713-4-liuhangbin@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
30 lines
1.0 KiB
C
30 lines
1.0 KiB
C
/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */
|
|
/* Do not edit directly, auto-generated from: */
|
|
/* Documentation/netlink/specs/team.yaml */
|
|
/* YNL-GEN kernel header */
|
|
|
|
#ifndef _LINUX_TEAM_GEN_H
|
|
#define _LINUX_TEAM_GEN_H
|
|
|
|
#include <net/netlink.h>
|
|
#include <net/genetlink.h>
|
|
|
|
#include <uapi/linux/if_team.h>
|
|
|
|
/* Common nested types */
|
|
extern const struct nla_policy team_attr_option_nl_policy[TEAM_ATTR_OPTION_ARRAY_INDEX + 1];
|
|
extern const struct nla_policy team_item_option_nl_policy[TEAM_ATTR_ITEM_OPTION + 1];
|
|
|
|
/* Global operation policy for team */
|
|
extern const struct nla_policy team_nl_policy[TEAM_ATTR_LIST_OPTION + 1];
|
|
|
|
/* Ops table for team */
|
|
extern const struct genl_small_ops team_nl_ops[4];
|
|
|
|
int team_nl_noop_doit(struct sk_buff *skb, struct genl_info *info);
|
|
int team_nl_options_set_doit(struct sk_buff *skb, struct genl_info *info);
|
|
int team_nl_options_get_doit(struct sk_buff *skb, struct genl_info *info);
|
|
int team_nl_port_list_get_doit(struct sk_buff *skb, struct genl_info *info);
|
|
|
|
#endif /* _LINUX_TEAM_GEN_H */
|