diff options
author | 2016-04-13 11:41:15 +0000 | |
---|---|---|
committer | 2016-04-13 11:41:15 +0000 | |
commit | 74c556f692c42ac183232cd6683befbed2c96ec5 (patch) | |
tree | 54d7a4ccfec81d2069a353d2623eb0b97d388713 /sys/net/if_vxlan.c | |
parent | G/C IFQ_SET_READY(). (diff) | |
download | wireguard-openbsd-74c556f692c42ac183232cd6683befbed2c96ec5.tar.xz wireguard-openbsd-74c556f692c42ac183232cd6683befbed2c96ec5.zip |
We're always ready! So send IFQ_SET_READY() to the bitbucket.
Diffstat (limited to 'sys/net/if_vxlan.c')
-rw-r--r-- | sys/net/if_vxlan.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/net/if_vxlan.c b/sys/net/if_vxlan.c index 748d494dcb9..7d7bb4aafe5 100644 --- a/sys/net/if_vxlan.c +++ b/sys/net/if_vxlan.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_vxlan.c,v 1.37 2016/01/22 11:56:14 goda Exp $ */ +/* $OpenBSD: if_vxlan.c,v 1.38 2016/04/13 11:41:15 mpi Exp $ */ /* * Copyright (c) 2013 Reyk Floeter <reyk@openbsd.org> @@ -138,7 +138,6 @@ vxlan_clone_create(struct if_clone *ifc, int unit) ifp->if_ioctl = vxlanioctl; ifp->if_start = vxlanstart; IFQ_SET_MAXLEN(&ifp->if_snd, IFQ_MAXLEN); - IFQ_SET_READY(&ifp->if_snd); ifp->if_hardmtu = 0xffff; ifp->if_capabilities = IFCAP_VLAN_MTU; |