#include <linux/module.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/skbuff.h>
#include <linux/rtnetlink.h>
#include <linux/if_vlan.h>
#include <net/netlink.h>
#include <net/pkt_sched.h>
#include <net/pkt_cls.h>
#include <net/tc_wrapper.h>
#include <linux/tc_act/tc_vlan.h>
#include <net/tc_act/tc_vlan.h>
static struct tc_action_ops act_vlan_ops;
TC_INDIRECT_SCOPE int tcf_vlan_act(struct sk_buff *skb,
const struct tc_action *a,
struct tcf_result *res)
{ … }
static const struct nla_policy vlan_policy[TCA_VLAN_MAX + 1] = …;
static int tcf_vlan_init(struct net *net, struct nlattr *nla,
struct nlattr *est, struct tc_action **a,
struct tcf_proto *tp, u32 flags,
struct netlink_ext_ack *extack)
{ … }
static void tcf_vlan_cleanup(struct tc_action *a)
{ … }
static int tcf_vlan_dump(struct sk_buff *skb, struct tc_action *a,
int bind, int ref)
{ … }
static void tcf_vlan_stats_update(struct tc_action *a, u64 bytes, u64 packets,
u64 drops, u64 lastuse, bool hw)
{ … }
static size_t tcf_vlan_get_fill_size(const struct tc_action *act)
{ … }
static int tcf_vlan_offload_act_setup(struct tc_action *act, void *entry_data,
u32 *index_inc, bool bind,
struct netlink_ext_ack *extack)
{ … }
static struct tc_action_ops act_vlan_ops = …;
MODULE_ALIAS_NET_ACT(…) …;
static __net_init int vlan_init_net(struct net *net)
{ … }
static void __net_exit vlan_exit_net(struct list_head *net_list)
{ … }
static struct pernet_operations vlan_net_ops = …;
static int __init vlan_init_module(void)
{ … }
static void __exit vlan_cleanup_module(void)
{ … }
module_init(…) …;
module_exit(vlan_cleanup_module);
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;