Hi, In net/if_epair.c semicolon is missed in epair_nh_drainedcpu() (see the patch below). This shows up when compiling with EPAIR_DEBUG.
Also, what was a reason to declare epair_debug mib as XINT? Shouldn't be just INT? -- Mikolaj Golub
Index: sys/net/if_epair.c =================================================================== --- sys/net/if_epair.c (revision 215576) +++ sys/net/if_epair.c (working copy) @@ -305,7 +305,7 @@ epair_nh_drainedcpu(u_int cpuid) if ((ifp->if_drv_flags & IFF_DRV_OACTIVE) != 0) { /* Our "hw"q overflew again. */ - epair_dpcpu->epair_drv_flags |= IFF_DRV_OACTIVE + epair_dpcpu->epair_drv_flags |= IFF_DRV_OACTIVE; DPRINTF("hw queue length overflow at %u\n", epair_nh.nh_qlimit); break;
_______________________________________________ freebsd-net@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-net To unsubscribe, send any mail to "freebsd-net-unsubscr...@freebsd.org"