CVSROOT: /cvs Module name: src Changes by: [email protected] 2021/05/16 18:17:27
Modified files:
sys/dev/pci/drm/include/linux: workqueue.h
Log message:
return early if work is cancelled before being scheduled
cheloha@ noticed that task_del(9) was being called with a NULL taskq
from inteldrm(4), which was not noticed as the function returns early
from testing a flag in the task. This situation occurs when work is
cancelled before it is scheduled.
ok kettenis@ cheloha@
