xref: /openbmc/linux/net/sched/act_vlan.c (revision 0190c1d452a91c38a3462abdd81752be1b9006a8)
1c7e2b968SJiri Pirko /*
2c7e2b968SJiri Pirko  * Copyright (c) 2014 Jiri Pirko <jiri@resnulli.us>
3c7e2b968SJiri Pirko  *
4c7e2b968SJiri Pirko  * This program is free software; you can redistribute it and/or modify
5c7e2b968SJiri Pirko  * it under the terms of the GNU General Public License as published by
6c7e2b968SJiri Pirko  * the Free Software Foundation; either version 2 of the License, or
7c7e2b968SJiri Pirko  * (at your option) any later version.
8c7e2b968SJiri Pirko  */
9c7e2b968SJiri Pirko 
10c7e2b968SJiri Pirko #include <linux/module.h>
11c7e2b968SJiri Pirko #include <linux/init.h>
12c7e2b968SJiri Pirko #include <linux/kernel.h>
13c7e2b968SJiri Pirko #include <linux/skbuff.h>
14c7e2b968SJiri Pirko #include <linux/rtnetlink.h>
15c7e2b968SJiri Pirko #include <linux/if_vlan.h>
16c7e2b968SJiri Pirko #include <net/netlink.h>
17c7e2b968SJiri Pirko #include <net/pkt_sched.h>
18c7e2b968SJiri Pirko 
19c7e2b968SJiri Pirko #include <linux/tc_act/tc_vlan.h>
20c7e2b968SJiri Pirko #include <net/tc_act/tc_vlan.h>
21c7e2b968SJiri Pirko 
22c7d03a00SAlexey Dobriyan static unsigned int vlan_net_id;
23a85a970aSWANG Cong static struct tc_action_ops act_vlan_ops;
24ddf97ccdSWANG Cong 
25c7e2b968SJiri Pirko static int tcf_vlan(struct sk_buff *skb, const struct tc_action *a,
26c7e2b968SJiri Pirko 		    struct tcf_result *res)
27c7e2b968SJiri Pirko {
28a85a970aSWANG Cong 	struct tcf_vlan *v = to_vlan(a);
294c5b9d96SManish Kurup 	struct tcf_vlan_params *p;
30c7e2b968SJiri Pirko 	int action;
31c7e2b968SJiri Pirko 	int err;
3245a497f2SShmulik Ladkani 	u16 tci;
33c7e2b968SJiri Pirko 
349c4a4e48SJamal Hadi Salim 	tcf_lastuse_update(&v->tcf_tm);
35e0496cbbSManish Kurup 	bstats_cpu_update(this_cpu_ptr(v->common.cpu_bstats), skb);
36e0496cbbSManish Kurup 
37f39acc84SShmulik Ladkani 	/* Ensure 'data' points at mac_header prior calling vlan manipulating
38f39acc84SShmulik Ladkani 	 * functions.
39f39acc84SShmulik Ladkani 	 */
40f39acc84SShmulik Ladkani 	if (skb_at_tc_ingress(skb))
41f39acc84SShmulik Ladkani 		skb_push_rcsum(skb, skb->mac_len);
42f39acc84SShmulik Ladkani 
434c5b9d96SManish Kurup 	rcu_read_lock();
444c5b9d96SManish Kurup 
454c5b9d96SManish Kurup 	action = READ_ONCE(v->tcf_action);
464c5b9d96SManish Kurup 
474c5b9d96SManish Kurup 	p = rcu_dereference(v->vlan_p);
484c5b9d96SManish Kurup 
494c5b9d96SManish Kurup 	switch (p->tcfv_action) {
50c7e2b968SJiri Pirko 	case TCA_VLAN_ACT_POP:
51c7e2b968SJiri Pirko 		err = skb_vlan_pop(skb);
52c7e2b968SJiri Pirko 		if (err)
53c7e2b968SJiri Pirko 			goto drop;
54c7e2b968SJiri Pirko 		break;
55c7e2b968SJiri Pirko 	case TCA_VLAN_ACT_PUSH:
564c5b9d96SManish Kurup 		err = skb_vlan_push(skb, p->tcfv_push_proto, p->tcfv_push_vid |
574c5b9d96SManish Kurup 				    (p->tcfv_push_prio << VLAN_PRIO_SHIFT));
58c7e2b968SJiri Pirko 		if (err)
59c7e2b968SJiri Pirko 			goto drop;
60c7e2b968SJiri Pirko 		break;
6145a497f2SShmulik Ladkani 	case TCA_VLAN_ACT_MODIFY:
6245a497f2SShmulik Ladkani 		/* No-op if no vlan tag (either hw-accel or in-payload) */
6345a497f2SShmulik Ladkani 		if (!skb_vlan_tagged(skb))
6445a497f2SShmulik Ladkani 			goto unlock;
6545a497f2SShmulik Ladkani 		/* extract existing tag (and guarantee no hw-accel tag) */
6645a497f2SShmulik Ladkani 		if (skb_vlan_tag_present(skb)) {
6745a497f2SShmulik Ladkani 			tci = skb_vlan_tag_get(skb);
6845a497f2SShmulik Ladkani 			skb->vlan_tci = 0;
6945a497f2SShmulik Ladkani 		} else {
7045a497f2SShmulik Ladkani 			/* in-payload vlan tag, pop it */
7145a497f2SShmulik Ladkani 			err = __skb_vlan_pop(skb, &tci);
7245a497f2SShmulik Ladkani 			if (err)
7345a497f2SShmulik Ladkani 				goto drop;
7445a497f2SShmulik Ladkani 		}
7545a497f2SShmulik Ladkani 		/* replace the vid */
764c5b9d96SManish Kurup 		tci = (tci & ~VLAN_VID_MASK) | p->tcfv_push_vid;
7745a497f2SShmulik Ladkani 		/* replace prio bits, if tcfv_push_prio specified */
784c5b9d96SManish Kurup 		if (p->tcfv_push_prio) {
7945a497f2SShmulik Ladkani 			tci &= ~VLAN_PRIO_MASK;
804c5b9d96SManish Kurup 			tci |= p->tcfv_push_prio << VLAN_PRIO_SHIFT;
8145a497f2SShmulik Ladkani 		}
8245a497f2SShmulik Ladkani 		/* put updated tci as hwaccel tag */
834c5b9d96SManish Kurup 		__vlan_hwaccel_put_tag(skb, p->tcfv_push_proto, tci);
8445a497f2SShmulik Ladkani 		break;
85c7e2b968SJiri Pirko 	default:
86c7e2b968SJiri Pirko 		BUG();
87c7e2b968SJiri Pirko 	}
88c7e2b968SJiri Pirko 
89c7e2b968SJiri Pirko 	goto unlock;
90c7e2b968SJiri Pirko 
91c7e2b968SJiri Pirko drop:
92c7e2b968SJiri Pirko 	action = TC_ACT_SHOT;
93e0496cbbSManish Kurup 	qstats_drop_inc(this_cpu_ptr(v->common.cpu_qstats));
94e0496cbbSManish Kurup 
95c7e2b968SJiri Pirko unlock:
964c5b9d96SManish Kurup 	rcu_read_unlock();
97f39acc84SShmulik Ladkani 	if (skb_at_tc_ingress(skb))
98f39acc84SShmulik Ladkani 		skb_pull_rcsum(skb, skb->mac_len);
99f39acc84SShmulik Ladkani 
100c7e2b968SJiri Pirko 	return action;
101c7e2b968SJiri Pirko }
102c7e2b968SJiri Pirko 
103c7e2b968SJiri Pirko static const struct nla_policy vlan_policy[TCA_VLAN_MAX + 1] = {
104c7e2b968SJiri Pirko 	[TCA_VLAN_PARMS]		= { .len = sizeof(struct tc_vlan) },
105c7e2b968SJiri Pirko 	[TCA_VLAN_PUSH_VLAN_ID]		= { .type = NLA_U16 },
106c7e2b968SJiri Pirko 	[TCA_VLAN_PUSH_VLAN_PROTOCOL]	= { .type = NLA_U16 },
107956af371SHadar Hen Zion 	[TCA_VLAN_PUSH_VLAN_PRIORITY]	= { .type = NLA_U8 },
108c7e2b968SJiri Pirko };
109c7e2b968SJiri Pirko 
110c7e2b968SJiri Pirko static int tcf_vlan_init(struct net *net, struct nlattr *nla,
111a85a970aSWANG Cong 			 struct nlattr *est, struct tc_action **a,
112789871bbSVlad Buslov 			 int ovr, int bind, bool rtnl_held,
113789871bbSVlad Buslov 			 struct netlink_ext_ack *extack)
114c7e2b968SJiri Pirko {
115ddf97ccdSWANG Cong 	struct tc_action_net *tn = net_generic(net, vlan_net_id);
116c7e2b968SJiri Pirko 	struct nlattr *tb[TCA_VLAN_MAX + 1];
1174c5b9d96SManish Kurup 	struct tcf_vlan_params *p, *p_old;
118c7e2b968SJiri Pirko 	struct tc_vlan *parm;
119c7e2b968SJiri Pirko 	struct tcf_vlan *v;
120c7e2b968SJiri Pirko 	int action;
12194cb5492SDavide Caratti 	u16 push_vid = 0;
122c7e2b968SJiri Pirko 	__be16 push_proto = 0;
123956af371SHadar Hen Zion 	u8 push_prio = 0;
124b2313077SWANG Cong 	bool exists = false;
125b2313077SWANG Cong 	int ret = 0, err;
126c7e2b968SJiri Pirko 
127c7e2b968SJiri Pirko 	if (!nla)
128c7e2b968SJiri Pirko 		return -EINVAL;
129c7e2b968SJiri Pirko 
130fceb6435SJohannes Berg 	err = nla_parse_nested(tb, TCA_VLAN_MAX, nla, vlan_policy, NULL);
131c7e2b968SJiri Pirko 	if (err < 0)
132c7e2b968SJiri Pirko 		return err;
133c7e2b968SJiri Pirko 
134c7e2b968SJiri Pirko 	if (!tb[TCA_VLAN_PARMS])
135c7e2b968SJiri Pirko 		return -EINVAL;
136c7e2b968SJiri Pirko 	parm = nla_data(tb[TCA_VLAN_PARMS]);
137*0190c1d4SVlad Buslov 	err = tcf_idr_check_alloc(tn, &parm->index, a, bind);
138*0190c1d4SVlad Buslov 	if (err < 0)
139*0190c1d4SVlad Buslov 		return err;
140*0190c1d4SVlad Buslov 	exists = err;
1415026c9b1SJamal Hadi Salim 	if (exists && bind)
1425026c9b1SJamal Hadi Salim 		return 0;
1435026c9b1SJamal Hadi Salim 
144c7e2b968SJiri Pirko 	switch (parm->v_action) {
145c7e2b968SJiri Pirko 	case TCA_VLAN_ACT_POP:
146c7e2b968SJiri Pirko 		break;
147c7e2b968SJiri Pirko 	case TCA_VLAN_ACT_PUSH:
14845a497f2SShmulik Ladkani 	case TCA_VLAN_ACT_MODIFY:
1495026c9b1SJamal Hadi Salim 		if (!tb[TCA_VLAN_PUSH_VLAN_ID]) {
1505026c9b1SJamal Hadi Salim 			if (exists)
15165a206c0SChris Mi 				tcf_idr_release(*a, bind);
152*0190c1d4SVlad Buslov 			else
153*0190c1d4SVlad Buslov 				tcf_idr_cleanup(tn, parm->index);
154c7e2b968SJiri Pirko 			return -EINVAL;
1555026c9b1SJamal Hadi Salim 		}
156c7e2b968SJiri Pirko 		push_vid = nla_get_u16(tb[TCA_VLAN_PUSH_VLAN_ID]);
1575026c9b1SJamal Hadi Salim 		if (push_vid >= VLAN_VID_MASK) {
1585026c9b1SJamal Hadi Salim 			if (exists)
15965a206c0SChris Mi 				tcf_idr_release(*a, bind);
160*0190c1d4SVlad Buslov 			else
161*0190c1d4SVlad Buslov 				tcf_idr_cleanup(tn, parm->index);
162c7e2b968SJiri Pirko 			return -ERANGE;
1635026c9b1SJamal Hadi Salim 		}
164c7e2b968SJiri Pirko 
165c7e2b968SJiri Pirko 		if (tb[TCA_VLAN_PUSH_VLAN_PROTOCOL]) {
166c7e2b968SJiri Pirko 			push_proto = nla_get_be16(tb[TCA_VLAN_PUSH_VLAN_PROTOCOL]);
167c7e2b968SJiri Pirko 			switch (push_proto) {
168c7e2b968SJiri Pirko 			case htons(ETH_P_8021Q):
169c7e2b968SJiri Pirko 			case htons(ETH_P_8021AD):
170c7e2b968SJiri Pirko 				break;
171c7e2b968SJiri Pirko 			default:
1725a4931aeSDavide Caratti 				if (exists)
1735a4931aeSDavide Caratti 					tcf_idr_release(*a, bind);
174*0190c1d4SVlad Buslov 				else
175*0190c1d4SVlad Buslov 					tcf_idr_cleanup(tn, parm->index);
176c7e2b968SJiri Pirko 				return -EPROTONOSUPPORT;
177c7e2b968SJiri Pirko 			}
178c7e2b968SJiri Pirko 		} else {
179c7e2b968SJiri Pirko 			push_proto = htons(ETH_P_8021Q);
180c7e2b968SJiri Pirko 		}
181956af371SHadar Hen Zion 
182956af371SHadar Hen Zion 		if (tb[TCA_VLAN_PUSH_VLAN_PRIORITY])
183956af371SHadar Hen Zion 			push_prio = nla_get_u8(tb[TCA_VLAN_PUSH_VLAN_PRIORITY]);
184c7e2b968SJiri Pirko 		break;
185c7e2b968SJiri Pirko 	default:
1865026c9b1SJamal Hadi Salim 		if (exists)
18765a206c0SChris Mi 			tcf_idr_release(*a, bind);
188*0190c1d4SVlad Buslov 		else
189*0190c1d4SVlad Buslov 			tcf_idr_cleanup(tn, parm->index);
190c7e2b968SJiri Pirko 		return -EINVAL;
191c7e2b968SJiri Pirko 	}
192c7e2b968SJiri Pirko 	action = parm->v_action;
193c7e2b968SJiri Pirko 
1945026c9b1SJamal Hadi Salim 	if (!exists) {
19565a206c0SChris Mi 		ret = tcf_idr_create(tn, parm->index, est, a,
196e0496cbbSManish Kurup 				     &act_vlan_ops, bind, true);
197*0190c1d4SVlad Buslov 		if (ret) {
198*0190c1d4SVlad Buslov 			tcf_idr_cleanup(tn, parm->index);
199c7e2b968SJiri Pirko 			return ret;
200*0190c1d4SVlad Buslov 		}
201c7e2b968SJiri Pirko 
202c7e2b968SJiri Pirko 		ret = ACT_P_CREATED;
2034e8ddd7fSVlad Buslov 	} else if (!ovr) {
20465a206c0SChris Mi 		tcf_idr_release(*a, bind);
205c7e2b968SJiri Pirko 		return -EEXIST;
206c7e2b968SJiri Pirko 	}
207c7e2b968SJiri Pirko 
208a85a970aSWANG Cong 	v = to_vlan(*a);
209c7e2b968SJiri Pirko 
2104c5b9d96SManish Kurup 	ASSERT_RTNL();
2114c5b9d96SManish Kurup 	p = kzalloc(sizeof(*p), GFP_KERNEL);
2124c5b9d96SManish Kurup 	if (!p) {
2134c5b9d96SManish Kurup 		tcf_idr_release(*a, bind);
2144c5b9d96SManish Kurup 		return -ENOMEM;
2154c5b9d96SManish Kurup 	}
216c7e2b968SJiri Pirko 
217c7e2b968SJiri Pirko 	v->tcf_action = parm->action;
218c7e2b968SJiri Pirko 
2194c5b9d96SManish Kurup 	p_old = rtnl_dereference(v->vlan_p);
2204c5b9d96SManish Kurup 
2214c5b9d96SManish Kurup 	p->tcfv_action = action;
2224c5b9d96SManish Kurup 	p->tcfv_push_vid = push_vid;
2234c5b9d96SManish Kurup 	p->tcfv_push_prio = push_prio;
2244c5b9d96SManish Kurup 	p->tcfv_push_proto = push_proto;
2254c5b9d96SManish Kurup 
2264c5b9d96SManish Kurup 	rcu_assign_pointer(v->vlan_p, p);
2274c5b9d96SManish Kurup 
2284c5b9d96SManish Kurup 	if (p_old)
2294c5b9d96SManish Kurup 		kfree_rcu(p_old, rcu);
230c7e2b968SJiri Pirko 
231c7e2b968SJiri Pirko 	if (ret == ACT_P_CREATED)
23265a206c0SChris Mi 		tcf_idr_insert(tn, *a);
233c7e2b968SJiri Pirko 	return ret;
234c7e2b968SJiri Pirko }
235c7e2b968SJiri Pirko 
2369a63b255SCong Wang static void tcf_vlan_cleanup(struct tc_action *a)
2374c5b9d96SManish Kurup {
2384c5b9d96SManish Kurup 	struct tcf_vlan *v = to_vlan(a);
2394c5b9d96SManish Kurup 	struct tcf_vlan_params *p;
2404c5b9d96SManish Kurup 
2414c5b9d96SManish Kurup 	p = rcu_dereference_protected(v->vlan_p, 1);
2421edf8abeSDavide Caratti 	if (p)
2434c5b9d96SManish Kurup 		kfree_rcu(p, rcu);
2444c5b9d96SManish Kurup }
2454c5b9d96SManish Kurup 
246c7e2b968SJiri Pirko static int tcf_vlan_dump(struct sk_buff *skb, struct tc_action *a,
247c7e2b968SJiri Pirko 			 int bind, int ref)
248c7e2b968SJiri Pirko {
249c7e2b968SJiri Pirko 	unsigned char *b = skb_tail_pointer(skb);
250a85a970aSWANG Cong 	struct tcf_vlan *v = to_vlan(a);
2514c5b9d96SManish Kurup 	struct tcf_vlan_params *p = rtnl_dereference(v->vlan_p);
252c7e2b968SJiri Pirko 	struct tc_vlan opt = {
253c7e2b968SJiri Pirko 		.index    = v->tcf_index,
254036bb443SVlad Buslov 		.refcnt   = refcount_read(&v->tcf_refcnt) - ref,
255036bb443SVlad Buslov 		.bindcnt  = atomic_read(&v->tcf_bindcnt) - bind,
256c7e2b968SJiri Pirko 		.action   = v->tcf_action,
2574c5b9d96SManish Kurup 		.v_action = p->tcfv_action,
258c7e2b968SJiri Pirko 	};
259c7e2b968SJiri Pirko 	struct tcf_t t;
260c7e2b968SJiri Pirko 
261c7e2b968SJiri Pirko 	if (nla_put(skb, TCA_VLAN_PARMS, sizeof(opt), &opt))
262c7e2b968SJiri Pirko 		goto nla_put_failure;
263c7e2b968SJiri Pirko 
2644c5b9d96SManish Kurup 	if ((p->tcfv_action == TCA_VLAN_ACT_PUSH ||
2654c5b9d96SManish Kurup 	     p->tcfv_action == TCA_VLAN_ACT_MODIFY) &&
2664c5b9d96SManish Kurup 	    (nla_put_u16(skb, TCA_VLAN_PUSH_VLAN_ID, p->tcfv_push_vid) ||
2670b0f43feSJamal Hadi Salim 	     nla_put_be16(skb, TCA_VLAN_PUSH_VLAN_PROTOCOL,
2684c5b9d96SManish Kurup 			  p->tcfv_push_proto) ||
269956af371SHadar Hen Zion 	     (nla_put_u8(skb, TCA_VLAN_PUSH_VLAN_PRIORITY,
2704c5b9d96SManish Kurup 					      p->tcfv_push_prio))))
271c7e2b968SJiri Pirko 		goto nla_put_failure;
272c7e2b968SJiri Pirko 
27348d8ee16SJamal Hadi Salim 	tcf_tm_dump(&t, &v->tcf_tm);
2749854518eSNicolas Dichtel 	if (nla_put_64bit(skb, TCA_VLAN_TM, sizeof(t), &t, TCA_VLAN_PAD))
275c7e2b968SJiri Pirko 		goto nla_put_failure;
276c7e2b968SJiri Pirko 	return skb->len;
277c7e2b968SJiri Pirko 
278c7e2b968SJiri Pirko nla_put_failure:
279c7e2b968SJiri Pirko 	nlmsg_trim(skb, b);
280c7e2b968SJiri Pirko 	return -1;
281c7e2b968SJiri Pirko }
282c7e2b968SJiri Pirko 
283ddf97ccdSWANG Cong static int tcf_vlan_walker(struct net *net, struct sk_buff *skb,
284ddf97ccdSWANG Cong 			   struct netlink_callback *cb, int type,
28541780105SAlexander Aring 			   const struct tc_action_ops *ops,
28641780105SAlexander Aring 			   struct netlink_ext_ack *extack)
287ddf97ccdSWANG Cong {
288ddf97ccdSWANG Cong 	struct tc_action_net *tn = net_generic(net, vlan_net_id);
289ddf97ccdSWANG Cong 
290b3620145SAlexander Aring 	return tcf_generic_walker(tn, skb, cb, type, ops, extack);
291ddf97ccdSWANG Cong }
292ddf97ccdSWANG Cong 
293331a9295SAlexander Aring static int tcf_vlan_search(struct net *net, struct tc_action **a, u32 index,
294331a9295SAlexander Aring 			   struct netlink_ext_ack *extack)
295ddf97ccdSWANG Cong {
296ddf97ccdSWANG Cong 	struct tc_action_net *tn = net_generic(net, vlan_net_id);
297ddf97ccdSWANG Cong 
29865a206c0SChris Mi 	return tcf_idr_search(tn, a, index);
299ddf97ccdSWANG Cong }
300ddf97ccdSWANG Cong 
301b409074eSVlad Buslov static int tcf_vlan_delete(struct net *net, u32 index)
302b409074eSVlad Buslov {
303b409074eSVlad Buslov 	struct tc_action_net *tn = net_generic(net, vlan_net_id);
304b409074eSVlad Buslov 
305b409074eSVlad Buslov 	return tcf_idr_delete_index(tn, index);
306b409074eSVlad Buslov }
307b409074eSVlad Buslov 
308c7e2b968SJiri Pirko static struct tc_action_ops act_vlan_ops = {
309c7e2b968SJiri Pirko 	.kind		=	"vlan",
310c7e2b968SJiri Pirko 	.type		=	TCA_ACT_VLAN,
311c7e2b968SJiri Pirko 	.owner		=	THIS_MODULE,
312c7e2b968SJiri Pirko 	.act		=	tcf_vlan,
313c7e2b968SJiri Pirko 	.dump		=	tcf_vlan_dump,
314c7e2b968SJiri Pirko 	.init		=	tcf_vlan_init,
3154c5b9d96SManish Kurup 	.cleanup	=	tcf_vlan_cleanup,
316ddf97ccdSWANG Cong 	.walk		=	tcf_vlan_walker,
317ddf97ccdSWANG Cong 	.lookup		=	tcf_vlan_search,
318b409074eSVlad Buslov 	.delete		=	tcf_vlan_delete,
319a85a970aSWANG Cong 	.size		=	sizeof(struct tcf_vlan),
320ddf97ccdSWANG Cong };
321ddf97ccdSWANG Cong 
322ddf97ccdSWANG Cong static __net_init int vlan_init_net(struct net *net)
323ddf97ccdSWANG Cong {
324ddf97ccdSWANG Cong 	struct tc_action_net *tn = net_generic(net, vlan_net_id);
325ddf97ccdSWANG Cong 
326c7e460ceSCong Wang 	return tc_action_net_init(tn, &act_vlan_ops);
327ddf97ccdSWANG Cong }
328ddf97ccdSWANG Cong 
329039af9c6SCong Wang static void __net_exit vlan_exit_net(struct list_head *net_list)
330ddf97ccdSWANG Cong {
331039af9c6SCong Wang 	tc_action_net_exit(net_list, vlan_net_id);
332ddf97ccdSWANG Cong }
333ddf97ccdSWANG Cong 
334ddf97ccdSWANG Cong static struct pernet_operations vlan_net_ops = {
335ddf97ccdSWANG Cong 	.init = vlan_init_net,
336039af9c6SCong Wang 	.exit_batch = vlan_exit_net,
337ddf97ccdSWANG Cong 	.id   = &vlan_net_id,
338ddf97ccdSWANG Cong 	.size = sizeof(struct tc_action_net),
339c7e2b968SJiri Pirko };
340c7e2b968SJiri Pirko 
341c7e2b968SJiri Pirko static int __init vlan_init_module(void)
342c7e2b968SJiri Pirko {
343ddf97ccdSWANG Cong 	return tcf_register_action(&act_vlan_ops, &vlan_net_ops);
344c7e2b968SJiri Pirko }
345c7e2b968SJiri Pirko 
346c7e2b968SJiri Pirko static void __exit vlan_cleanup_module(void)
347c7e2b968SJiri Pirko {
348ddf97ccdSWANG Cong 	tcf_unregister_action(&act_vlan_ops, &vlan_net_ops);
349c7e2b968SJiri Pirko }
350c7e2b968SJiri Pirko 
351c7e2b968SJiri Pirko module_init(vlan_init_module);
352c7e2b968SJiri Pirko module_exit(vlan_cleanup_module);
353c7e2b968SJiri Pirko 
354c7e2b968SJiri Pirko MODULE_AUTHOR("Jiri Pirko <jiri@resnulli.us>");
355c7e2b968SJiri Pirko MODULE_DESCRIPTION("vlan manipulation actions");
356c7e2b968SJiri Pirko MODULE_LICENSE("GPL v2");
357