Page MenuHomeFreeBSD

Remove ifa_list, use ifa_link instead
ClosedPublic

Authored by kevlo on Sep 27 2016, 1:14 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Sep 27, 6:05 PM
Unknown Object (File)
Sep 10 2025, 3:52 AM
Unknown Object (File)
Sep 6 2025, 6:11 PM
Unknown Object (File)
Jul 13 2025, 12:17 AM
Unknown Object (File)
Jun 20 2025, 10:23 PM
Unknown Object (File)
Jun 18 2025, 3:50 PM
Unknown Object (File)
Jun 16 2025, 10:40 PM
Unknown Object (File)
Jun 16 2025, 12:11 PM
Subscribers
None

Details

Summary

There are few source code (only pf and sctp) that use ifa_list.
This patch uses ifa_link (structure field) instead of ifa_list
(macro alias for it) and removes ifa_list.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

kevlo retitled this revision from to Remove ifa_list, use ifa_link instead.
kevlo updated this object.
kevlo edited the test plan for this revision. (Show Details)
kevlo added reviewers: rrs, tuexen.

Forgot to mention, prefer if_addrhead (FreeBSD) to if_addrlist (BSD compat)
naming for the interface address list while I'm here.

tuexen edited edge metadata.

Drop me a note when you commit it and indicate if you will MFC it.

This revision is now accepted and ready to land.Sep 27 2016, 3:11 PM
This revision was automatically updated to reflect the committed changes.

Drop me a note when you commit it and indicate if you will MFC it.

Committed in r306407, thanks.