CVSROOT: /cvs Module name: src Changes by: [email protected] 2022/09/15 19:48:07
Modified files:
sys/dev/pci/drm/include/linux: dma-fence.h
sys/dev/pci/drm: drm_linux.c
Log message:
mask non-chain fence sequence numbers to 32-bit for comparisons
Most of drm uses 32-bit sequence numbers in fences.
dma-fence-chain opts into 64-bit comparisons.
Wrapping is handled like i915_seqno_passed() except that if the sequence
numbers are the same one is not considered later than the other.
