From 240e6dbc9e989f77f75bdb3ba4c41fb1df49d174 Mon Sep 17 00:00:00 2001 From: Jan Musial Date: Tue, 25 Jun 2019 15:44:05 +0200 Subject: [PATCH] Fix too short thread name size in CAS Signed-off-by: Jan Musial --- modules/cas_cache/threads.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cas_cache/threads.c b/modules/cas_cache/threads.c index 20b7245..9be381e 100644 --- a/modules/cas_cache/threads.c +++ b/modules/cas_cache/threads.c @@ -6,7 +6,7 @@ #include "threads.h" #include "cas_cache.h" -#define MAX_THREAD_NAME_SIZE 16 +#define MAX_THREAD_NAME_SIZE 48 struct cas_thread_info { atomic_t stop;