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)
May 2 2024, 8:07 AM
Unknown Object (File)
May 2 2024, 8:06 AM
Unknown Object (File)
May 2 2024, 8:05 AM
Unknown Object (File)
May 1 2024, 11:56 PM
Unknown Object (File)
Dec 20 2023, 12:06 AM
Unknown Object (File)
Oct 22 2023, 9:59 PM
Unknown Object (File)
Aug 8 2023, 1:08 AM
Unknown Object (File)
Aug 8 2023, 1:07 AM
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.