Page MenuHomeFreeBSD

iflib: emulate counters in netmap mode
ClosedPublic

Authored by franco_opnsense.org on Aug 16 2021, 7:53 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Nov 23, 7:14 PM
Unknown Object (File)
Sat, Nov 22, 2:27 PM
Unknown Object (File)
Fri, Nov 21, 3:10 AM
Unknown Object (File)
Wed, Nov 19, 6:34 AM
Unknown Object (File)
Mon, Nov 17, 11:22 AM
Unknown Object (File)
Sat, Nov 15, 11:58 AM
Unknown Object (File)
Thu, Nov 6, 10:48 PM
Unknown Object (File)
Thu, Nov 6, 5:20 AM

Details

Summary

When iflib devices are in netmap mode the driver
counters are no longer updated making it look from
userspace tools that traffic has stopped.

Submitted by: Stephan de Wit
PR: 252850

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

erj added a subscriber: erj.

This seems fine to me.

This revision is now accepted and ready to land.Aug 16 2021, 3:55 PM

Good idea, thanks! I added just a little comment.

sys/net/iflib.c
1082

I think this should be pkt_len, which is the cumulative size of a multi-descriptor packet, whereas len is the size of the last descriptor only.

This revision now requires changes to proceed.Aug 17 2021, 11:22 AM
franco_opnsense.org added inline comments.
sys/net/iflib.c
1082

Nice catch, thanks! I changed it to pi.ipi_len where pkg_len is stored to avoid the dependency on an internal variable.

This revision is now accepted and ready to land.Aug 17 2021, 11:49 AM

Appreciate the reviews :) Unfortunately I'm not a committer so is someone willing to help out? Thanks in advance.