blob: a2f9b47de1873110f6c2a3037de520105930afc3 [file] [log] [blame]
David S. Miller4c521e42007-07-09 22:23:51 -07001/* sunvnet.c: Sun LDOM Virtual Network Driver.
2 *
David S. Miller3d452e52008-09-01 01:48:52 -07003 * Copyright (C) 2007, 2008 David S. Miller <davem@davemloft.net>
Aaron Young67d07192016-03-15 11:35:38 -07004 * Copyright (C) 2016 Oracle. All rights reserved.
David S. Miller4c521e42007-07-09 22:23:51 -07005 */
6
Joe Perches4d5870e2010-08-17 07:55:05 +00007#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
David S. Miller4c521e42007-07-09 22:23:51 -07009#include <linux/module.h>
10#include <linux/kernel.h>
11#include <linux/types.h>
12#include <linux/slab.h>
13#include <linux/delay.h>
14#include <linux/init.h>
15#include <linux/netdevice.h>
16#include <linux/ethtool.h>
17#include <linux/etherdevice.h>
David S. Miller9184a042007-07-17 22:19:10 -070018#include <linux/mutex.h>
David L Stevensda38c562014-12-02 15:31:13 -050019#include <linux/highmem.h>
David L Stevense4defc72014-09-29 19:47:59 -040020#include <linux/if_vlan.h>
David S. Miller4c521e42007-07-09 22:23:51 -070021
David L Stevensa2b78e92014-09-29 19:48:24 -040022#if IS_ENABLED(CONFIG_IPV6)
23#include <linux/icmpv6.h>
24#endif
25
David L Stevens6d0ba912014-12-02 15:31:04 -050026#include <net/ip.h>
David L Stevensa2b78e92014-09-29 19:48:24 -040027#include <net/icmp.h>
28#include <net/route.h>
29
David S. Miller4c521e42007-07-09 22:23:51 -070030#include <asm/vio.h>
31#include <asm/ldc.h>
32
Aaron Young31762ea2016-03-15 11:35:37 -070033#include "sunvnet_common.h"
34
35/* length of time before we decide the hardware is borked,
36 * and dev->tx_timeout() should be called to fix the problem
37 */
38#define VNET_TX_TIMEOUT (5 * HZ)
David S. Miller4c521e42007-07-09 22:23:51 -070039
40#define DRV_MODULE_NAME "sunvnet"
David S. Miller4c521e42007-07-09 22:23:51 -070041#define DRV_MODULE_VERSION "1.0"
42#define DRV_MODULE_RELDATE "June 25, 2007"
43
Bill Pembertonf73d12b2012-12-03 09:24:02 -050044static char version[] =
David S. Miller4c521e42007-07-09 22:23:51 -070045 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
46MODULE_AUTHOR("David S. Miller (davem@davemloft.net)");
47MODULE_DESCRIPTION("Sun LDOM virtual network driver");
48MODULE_LICENSE("GPL");
49MODULE_VERSION(DRV_MODULE_VERSION);
50
51/* Ordered from largest major to lowest */
52static struct vio_version vnet_versions[] = {
David L Stevens6d0ba912014-12-02 15:31:04 -050053 { .major = 1, .minor = 8 },
54 { .major = 1, .minor = 7 },
David L Stevense4defc72014-09-29 19:47:59 -040055 { .major = 1, .minor = 6 },
David S. Miller4c521e42007-07-09 22:23:51 -070056 { .major = 1, .minor = 0 },
57};
58
David S. Miller4c521e42007-07-09 22:23:51 -070059static void vnet_get_drvinfo(struct net_device *dev,
60 struct ethtool_drvinfo *info)
61{
Jiri Pirko7826d432013-01-06 00:44:26 +000062 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
63 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
David S. Miller4c521e42007-07-09 22:23:51 -070064}
65
66static u32 vnet_get_msglevel(struct net_device *dev)
67{
68 struct vnet *vp = netdev_priv(dev);
Aaron Youngdc153f82016-03-15 11:35:40 -070069
David S. Miller4c521e42007-07-09 22:23:51 -070070 return vp->msg_enable;
71}
72
73static void vnet_set_msglevel(struct net_device *dev, u32 value)
74{
75 struct vnet *vp = netdev_priv(dev);
Aaron Youngdc153f82016-03-15 11:35:40 -070076
David S. Miller4c521e42007-07-09 22:23:51 -070077 vp->msg_enable = value;
78}
79
80static const struct ethtool_ops vnet_ethtool_ops = {
81 .get_drvinfo = vnet_get_drvinfo,
82 .get_msglevel = vnet_get_msglevel,
83 .set_msglevel = vnet_set_msglevel,
84 .get_link = ethtool_op_get_link,
David S. Miller4c521e42007-07-09 22:23:51 -070085};
86
David S. Miller9184a042007-07-17 22:19:10 -070087static LIST_HEAD(vnet_list);
88static DEFINE_MUTEX(vnet_list_mutex);
89
Aaron Young67d07192016-03-15 11:35:38 -070090static struct vnet_port *__tx_port_find(struct vnet *vp, struct sk_buff *skb)
91{
92 unsigned int hash = vnet_hashfn(skb->data);
93 struct hlist_head *hp = &vp->port_hash[hash];
94 struct vnet_port *port;
95
96 hlist_for_each_entry_rcu(port, hp, hash) {
97 if (!sunvnet_port_is_up_common(port))
98 continue;
99 if (ether_addr_equal(port->raddr, skb->data))
100 return port;
101 }
102 list_for_each_entry_rcu(port, &vp->port_list, list) {
103 if (!port->switch_port)
104 continue;
105 if (!sunvnet_port_is_up_common(port))
106 continue;
107 return port;
108 }
109 return NULL;
110}
111
112/* func arg to vnet_start_xmit_common() to get the proper tx port */
113static struct vnet_port *vnet_tx_port_find(struct sk_buff *skb,
114 struct net_device *dev)
115{
116 struct vnet *vp = netdev_priv(dev);
117
118 return __tx_port_find(vp, skb);
119}
120
121static u16 vnet_select_queue(struct net_device *dev, struct sk_buff *skb,
122 void *accel_priv, select_queue_fallback_t fallback)
123{
124 struct vnet *vp = netdev_priv(dev);
125 struct vnet_port *port = __tx_port_find(vp, skb);
126
127 if (!port)
128 return 0;
129
130 return port->q_index;
131}
132
133/* Wrappers to common functions */
134static int vnet_start_xmit(struct sk_buff *skb, struct net_device *dev)
135{
136 return sunvnet_start_xmit_common(skb, dev, vnet_tx_port_find);
137}
138
139static void vnet_set_rx_mode(struct net_device *dev)
140{
141 struct vnet *vp = netdev_priv(dev);
142
143 return sunvnet_set_rx_mode_common(dev, vp);
144}
145
146#ifdef CONFIG_NET_POLL_CONTROLLER
147static void vnet_poll_controller(struct net_device *dev)
148{
149 struct vnet *vp = netdev_priv(dev);
150
151 return sunvnet_poll_controller_common(dev, vp);
152}
153#endif
154
David S. Miller8fd17f22009-03-20 00:51:22 -0700155static const struct net_device_ops vnet_ops = {
Aaron Young31762ea2016-03-15 11:35:37 -0700156 .ndo_open = sunvnet_open_common,
157 .ndo_stop = sunvnet_close_common,
Aaron Young67d07192016-03-15 11:35:38 -0700158 .ndo_set_rx_mode = vnet_set_rx_mode,
Aaron Young31762ea2016-03-15 11:35:37 -0700159 .ndo_set_mac_address = sunvnet_set_mac_addr_common,
Ben Hutchings240c1022009-07-09 17:54:35 +0000160 .ndo_validate_addr = eth_validate_addr,
Aaron Young31762ea2016-03-15 11:35:37 -0700161 .ndo_tx_timeout = sunvnet_tx_timeout_common,
162 .ndo_change_mtu = sunvnet_change_mtu_common,
Aaron Young67d07192016-03-15 11:35:38 -0700163 .ndo_start_xmit = vnet_start_xmit,
164 .ndo_select_queue = vnet_select_queue,
Sowmini Varadhan69088822014-10-25 15:12:12 -0400165#ifdef CONFIG_NET_POLL_CONTROLLER
Aaron Young67d07192016-03-15 11:35:38 -0700166 .ndo_poll_controller = vnet_poll_controller,
Sowmini Varadhan69088822014-10-25 15:12:12 -0400167#endif
David S. Miller8fd17f22009-03-20 00:51:22 -0700168};
169
Sowmini Varadhan4c5d2832015-09-18 17:47:55 -0400170static struct vnet *vnet_new(const u64 *local_mac,
171 struct vio_dev *vdev)
David S. Miller9184a042007-07-17 22:19:10 -0700172{
173 struct net_device *dev;
174 struct vnet *vp;
175 int err, i;
176
Sowmini Varadhand51bffd2014-10-30 12:46:09 -0400177 dev = alloc_etherdev_mqs(sizeof(*vp), VNET_MAX_TXQS, 1);
Joe Perches41de8d42012-01-29 13:47:52 +0000178 if (!dev)
David S. Miller9184a042007-07-17 22:19:10 -0700179 return ERR_PTR(-ENOMEM);
David L Stevens8e845f42014-09-29 19:48:11 -0400180 dev->needed_headroom = VNET_PACKET_SKIP + 8;
181 dev->needed_tailroom = 8;
David S. Miller9184a042007-07-17 22:19:10 -0700182
183 for (i = 0; i < ETH_ALEN; i++)
184 dev->dev_addr[i] = (*local_mac >> (5 - i) * 8) & 0xff;
185
David S. Miller9184a042007-07-17 22:19:10 -0700186 vp = netdev_priv(dev);
187
188 spin_lock_init(&vp->lock);
189 vp->dev = dev;
190
191 INIT_LIST_HEAD(&vp->port_list);
192 for (i = 0; i < VNET_PORT_HASH_SIZE; i++)
193 INIT_HLIST_HEAD(&vp->port_hash[i]);
194 INIT_LIST_HEAD(&vp->list);
195 vp->local_mac = *local_mac;
196
David S. Miller8fd17f22009-03-20 00:51:22 -0700197 dev->netdev_ops = &vnet_ops;
David S. Miller9184a042007-07-17 22:19:10 -0700198 dev->ethtool_ops = &vnet_ethtool_ops;
199 dev->watchdog_timeo = VNET_TX_TIMEOUT;
David S. Miller9184a042007-07-17 22:19:10 -0700200
David L Stevens368e36e2014-12-02 15:31:38 -0500201 dev->hw_features = NETIF_F_TSO | NETIF_F_GSO | NETIF_F_GSO_SOFTWARE |
David L Stevens9a72dd42014-12-02 15:31:30 -0500202 NETIF_F_HW_CSUM | NETIF_F_SG;
David L Stevensda38c562014-12-02 15:31:13 -0500203 dev->features = dev->hw_features;
204
Sowmini Varadhan4c5d2832015-09-18 17:47:55 -0400205 SET_NETDEV_DEV(dev, &vdev->dev);
206
David S. Miller9184a042007-07-17 22:19:10 -0700207 err = register_netdev(dev);
208 if (err) {
Joe Perches4d5870e2010-08-17 07:55:05 +0000209 pr_err("Cannot register net device, aborting\n");
David S. Miller9184a042007-07-17 22:19:10 -0700210 goto err_out_free_dev;
211 }
212
Joe Perches4d5870e2010-08-17 07:55:05 +0000213 netdev_info(dev, "Sun LDOM vnet %pM\n", dev->dev_addr);
David S. Miller9184a042007-07-17 22:19:10 -0700214
215 list_add(&vp->list, &vnet_list);
216
217 return vp;
218
219err_out_free_dev:
220 free_netdev(dev);
221
222 return ERR_PTR(err);
223}
224
Sowmini Varadhan4c5d2832015-09-18 17:47:55 -0400225static struct vnet *vnet_find_or_create(const u64 *local_mac,
226 struct vio_dev *vdev)
David S. Miller9184a042007-07-17 22:19:10 -0700227{
228 struct vnet *iter, *vp;
229
230 mutex_lock(&vnet_list_mutex);
231 vp = NULL;
232 list_for_each_entry(iter, &vnet_list, list) {
233 if (iter->local_mac == *local_mac) {
234 vp = iter;
235 break;
236 }
237 }
238 if (!vp)
Sowmini Varadhan4c5d2832015-09-18 17:47:55 -0400239 vp = vnet_new(local_mac, vdev);
David S. Miller9184a042007-07-17 22:19:10 -0700240 mutex_unlock(&vnet_list_mutex);
241
242 return vp;
243}
244
Sowmini Varadhana4b70a02014-07-16 10:02:26 -0400245static void vnet_cleanup(void)
246{
247 struct vnet *vp;
248 struct net_device *dev;
249
250 mutex_lock(&vnet_list_mutex);
251 while (!list_empty(&vnet_list)) {
252 vp = list_first_entry(&vnet_list, struct vnet, list);
253 list_del(&vp->list);
254 dev = vp->dev;
255 /* vio_unregister_driver() should have cleaned up port_list */
256 BUG_ON(!list_empty(&vp->port_list));
257 unregister_netdev(dev);
258 free_netdev(dev);
259 }
260 mutex_unlock(&vnet_list_mutex);
261}
262
David S. Miller9184a042007-07-17 22:19:10 -0700263static const char *local_mac_prop = "local-mac-address";
264
Bill Pembertonf73d12b2012-12-03 09:24:02 -0500265static struct vnet *vnet_find_parent(struct mdesc_handle *hp,
Sowmini Varadhan4c5d2832015-09-18 17:47:55 -0400266 u64 port_node,
267 struct vio_dev *vdev)
David S. Miller9184a042007-07-17 22:19:10 -0700268{
269 const u64 *local_mac = NULL;
270 u64 a;
271
272 mdesc_for_each_arc(a, hp, port_node, MDESC_ARC_TYPE_BACK) {
273 u64 target = mdesc_arc_target(hp, a);
274 const char *name;
275
276 name = mdesc_get_property(hp, target, "name", NULL);
277 if (!name || strcmp(name, "network"))
278 continue;
279
280 local_mac = mdesc_get_property(hp, target,
281 local_mac_prop, NULL);
282 if (local_mac)
283 break;
284 }
285 if (!local_mac)
286 return ERR_PTR(-ENODEV);
287
Sowmini Varadhan4c5d2832015-09-18 17:47:55 -0400288 return vnet_find_or_create(local_mac, vdev);
David S. Miller9184a042007-07-17 22:19:10 -0700289}
290
David S. Miller4c521e42007-07-09 22:23:51 -0700291static struct ldc_channel_config vnet_ldc_cfg = {
Aaron Young31762ea2016-03-15 11:35:37 -0700292 .event = sunvnet_event_common,
David S. Miller4c521e42007-07-09 22:23:51 -0700293 .mtu = 64,
294 .mode = LDC_MODE_UNRELIABLE,
295};
296
297static struct vio_driver_ops vnet_vio_ops = {
Aaron Young31762ea2016-03-15 11:35:37 -0700298 .send_attr = sunvnet_send_attr_common,
299 .handle_attr = sunvnet_handle_attr_common,
300 .handshake_complete = sunvnet_handshake_complete_common,
David S. Miller4c521e42007-07-09 22:23:51 -0700301};
302
Bill Pembertonf73d12b2012-12-03 09:24:02 -0500303static void print_version(void)
David S. Miller9184a042007-07-17 22:19:10 -0700304{
Joe Perches4d5870e2010-08-17 07:55:05 +0000305 printk_once(KERN_INFO "%s", version);
David S. Miller9184a042007-07-17 22:19:10 -0700306}
307
David S. Miller4c521e42007-07-09 22:23:51 -0700308const char *remote_macaddr_prop = "remote-mac-address";
309
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +0000310static int vnet_port_probe(struct vio_dev *vdev, const struct vio_device_id *id)
David S. Miller4c521e42007-07-09 22:23:51 -0700311{
David S. Miller43fdf272007-07-12 13:47:50 -0700312 struct mdesc_handle *hp;
David S. Miller4c521e42007-07-09 22:23:51 -0700313 struct vnet_port *port;
314 unsigned long flags;
315 struct vnet *vp;
316 const u64 *rmac;
317 int len, i, err, switch_port;
318
David S. Miller9184a042007-07-17 22:19:10 -0700319 print_version();
David S. Miller4c521e42007-07-09 22:23:51 -0700320
David S. Miller43fdf272007-07-12 13:47:50 -0700321 hp = mdesc_grab();
322
Sowmini Varadhan4c5d2832015-09-18 17:47:55 -0400323 vp = vnet_find_parent(hp, vdev->mp, vdev);
David S. Miller9184a042007-07-17 22:19:10 -0700324 if (IS_ERR(vp)) {
Joe Perches4d5870e2010-08-17 07:55:05 +0000325 pr_err("Cannot find port parent vnet\n");
David S. Miller9184a042007-07-17 22:19:10 -0700326 err = PTR_ERR(vp);
327 goto err_out_put_mdesc;
328 }
329
David S. Miller43fdf272007-07-12 13:47:50 -0700330 rmac = mdesc_get_property(hp, vdev->mp, remote_macaddr_prop, &len);
331 err = -ENODEV;
David S. Miller4c521e42007-07-09 22:23:51 -0700332 if (!rmac) {
Joe Perches4d5870e2010-08-17 07:55:05 +0000333 pr_err("Port lacks %s property\n", remote_macaddr_prop);
David S. Miller43fdf272007-07-12 13:47:50 -0700334 goto err_out_put_mdesc;
David S. Miller4c521e42007-07-09 22:23:51 -0700335 }
336
337 port = kzalloc(sizeof(*port), GFP_KERNEL);
David S. Miller43fdf272007-07-12 13:47:50 -0700338 err = -ENOMEM;
Joe Perchese404dec2012-01-29 12:56:23 +0000339 if (!port)
David S. Miller43fdf272007-07-12 13:47:50 -0700340 goto err_out_put_mdesc;
David S. Miller4c521e42007-07-09 22:23:51 -0700341
342 for (i = 0; i < ETH_ALEN; i++)
343 port->raddr[i] = (*rmac >> (5 - i) * 8) & 0xff;
344
345 port->vp = vp;
346
David S. Miller43fdf272007-07-12 13:47:50 -0700347 err = vio_driver_init(&port->vio, vdev, VDEV_NETWORK,
David S. Miller4c521e42007-07-09 22:23:51 -0700348 vnet_versions, ARRAY_SIZE(vnet_versions),
349 &vnet_vio_ops, vp->dev->name);
350 if (err)
351 goto err_out_free_port;
352
353 err = vio_ldc_alloc(&port->vio, &vnet_ldc_cfg, port);
354 if (err)
355 goto err_out_free_port;
356
Aaron Young31762ea2016-03-15 11:35:37 -0700357 netif_napi_add(port->vp->dev, &port->napi, sunvnet_poll_common,
358 NAPI_POLL_WEIGHT);
Sowmini Varadhan69088822014-10-25 15:12:12 -0400359
David S. Miller4c521e42007-07-09 22:23:51 -0700360 INIT_HLIST_NODE(&port->hash);
361 INIT_LIST_HEAD(&port->list);
362
363 switch_port = 0;
Aaron Youngdc153f82016-03-15 11:35:40 -0700364 if (mdesc_get_property(hp, vdev->mp, "switch-port", NULL))
David S. Miller4c521e42007-07-09 22:23:51 -0700365 switch_port = 1;
David S. Miller028ebff2007-07-20 02:30:25 -0700366 port->switch_port = switch_port;
David L Stevens368e36e2014-12-02 15:31:38 -0500367 port->tso = true;
368 port->tsolen = 0;
David S. Miller4c521e42007-07-09 22:23:51 -0700369
370 spin_lock_irqsave(&vp->lock, flags);
371 if (switch_port)
Sowmini Varadhan2a968dd2014-10-25 15:12:20 -0400372 list_add_rcu(&port->list, &vp->port_list);
David S. Miller4c521e42007-07-09 22:23:51 -0700373 else
Sowmini Varadhan2a968dd2014-10-25 15:12:20 -0400374 list_add_tail_rcu(&port->list, &vp->port_list);
375 hlist_add_head_rcu(&port->hash,
376 &vp->port_hash[vnet_hashfn(port->raddr)]);
Aaron Young31762ea2016-03-15 11:35:37 -0700377 sunvnet_port_add_txq_common(port);
David S. Miller4c521e42007-07-09 22:23:51 -0700378 spin_unlock_irqrestore(&vp->lock, flags);
379
380 dev_set_drvdata(&vdev->dev, port);
381
Joe Perches4d5870e2010-08-17 07:55:05 +0000382 pr_info("%s: PORT ( remote-mac %pM%s )\n",
383 vp->dev->name, port->raddr, switch_port ? " switch-port" : "");
David S. Miller4c521e42007-07-09 22:23:51 -0700384
Aaron Young31762ea2016-03-15 11:35:37 -0700385 setup_timer(&port->clean_timer, sunvnet_clean_timer_expire_common,
David L Stevens8e845f42014-09-29 19:48:11 -0400386 (unsigned long)port);
387
Sowmini Varadhan69088822014-10-25 15:12:12 -0400388 napi_enable(&port->napi);
David S. Miller4c521e42007-07-09 22:23:51 -0700389 vio_port_up(&port->vio);
390
David S. Miller43fdf272007-07-12 13:47:50 -0700391 mdesc_release(hp);
392
David S. Miller4c521e42007-07-09 22:23:51 -0700393 return 0;
394
David S. Miller4c521e42007-07-09 22:23:51 -0700395err_out_free_port:
396 kfree(port);
397
David S. Miller43fdf272007-07-12 13:47:50 -0700398err_out_put_mdesc:
399 mdesc_release(hp);
David S. Miller4c521e42007-07-09 22:23:51 -0700400 return err;
401}
402
403static int vnet_port_remove(struct vio_dev *vdev)
404{
405 struct vnet_port *port = dev_get_drvdata(&vdev->dev);
406
407 if (port) {
David S. Miller4c521e42007-07-09 22:23:51 -0700408 del_timer_sync(&port->vio.timer);
409
Sowmini Varadhan69088822014-10-25 15:12:12 -0400410 napi_disable(&port->napi);
David S. Miller4c521e42007-07-09 22:23:51 -0700411
Sowmini Varadhan2a968dd2014-10-25 15:12:20 -0400412 list_del_rcu(&port->list);
413 hlist_del_rcu(&port->hash);
414
415 synchronize_rcu();
416 del_timer_sync(&port->clean_timer);
Aaron Young31762ea2016-03-15 11:35:37 -0700417 sunvnet_port_rm_txq_common(port);
Sowmini Varadhan69088822014-10-25 15:12:12 -0400418 netif_napi_del(&port->napi);
Aaron Young31762ea2016-03-15 11:35:37 -0700419 sunvnet_port_free_tx_bufs_common(port);
David S. Miller4c521e42007-07-09 22:23:51 -0700420 vio_ldc_free(&port->vio);
421
422 dev_set_drvdata(&vdev->dev, NULL);
423
424 kfree(port);
425 }
426 return 0;
427}
428
David S. Miller3d452e52008-09-01 01:48:52 -0700429static const struct vio_device_id vnet_port_match[] = {
David S. Miller4c521e42007-07-09 22:23:51 -0700430 {
431 .type = "vnet-port",
432 },
433 {},
434};
Fabio Massimo Di Nittoda68e082007-07-18 14:35:23 -0700435MODULE_DEVICE_TABLE(vio, vnet_port_match);
David S. Miller4c521e42007-07-09 22:23:51 -0700436
437static struct vio_driver vnet_port_driver = {
438 .id_table = vnet_port_match,
439 .probe = vnet_port_probe,
440 .remove = vnet_port_remove,
Benjamin Herrenschmidtcb52d892012-03-26 19:06:30 +0000441 .name = "vnet_port",
David S. Miller4c521e42007-07-09 22:23:51 -0700442};
443
David S. Miller4c521e42007-07-09 22:23:51 -0700444static int __init vnet_init(void)
445{
David S. Miller9184a042007-07-17 22:19:10 -0700446 return vio_register_driver(&vnet_port_driver);
David S. Miller4c521e42007-07-09 22:23:51 -0700447}
448
449static void __exit vnet_exit(void)
450{
451 vio_unregister_driver(&vnet_port_driver);
Sowmini Varadhana4b70a02014-07-16 10:02:26 -0400452 vnet_cleanup();
David S. Miller4c521e42007-07-09 22:23:51 -0700453}
454
455module_init(vnet_init);
456module_exit(vnet_exit);