Page MenuHomeFreeBSD

linsysfs(4): Refactor to avoid referencing an unstable interfaces
ClosedPublic

Authored by dchagin on Feb 26 2023, 9:44 AM.
Referenced Files
Unknown Object (File)
Wed, Nov 6, 9:25 PM
Unknown Object (File)
Sat, Oct 26, 4:17 PM
Unknown Object (File)
Wed, Oct 23, 11:02 PM
Unknown Object (File)
Oct 4 2024, 11:19 AM
Unknown Object (File)
Oct 2 2024, 10:20 AM
Unknown Object (File)
Sep 28 2024, 10:13 PM
Unknown Object (File)
Sep 21 2024, 4:51 AM
Unknown Object (File)
Sep 19 2024, 2:05 AM
Subscribers

Details

Summary

Enter the net epoch when traversing a list of interfaces. For that
split the ifname_linux_to_bsd() function on two counterparts, where
the ifname_linux_to_ifp() intended to use in epoch, while the
ifname_linux_to_bsd() intended to be a self-contained.
Until the linux_ioctl_coket() function is refactored, the
ifname_linux_to_bsd() temporarily returns interface outside
of the epoch.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 50098
Build 46990: arc lint + arc unit

Event Timeline

melifaro added inline comments.
sys/compat/linsysfs/linsysfs.c
214

Maybe the other way round? In that case, you don't need to have an additional epoch exit.

215

Nit: IIRC sbuf_printf() cannot sleep, so it's worth writing ifindex inside the epoch and avoid using a temporary variable.

233

Nit: same as previous one: do everything inside ifp != NULL condition

This revision is now accepted and ready to land.Feb 27 2023, 11:24 AM

done, btw, you are right, sbuf here don't sleep,
also vnet context stored as V_ifnet is not iniitalized without it

This revision now requires review to proceed.Mar 2 2023, 9:20 AM
This revision was not accepted when it landed; it landed in state Needs Review.Mar 4 2023, 9:13 AM
This revision was automatically updated to reflect the committed changes.