diff options
author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2016-05-17 00:32:36 +0000 |
---|---|---|
committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2016-05-17 00:32:36 +0000 |
commit | 54d9f34ea38105c571c655abb8760cdf4163731d (patch) | |
tree | 0cd90a601add389091d1c65eaddd4f94a71273cd | |
parent | d5a17412193b045c17560c078513bcf9a0400f4a (diff) |
Notes
-rw-r--r-- | sys/net/vnet.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/vnet.c b/sys/net/vnet.c index 9c3d281910e8..d34a2ee7a3e9 100644 --- a/sys/net/vnet.c +++ b/sys/net/vnet.c @@ -304,7 +304,7 @@ vnet_destroy(struct vnet *vnet) * Boot time initialization and allocation of virtual network stacks. */ static void -vnet_init_prelink(void *arg) +vnet_init_prelink(void *arg __unused) { rw_init(&vnet_rwlock, "vnet_rwlock"); @@ -316,7 +316,7 @@ SYSINIT(vnet_init_prelink, SI_SUB_VNET_PRELINK, SI_ORDER_FIRST, vnet_init_prelink, NULL); static void -vnet0_init(void *arg) +vnet0_init(void *arg __unused) { /* Warn people before take off - in case we crash early. */ @@ -333,7 +333,7 @@ vnet0_init(void *arg) SYSINIT(vnet0_init, SI_SUB_VNET, SI_ORDER_FIRST, vnet0_init, NULL); static void -vnet_init_done(void *unused) +vnet_init_done(void *unused __unused) { curvnet = NULL; |