misc: acrn_trace: enlarge DEV_PATH_LEN

Now ACRN support platform which CPU numbers are large than 10. So the old value
for DEV_PATH_LEN is not enough (18 is not enough for /dev/acrn_trace_xx).

Tracked-On: #6572
Signed-off-by: Fei Li <fei1.li@intel.com>
This commit is contained in:
Fei Li 2021-09-15 16:17:58 +08:00 committed by wenlingz
parent 0a515ab2ea
commit 730a275ecc
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
#define TRACE_FILE_NAME_LEN 32 #define TRACE_FILE_NAME_LEN 32
#define TRACE_FILE_DIR_LEN (TRACE_FILE_NAME_LEN - 3) #define TRACE_FILE_DIR_LEN (TRACE_FILE_NAME_LEN - 3)
#define TRACE_FILE_ROOT "acrntrace/" #define TRACE_FILE_ROOT "acrntrace/"
#define DEV_PATH_LEN 18 #define DEV_PATH_LEN 20
#define TIME_STR_LEN 16 #define TIME_STR_LEN 16
#define CMD_MAX_LEN 48 #define CMD_MAX_LEN 48