diff options
author | Lionel Landwerlin <[email protected]> | 2018-08-26 13:52:47 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2019-03-07 15:08:31 +0000 |
commit | ec526d6ba0bdb996416b7479330a424ff737df81 (patch) | |
tree | 6b8787d8b6a816dfc818228b40128b316457ddb6 /src/intel/tools/aubinator_error_decode.c | |
parent | 3e8d5b5ed48aaa37d8b83c2203f45ce55d557351 (diff) |
intel/decoders: add address space indicator to get BOs
Some commands like MI_BATCH_BUFFER_START have this indicator.
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Rafael Antognolli <[email protected]>
Diffstat (limited to 'src/intel/tools/aubinator_error_decode.c')
-rw-r--r-- | src/intel/tools/aubinator_error_decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/tools/aubinator_error_decode.c b/src/intel/tools/aubinator_error_decode.c index ea822d0161b..bd578de48e4 100644 --- a/src/intel/tools/aubinator_error_decode.c +++ b/src/intel/tools/aubinator_error_decode.c @@ -381,7 +381,7 @@ static int ascii85_decode(const char *in, uint32_t **out, bool inflate) } static struct gen_batch_decode_bo -get_gen_batch_bo(void *user_data, uint64_t address) +get_gen_batch_bo(void *user_data, bool ppgtt, uint64_t address) { for (int s = 0; s < num_sections; s++) { if (sections[s].gtt_offset <= address && |