From: Jason Ekstrand Date: Tue, 30 Jan 2018 04:48:57 +0000 (-0800) Subject: aubinator: Multiply count by 4 to compute buffer sizes X-Git-Tag: upstream/18.1.0~2038 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=589e9db23f18cddedb2001ddcc6dae3d5ae701a3;p=platform%2Fupstream%2Fmesa.git aubinator: Multiply count by 4 to compute buffer sizes The count field is in terms of dwords and not bytes. In 7d4007d58ab7c0c1796e116b55814f8be4e699a9, I fixed one instance of this but missed another. --- diff --git a/src/intel/tools/aubinator_error_decode.c b/src/intel/tools/aubinator_error_decode.c index 2ef6595..2331114 100644 --- a/src/intel/tools/aubinator_error_decode.c +++ b/src/intel/tools/aubinator_error_decode.c @@ -386,7 +386,7 @@ get_gen_batch_bo(void *user_data, uint64_t address) { for (int s = 0; s < MAX_SECTIONS; s++) { if (sections[s].gtt_offset <= address && - address < sections[s].gtt_offset + sections[s].count) { + address < sections[s].gtt_offset + sections[s].count * 4) { return (struct gen_batch_decode_bo) { .addr = sections[s].gtt_offset, .map = sections[s].data,