summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/drm/scheduler (follow)
Commit message (Collapse)AuthorAgeFilesLines
* don't multiply ticks by hz when result is compared to jiffiesjsg2020-10-141-1/+1
| | | | | Used in the return value of drm_sched_suspend_timeout() which nothing currently uses.
* Align pool items on CACHELINESIZE when replacing linux kmem_cache withjsg2020-10-111-1/+1
| | | | | | SLAB_HWCACHE_ALIGN flag. tested by semarie@
* Change locks which don't use spin_lock_irq() or spin_lock_irqsave()jsg2020-07-112-3/+3
| | | | | | from IPL_TTY to IPL_NONE. From Benjamin Baier
* update drm to linux 5.7jsg2020-06-085-992/+1491
| | | | | | | | | | adds kernel support for amdgpu: vega20, raven2, renoir, navi10, navi14 inteldrm: icelake, tigerlake Thanks to the OpenBSD Foundation for sponsoring this work, kettenis@ for helping, patrick@ for helping adapt rockchip drm and many developers for testing.
* Cleanup <sys/kthread.h> and <sys/proc.h> includes.mpi2020-02-181-2/+0
| | | | | | | Do not include <sys/kthread.h> where it is not needed and stop including <sys/proc.h> in it. ok visa@, anton@
* Replace p_xstat with ps_xexit and ps_xsigguenther2019-12-111-5/+6
| | | | | | | | | Convert those to a consolidated status when needed in wait4(), kevent(), and sysctl() Pass exit code and signal separately to exit1() (This also serves as prep for adding waitid(2)) ok mpi@
* drm_sched_entity_flush() doesn't care about specific threads, so justguenther2019-11-291-4/+4
| | | | | | track the process (and not the original thread of the process). ok jsg@ kettenis@
* Implement Linux kthread interfaces.kettenis2019-07-101-17/+0
| | | | ok jsg@
* add amdgpu from linux 4.19.44 for recent AMD Radeon partsjsg2019-05-213-0/+1283
committing now so this can be worked on in tree Thanks to the OpenBSD Foundation for sponsoring this work and kettenis@ for helping.