* TODO - update to 4.19 when released - use ddb symbols in drm_err to avoid patching prototype - initialize kernel_fb_helper_lock - review struct drm_gem_object::dma_buf for unmarked XXX drm prime - eliminate struct drm_driver::set_unique - convert ttm_bo_move_memcpy to use bus_space(9) - s/i915_pipe/pipe/g - change #ifdef NetBSD DRM_SUSER else CAP_SYS_ADMIN endif to just DRM_SUSER - figure out whether i915_gem_gtt_prepare_pages should take dmamap or pageq - [DONE] consider pagevec/stash stuff in i915_gem_gtt - bound size at 256*1024 in igp_read_bios_from_vram, amdgpu_read_bios - [DONE] eliminate ACCESS_ONCE - [DONE] eliminate setup_timer - teardown_timer in amdgpu_fence - verify every __UNCONST, __UNVOLATILE - implement module reference counting - find pairing for drm_fb_helper_prepare - figure out clflushopt - fix interval trees * pullups commit 3c3559326660f5a595f992c4902d8540ec50783d Author: Taylor R Campbell Date: Sat Oct 13 06:18:50 2018 +0000 RCU pointer fixes. - Use __typeof__, not typeof. - Use membar_exit, not membar_producer. => We want a store-release, not store/store barrier. => Consider: foo->x = 42; assert(foo->x == 42); rcu_assign_pointer(globalfoo, foo); The foo->x load can be reordered past the store/store barrier (membar_producer), and happen after another thread has clobbered foo->x. - Put the evaluation of the right-hand side before the barrier. sys/external/bsd/drm2/include/linux/rcupdate.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) * pulledup commit 5df7467c7cb38539a21ee6b0c4bc55f58f098b59 Author: Taylor R Campbell Date: Thu Nov 15 06:52:31 2018 +0000 Don't try to interpret the second half of a 64-bit BAR as another one. From msaitoh@. sys/external/bsd/drm2/pci/drm_pci.c | 8 ++++++++ 1 file changed, 8 insertions(+) commit 798a50901e02e7e088089c3a1cca309083078613 Author: Taylor R Campbell Date: Tue Oct 23 03:53:16 2018 +0000 Clamp timeout to INT_MAX to avoid the bad kind of integer truncation. XXX pullup-7 XXX pullup-8 sys/external/bsd/drm2/include/linux/sched.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit b3f1b2547548901368df0e8bab154d67f87b3a6f Author: Taylor R Campbell Date: Tue Oct 23 03:51:22 2018 +0000 DELAY takes microseconds, not ticks. XXX pullup-7 XXX pullup-8 sys/external/bsd/drm2/include/linux/sched.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) [roughly] commit 3a46235247318ce4ed860e0a75a47901ba1da0f5 Author: Taylor R Campbell Date: Fri Oct 12 23:40:13 2018 +0000 Suppress some harmless clang warnings. sys/external/bsd/drm2/nouveau/files.nouveau | 1 + sys/modules/i915drmkms/Makefile | 2 ++ 2 files changed, 3 insertions(+) * Trace point exclusions - drm/amd/amdgpu/amdgpu_trace.h - drm/amd/amdgpu/amdgpu_trace_points.c - drm/drm_trace.h - drm/drm_trace_points.c - drm/i915/gvt/trace.h - drm/i915/gvt/trace_points.c - drm/i915/i915_trace.h - drm/i915/i915_trace_points.c - drm/radeon/radeon_trace.h - drm/radeon/radeon_trace_points.c - drm/scheduler/gpu_scheduler_trace.h * GPL exclusions - drm/drm_edid_load.c - drm/drm_fb_cma_helper.c - drm/drm_gem_cma_helper.c - drm/drm_gem_framebuffer_helper.c - drm/drm_lease.c - drm/drm_simple_kms_helper.c - drm/drm_sysfs.c - drm/drm_writeback.c - drm/amd/amdgpu/amdgpu_atpx_handler.c - drm/arc/ - drm/arm/ - drm/armada/ - drm/atmel-hlcdc/ - drm/bochs/ - drm/bridge/ - drm/cirrus/ - drm/etnaviv/ - drm/exynos/ - drm/fsl-dcu/ - drm/gma500/ - drm/hisilicon/ - drm/i2c/tda9950.c - drm/i2c/tda998x_drv.c - drm/i915/i915_sw_fence.c - drm/i915/i915_sw_fence.h - drm/imx/ - drm/mediatek/ - drm/meson/ - drm/mgag200/ - drm/msm/ - drm/mxsfb/ - drm/omapdrm/ - drm/panel/ - drm/pl111/ - drm/rcar-du/ - drm/rockchip/ - drm/shmobile/ - drm/sti/ - drm/stm/ - drm/sun4i/ - drm/tegra/ - drm/tilcdc/ - drm/tinydrm/ - drm/tve200/ - drm/udl/ - drm/v3d/ (no explicit licence outside questionable SPDX-License-Identifier) - drm/vc4/ (about half BSD, half GPL) - drm/vkms/ - drm/zte/ - include/drm/drm_lease.h - include/drm/drm_mipi_dsi.h - include/drm/drm_simple_kms_helper.h - include/drm/drm_writeback.h - include/drm/gma_drm.h - include/drm/tinydrm/ - include/uapi/drm/etnaviv_drm.h - include/uapi/drm/armada_drm.h - include/uapi/drm/exynos_drm.h - include/uapi/drm/omap_drm.h * Reimplement - drm/drm_gem_framebuffer_helper.c - drm/drm_lease.c - drm/drm_writeback.c (maybe?) - include/drm/drm_lease.h - include/drm/drm_writeback.h (maybe?)