created | 2025-02-23T08:10:48Z |
---|---|
begin | 2025-02-21T00:00:00Z |
end | 2025-02-22T00:00:00Z |
path | src/sys |
commits | 3 |
date | 2025-02-21T03:34:10Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/drm_linux.c | log | diff | annotate |
message | use BACKLIGHT_POWER defines for power properties; no functional change |
date | 2025-02-21T06:20:12Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_gre.c | log | diff | annotate |
src/sys/net/ifq.c | log | diff | annotate | |
message |
replace "if (!task_del) taskq_barrier" with "taskq_del_barrier". as per src/sys/kern/kern_task.c r1.36, it's possible for a task to be re-added while it's currently running. in this situation the "if (!task_del)" skips the barrier but doesn't do anything about the currently running code, which taskq_del_barrier properly handles. ---------------------------------------------------------------------- |
date | 2025-02-21T22:21:20Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/net/route.c | log | diff | annotate |
message |
Move kassert from resolve to add case in rtrequest(). In case RTM_RESOLVE there is already an assertion about ifa_ifp != NULL. Move it down after the fallthrough to cover also RTM_ADD. This should give a better hint from syzkaller what is going wrong. Reported-by: [email protected] OK claudio@ |