Page MenuHomeFreeBSD

Remove ifa_list, use ifa_link instead
ClosedPublic

Authored by kevlo on Sep 27 2016, 1:14 PM.
Tags
None
Referenced Files
F170491290: D8051.id20741.diff
Sat, Sep 5, 2:05 AM
F170476744: D8051.id.diff
Sat, Sep 5, 12:23 AM
Unknown Object (File)
Fri, Sep 4, 10:36 AM
Unknown Object (File)
Fri, Sep 4, 7:54 AM
Unknown Object (File)
Fri, Sep 4, 7:22 AM
Unknown Object (File)
Thu, Sep 3, 4:06 PM
Unknown Object (File)
Thu, Sep 3, 3:59 PM
Unknown Object (File)
Wed, Sep 2, 1:19 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.