From 2dbfad9f6f9dd49c80068d0f58ed11d5b6c8b913 Mon Sep 17 00:00:00 2001 From: nischaljain Date: Thu, 9 May 2024 12:33:01 +0000 Subject: [PATCH] Limit maxGxpDebugDumps to 4 DSP multicore workload can run atmost on 4 cores(in case of amalthea) thus in case of crash we will need atmost 4 core dumps. Thus limiting maxGxpDebugDumps to 4 to make sure that we will be capturing all the required core dumps for the recent crash and at the same time not inflating the bugreport size. Bug: 338583087 Change-Id: I76c5b1199c0d89f2bd9a2720dc24a7c86d057b4c --- gxp/dump_gxp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gxp/dump_gxp.cpp b/gxp/dump_gxp.cpp index 518a44a..5d9f28a 100644 --- a/gxp/dump_gxp.cpp +++ b/gxp/dump_gxp.cpp @@ -17,7 +17,7 @@ #include #include -#define maxGxpDebugDumps 3 +#define maxGxpDebugDumps 4 int main() { /* TODO(b/277094681): Set default value to false around device beta milestone. */