Commit a5dfb471 authored by Thomas Hellström's avatar Thomas Hellström Committed by Rodrigo Vivi

drm/xe: Use a small negative initial seqno

Causes an early 32-bit wrap and may thus help CI catch wrapping errors
that may otherwise not show early enough.
Signed-off-by: default avatarThomas Hellström <thomas.hellstrom@linux.intel.com>
Reviewed-by: default avatarMatthew Auld <matthew.auld@intel.com>
Signed-off-by: default avatarRodrigo Vivi <rodrigo.vivi@intel.com>
parent 155c9165
...@@ -8,7 +8,8 @@ ...@@ -8,7 +8,8 @@
#include "xe_hw_fence_types.h" #include "xe_hw_fence_types.h"
#define XE_FENCE_INITIAL_SEQNO 1 /* Cause an early wrap to catch wrapping errors */
#define XE_FENCE_INITIAL_SEQNO (-127)
int xe_hw_fence_module_init(void); int xe_hw_fence_module_init(void);
void xe_hw_fence_module_exit(void); void xe_hw_fence_module_exit(void);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment