udev-dev: enumerate DRM primary nodes via hw.dri sysctl in jails#18
Open
Defenso-QTH wants to merge 1 commit into
Open
udev-dev: enumerate DRM primary nodes via hw.dri sysctl in jails#18Defenso-QTH wants to merge 1 commit into
Defenso-QTH wants to merge 1 commit into
Conversation
In a FreeBSD jail devfs may not expose /dev/dri/card* even though the hw.dri.* sysctl subtree is readable. Add a sysctl-based enumeration like the one for input devices. hw.dri only has entries for primary nodes (no render nodes), and the index N maps directly to the /dev/dri/cardN path that drm-kmod creates, so no type filtering or path translation is needed. Refactor the common OID tree-walk into enumerate_sysctl_units() to avoid duplication with udev_dev_enumerate_evdev_sysctl. Sponsored by: Defenso Signed-off-by: Quentin Thébault <quentin.thebault@defenso.fr>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In a FreeBSD jail devfs may not expose
/dev/dri/card*even though thehw.dri.*sysctl subtree is readable. Add a sysctl-based enumeration like the one for input devices.hw.dri only has entries for primary nodes (no render nodes), and the index N maps directly to the /dev/dri/cardN path that drm-kmod creates, so no type filtering or path translation is needed.
Refactor the common OID tree-walk into enumerate_sysctl_units() to avoid duplication with udev_dev_enumerate_evdev_sysctl.
Sponsored by: Defenso