Page MenuHomeFreeBSD

pf: Convert pfi_kkif to use counter_u64
ClosedPublic

Authored by kp on Dec 24 2020, 3:48 PM.
Tags
None
Referenced Files
Unknown Object (File)
Oct 7 2024, 2:49 PM
Unknown Object (File)
Oct 5 2024, 11:56 AM
Unknown Object (File)
Oct 5 2024, 7:32 AM
Unknown Object (File)
Oct 4 2024, 5:22 PM
Unknown Object (File)
Oct 4 2024, 5:13 PM
Unknown Object (File)
Oct 4 2024, 8:58 AM
Unknown Object (File)
Oct 1 2024, 9:58 PM
Unknown Object (File)
Sep 30 2024, 9:29 AM

Details

Summary

Improve caching behaviour by using counter_u64 rather than variables
shared between cores. Expect a minor performance improvement.

MFC after: 2 weeks
Sponsored by: Orange Business Services

Diff Detail

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

Event Timeline

kp requested review of this revision.Dec 24 2020, 3:48 PM

Looks good, modulo minor initialisation nit/remark.

sys/netpfil/pf/pf_if.c
226–245

Is there a point in M_ZEROing? As far as I can tell, everything is explicitly initialised later. Or you could pf_kkif_zero() to make it even clearer.

sys/netpfil/pf/pf_if.c
226–245

Paranoia for one, but also because otherwise we can't tell which of the counter allocations have failed and can't safely free in pfi_kkif_free().

Happily this is not in the data path, so we don't actually do this very often. A little bit of extra memory writing here isn't going to hurt anything,

Works for me! Thanks for clarifying.

This revision is now accepted and ready to land.Dec 30 2020, 11:39 AM
This revision was automatically updated to reflect the committed changes.