Page MenuHomeFreeBSD

ifnet: make V_if_index static to if.c
ClosedPublic

Authored by glebius on Dec 4 2021, 9:16 PM.
Tags
None
Referenced Files
F102006767: D33264.diff
Wed, Nov 6, 11:32 AM
Unknown Object (File)
Mon, Nov 4, 1:46 PM
Unknown Object (File)
Sun, Nov 3, 10:47 AM
Unknown Object (File)
Fri, Oct 18, 7:58 PM
Unknown Object (File)
Oct 2 2024, 8:40 AM
Unknown Object (File)
Oct 1 2024, 1:07 PM
Unknown Object (File)
Sep 23 2024, 9:12 PM
Unknown Object (File)
Sep 1 2024, 4:48 PM
Subscribers

Details

Reviewers
bz
kp
glebius
Group Reviewers
network
Summary

This requires moving net.link.generic sysctl declaration from if_mib.c
to if.c. Ideally if_mib.c needs just to be merged to if.c, but they
have different license texts.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 43143
Build 40031: arc lint + arc unit

Event Timeline

sys/net/if.c
321

I'd rather try keep the separation between it and if_mib. (Also, if.c Is huge and worth splitting by itself).

Speaking of static -
Maybe having a SYSCTL_PROC with an V_ifindex accessor function will do?

One might also consider to simply remove the variable declaration from public space and into the implementation(s) -- possibly along with a comment?

Maybe having a SYSCTL_PROC with an V_ifindex accessor function will do?

No, that won't work.

One might also consider to simply remove the variable declaration from public space and into the implementation(s) -- possibly along with a comment?

So don't make it static, remove declaration from if_var.h put the declaration into if_mib.c itself? Will work, but it will leave tempting possibility for other modules in kernel to put declaration, too. And I want to make it private to if.c.

This revision is now accepted and ready to land.Dec 7 2021, 6:04 AM