Page MenuHomeFreeBSD

Remove per-packet ifa refcounting from IPv6 fast path.
ClosedPublic

Authored by melifaro on Feb 13 2021, 3:04 PM.
Tags
None
Referenced Files
F102148665: D28648.id83832.diff
Fri, Nov 8, 5:37 AM
F102142693: D28648.diff
Fri, Nov 8, 3:47 AM
Unknown Object (File)
Sat, Oct 19, 7:06 AM
Unknown Object (File)
Sat, Oct 19, 7:06 AM
Unknown Object (File)
Sat, Oct 19, 7:05 AM
Unknown Object (File)
Sat, Oct 19, 6:49 AM
Unknown Object (File)
Fri, Oct 11, 2:45 AM
Unknown Object (File)
Oct 2 2024, 8:59 PM
Subscribers

Details

Summary

Currently ip6_input() calls in6ifa_ifwithaddr() for
every local packet, in order to check if the target ip
belongs to the local ifa in proper state and increase
its counters.

in6ifa_ifwithaddr() references found ifa.
With epoch changes, both ip6_input() and all other current callers
of in6ifa_ifwithaddr() do not need this reference
anymore, as epoch provides stability guarantee.

Given that, update in6ifa_ifwithaddr() to allow
it to return ifa without referencing it, while preserving
option for getting referenced ifa if so desired.

Note: depends on D28647.

Diff Detail

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