Page MenuHomeFreeBSD

Remove ifa_list, use ifa_link instead
ClosedPublic

Authored by kevlo on Sep 27 2016, 1:14 PM.
Tags
None
Referenced Files
F136638779: D8051.diff
Tue, Nov 18, 4:57 PM
F136634052: D8051.id.diff
Tue, Nov 18, 4:26 PM
F136593689: D8051.id20741.diff
Tue, Nov 18, 12:17 PM
F136593493: D8051.id20768.diff
Tue, Nov 18, 12:15 PM
F136582422: D8051.diff
Tue, Nov 18, 11:10 AM
F136579001: D8051.id20768.diff
Tue, Nov 18, 10:51 AM
F136576303: D8051.id20741.diff
Tue, Nov 18, 10:31 AM
F136576289: D8051.id.diff
Tue, Nov 18, 10:30 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

Lint
Lint Skipped
Unit
Tests Skipped

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.