CVSROOT: /cvs Module name: src Changes by: [email protected] 2020/03/15 04:14:49
Modified files:
sys/dev/pci/drm: drm_linux.c
Log message:
kthread_park() and kthread_stop() don't need PCATCH the linux API does
not interrupt either and not checking the return value of tsleep_nsec()
could actually result in a infinite loop if a signal is pending.
Remove PCATCH also from kthread_parkme() for the same reason but this
function is only called for kthreads and those have no signals anyway.
OK kettenis@
