From 4035d4e225b0f0a62e5cc06a47f4cd1cc27dfd3a Mon Sep 17 00:00:00 2001 From: Jan Musial Date: Tue, 25 Jun 2019 15:43:51 +0200 Subject: [PATCH 1/2] Fix cleaner leaking caches Signed-off-by: Jan Musial --- ocf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ocf b/ocf index db734c2..2c5b37b 160000 --- a/ocf +++ b/ocf @@ -1 +1 @@ -Subproject commit db734c23594932a00d8386e9021353a20842c8ad +Subproject commit 2c5b37bd1185fd261cbf359752bc3896f87c0d22 From 240e6dbc9e989f77f75bdb3ba4c41fb1df49d174 Mon Sep 17 00:00:00 2001 From: Jan Musial Date: Tue, 25 Jun 2019 15:44:05 +0200 Subject: [PATCH 2/2] 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;