OpenBSD cvs log

created 2025-03-30T02:03:23Z
begin 2025-03-26T00:00:00Z
end 2025-03-27T00:00:00Z
path src/sys
commits 2

date 2025-03-26T13:57:35Z
author stsp
files src/sys/dev/pci/if_ice.c log diff annotate
message fix crash with ifp->if_linkstatetask NULL pointer during ice(4) attachment

My earlier fix for ice(4) device attachment crashes was imperfect.
We must ensure that ifattach() gets called before if_link_state_change(),
such that ifp->if_linkstatetask gets set beforehand.

This crash could be triggered by having multiple ice(4) interfaces and
making ice_attach_hook() sleep somehow. Which will always happen as soon
as we try loading firmware.

date 2025-03-26T20:30:42Z
author kirill
files src/sys/sys/videoio.h log diff annotate
message sys/videoio.h: sync with media/v6.15-1 of linux-media

Backported definition of:
- V4L2_CID_USER_UVC_BASE
- V4L2_CTRL_FLAG_HAS_WHICH_MIN_MAX, V4L2_CTRL_WHICH_MIN_VAL and
V4L2_CTRL_WHICH_MAX_VAL
- V4L2_CTRL_TYPE_RECT

Based on commits:
- https://github.com/torvalds/linux/commit/2dc768d71b45a3a40ea15805667ed662127eeefd
- https://github.com/torvalds/linux/commit/a5bd42aafb068427ecf4d6d34fa023944f211922
- https://github.com/torvalds/linux/commit/3b9d7340cfac91f8a2ac237a6787f521f1440ca3

OK: mglocker@