OpenBSD cvs log

created 2020-12-01T16:11:52Z
begin 2020-10-11T00:00:00Z
end 2020-10-12T00:00:00Z
path src/sys
commits 4

date 2020-10-11T05:45:33Z
author jsg
files src/sys/dev/pci/drm/amd/amdgpu/amdgpu_fence.c log diff annotate
src/sys/dev/pci/drm/amd/amdgpu/amdgpu_sync.c log diff annotate
src/sys/dev/pci/drm/i915/i915_active.c log diff annotate
src/sys/dev/pci/drm/i915/i915_buddy.c log diff annotate
src/sys/dev/pci/drm/i915/i915_request.c log diff annotate
src/sys/dev/pci/drm/i915/i915_scheduler.c log diff annotate
src/sys/dev/pci/drm/i915/i915_vma.c log diff annotate
src/sys/dev/pci/drm/i915/gem/i915_gem_object.c log diff annotate
src/sys/dev/pci/drm/i915/gt/intel_context.c log diff annotate
src/sys/dev/pci/drm/include/linux/processor.h log diff annotate
src/sys/dev/pci/drm/include/linux/slab.h log diff annotate
src/sys/dev/pci/drm/scheduler/sched_fence.c log diff annotate
message Align pool items on CACHELINESIZE when replacing linux kmem_cache with
SLAB_HWCACHE_ALIGN flag.

tested by semarie@

date 2020-10-11T07:05:28Z
author mpi
files src/sys/dev/ic/ar5008.c log diff annotate
src/sys/dev/ic/ar9003.c log diff annotate
src/sys/dev/ic/ath.c log diff annotate
src/sys/dev/ic/athnvar.h log diff annotate
src/sys/dev/ic/athvar.h log diff annotate
src/sys/dev/ic/rt2860.c log diff annotate
src/sys/dev/ic/rt2860var.h log diff annotate
src/sys/dev/pci/if_iwm.c log diff annotate
src/sys/dev/pci/if_iwmvar.h log diff annotate
src/sys/dev/pci/if_iwn.c log diff annotate
src/sys/dev/pci/if_iwnvar.h log diff annotate
src/sys/dev/pci/if_iwx.c log diff annotate
src/sys/dev/pci/if_iwxvar.h log diff annotate
src/sys/dev/pci/if_wpi.c log diff annotate
message Stop exporting `wt_hwqueue' now that drivers don't advertise it.

Pointed by and ok jsg@

date 2020-10-11T07:05:29Z
author mpi
files src/sys/dev/pci/if_wpivar.h log diff annotate
src/sys/dev/usb/if_run.c log diff annotate
src/sys/dev/usb/if_runvar.h log diff annotate
message Stop exporting `wt_hwqueue' now that drivers don't advertise it.

Pointed by and ok jsg@

date 2020-10-11T07:11:59Z
author mpi
files src/sys/kern/kern_event.c log diff annotate
src/sys/sys/event.h log diff annotate
message Refactor kqueue_scan() to use a context: a "kqueue_scan_state struct".

The struct keeps track of the end point of an event queue scan by
persisting the end marker. This will be needed when kqueue_scan() is
called repeatedly to complete a scan in a piecewise fashion.

Extracted from a previous diff from visa@.

ok visa@, anton@