Skip to content

Commit 101dd49

Browse files
authored
Fix: Changed maximum allowed number of DMA devices supported by MTL (#1340)
Changed maximum allowed number of DMA devices supported by MTL to avoid deadlock on newer platforms with more than 8 DMA devices available. This is a temporary solution for a quick fix of the issue. Dynamic device allocation will be available soon. Signed-off-by: Wilczynski, Andrzej <[email protected]>
1 parent dc7a477 commit 101dd49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/mtl_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ extern "C" {
9191
/**
9292
* Max allowed number of dma devs
9393
*/
94-
#define MTL_DMA_DEV_MAX (8)
94+
#define MTL_DMA_DEV_MAX (32)
9595

9696
/**
9797
* Max length of a pcap dump filename

0 commit comments

Comments
 (0)