diff options
author | Lionel Landwerlin <[email protected]> | 2018-09-04 17:33:45 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2019-03-08 11:01:14 +0000 |
commit | a036eac029da21d28d0c90a05669d7c7694eb80b (patch) | |
tree | e9cfc94ffec7563cee9faa795a57ea8995e91e1b /src/intel/tools/error2aub.c | |
parent | c619ea945d6f3f0b2dfc87616f0183a78fd42049 (diff) |
intel/error2aub: deal with GuC log buffer
When Guc is enabled, the error state will contain a "global" buffer
for the GuC log buffer.
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Rafael Antognolli <[email protected]>
Diffstat (limited to 'src/intel/tools/error2aub.c')
-rw-r--r-- | src/intel/tools/error2aub.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/tools/error2aub.c b/src/intel/tools/error2aub.c index dd6717def58..33d24164b76 100644 --- a/src/intel/tools/error2aub.c +++ b/src/intel/tools/error2aub.c @@ -213,6 +213,7 @@ engine_from_name(const char *engine_name, { "vcs", I915_ENGINE_CLASS_VIDEO }, { "vecs", I915_ENGINE_CLASS_VIDEO_ENHANCE }, { "bcs", I915_ENGINE_CLASS_COPY }, + { "global", I915_ENGINE_CLASS_INVALID }, { NULL, I915_ENGINE_CLASS_INVALID }, }, *r; |