mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
Fix build on head.
PR: 194035
This commit is contained in:
parent
cc9f4da0b3
commit
4c840a94c9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=369662
1 changed files with 14 additions and 0 deletions
|
@ -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);
|
Loading…
Add table
Reference in a new issue