diff options
author | Lionel Landwerlin <[email protected]> | 2017-08-29 10:41:27 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2017-11-28 13:34:04 +0000 |
commit | 349712018bb05d7709bb90af194c544cb9e3474d (patch) | |
tree | 964a63bcc3428e128a882ece2de5af0a4cb09a86 /src/intel/common/gen_debug.h | |
parent | 27ee83eaf7e9976d3df77417eb20e2e1ff3750ff (diff) |
i965: add a debug option to disable oa config loading
This provides a good way to verify we haven't broken using the perf
driver on older kernels (which don't have the oa config loading
mechanism).
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/intel/common/gen_debug.h')
-rw-r--r-- | src/intel/common/gen_debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/common/gen_debug.h b/src/intel/common/gen_debug.h index e418e3fb166..ad62054ff2a 100644 --- a/src/intel/common/gen_debug.h +++ b/src/intel/common/gen_debug.h @@ -69,7 +69,7 @@ extern uint64_t INTEL_DEBUG; #define DEBUG_OPTIMIZER (1ull << 25) #define DEBUG_ANNOTATION (1ull << 26) #define DEBUG_NO8 (1ull << 27) -/* Hole - feel free to reuse (1ull << 28) */ +#define DEBUG_NO_OACONFIG (1ull << 28) #define DEBUG_SPILL_FS (1ull << 29) #define DEBUG_SPILL_VEC4 (1ull << 30) #define DEBUG_CS (1ull << 31) |