1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

Fix build on head.

PR:		194035
This commit is contained in:
Jung-uk Kim 2014-09-30 20:27:05 +00:00
parent cc9f4da0b3
commit 4c840a94c9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=369662

View File

@ -0,0 +1,14 @@
--- src/VBox/HostDrivers/VBoxNetAdp/freebsd/VBoxNetAdp-freebsd.c.orig 2014-09-09 15:54:30.000000000 -0400
+++ src/VBox/HostDrivers/VBoxNetAdp/freebsd/VBoxNetAdp-freebsd.c 2014-09-30 15:36:06.000000000 -0400
@@ -234,7 +234,11 @@
ifp->if_drv_flags |= IFF_DRV_OACTIVE;
while (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
{
+#if __FreeBSD_version >= 1100036
+ if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1);
+#else
ifp->if_opackets++;
+#endif
IFQ_DRV_DEQUEUE(&ifp->if_snd, m);
BPF_MTAP(ifp, m);
m_freem(m);