From 255554fd7e75a803569e311c28e8ec8da8e7a286 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Thu, 18 Feb 2021 21:35:23 -0800 Subject: svm: return chunks to slice on fifo detach Ensure chunk alloc distribution is maintained on fifo detach. Type: fix Signed-off-by: Florin Coras Change-Id: I5aa5524e06a703dc50e90da6d177663d2d997aa4 --- src/svm/fifo_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/svm/fifo_types.h') diff --git a/src/svm/fifo_types.h b/src/svm/fifo_types.h index 7b844f00bfe..a1b57748e09 100644 --- a/src/svm/fifo_types.h +++ b/src/svm/fifo_types.h @@ -109,7 +109,7 @@ typedef struct _svm_fifo struct _svm_fifo *next; /**< prev in active chain */ struct _svm_fifo *prev; /**< prev in active chain */ - svm_fifo_chunk_t **chunks_at_attach; /**< chunks to be accounted at detach */ + svm_fifo_chunk_t *chunks_at_attach; /**< chunks to be accounted at detach */ #if SVM_FIFO_TRACE svm_fifo_trace_elem_t *trace; -- cgit 1.2.3-korg