Page MenuHomeFreeBSD

iflib: Create led(4) devices
Needs ReviewPublic

Authored by kbowling on Oct 9 2021, 3:14 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Nov 20, 5:03 PM
Unknown Object (File)
Sun, Nov 16, 3:54 AM
Unknown Object (File)
Nov 3 2025, 1:47 AM
Unknown Object (File)
Oct 27 2025, 3:47 AM
Unknown Object (File)
Oct 26 2025, 5:19 AM
Unknown Object (File)
Oct 26 2025, 5:11 AM
Unknown Object (File)
Oct 24 2025, 8:58 PM
Unknown Object (File)
Oct 22 2025, 9:55 PM

Details

Reviewers
markj
shurd
Group Reviewers
Intel Networking
iflib
Summary

If the driver defines an led_func, have the framework create them during attach.

PR: 246885
Reported by: Jose Luis Duran <jlduran@gmail.com>

Test Plan

Tested on I350:
echo "f3" > /dev/led/igb0
echo "0" > /dev/led/igb0

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

Jose submitted a variant where the driver (e1000 in this case) calls the iflib_led_create() function in its post attach. I am open to either approach if anyone has any thoughts one way or the other.

I prefer this approach.

Regardless of which patch you choose, on my home router (2 i211-based NICs), identifying /dev/led/igb0 works, but /dev/led/igb1 do not.

Nevertheless, the LED devices are created as well. Thank you!

Seems ok. This kind of reflection looks a bit hacky but I see it used elsewhere. Probably we should have some kobj.h helper to do it.

sys/net/iflib.c
5253

And on the next line too.

5257