Module: Mesa Branch: main Commit: a2a2624a8fae4c14ff6ed3a41e630ea5a9cf9e3f URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a2a2624a8fae4c14ff6ed3a41e630ea5a9cf9e3f
Author: Lionel Landwerlin <lionel.g.landwer...@intel.com> Date: Mon Apr 3 15:04:05 2023 +0300 intel/aubinator_error_decode: bump max buffers to 1024 Signed-off-by: Lionel Landwerlin <lionel.g.landwer...@intel.com> Acked-by: Tapani Pälli <tapani.pa...@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21167> --- src/intel/tools/aubinator_error_decode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/tools/aubinator_error_decode.c b/src/intel/tools/aubinator_error_decode.c index bc6861d0bb8..5addc25cdb5 100644 --- a/src/intel/tools/aubinator_error_decode.c +++ b/src/intel/tools/aubinator_error_decode.c @@ -291,7 +291,7 @@ struct section { size_t data_offset; }; -#define MAX_SECTIONS 256 +#define MAX_SECTIONS 1024 static unsigned num_sections; static struct section sections[MAX_SECTIONS];