Skip to content

Commit

Permalink
dpdk: add more memory to DPDK
Browse files Browse the repository at this point in the history
This patch closes #455.
  • Loading branch information
mengxiang0811 authored and AltraMayor committed Jul 10, 2023
1 parent d00f998 commit 133a51e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config/rte_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
/* EAL defines */
#define RTE_MAX_HEAPS 32
#define RTE_MAX_MEMSEG_LISTS 128
#define RTE_MAX_MEMSEG_PER_LIST 8192
#define RTE_MAX_MEM_MB_PER_LIST 32768
#define RTE_MAX_MEMSEG_PER_TYPE 32768
#define RTE_MAX_MEM_MB_PER_TYPE 65536
#define RTE_MAX_MEMSEG_PER_LIST (8192 << 1)
#define RTE_MAX_MEM_MB_PER_LIST (32768 << 1)
#define RTE_MAX_MEMSEG_PER_TYPE (32768 << 1)
#define RTE_MAX_MEM_MB_PER_TYPE (65536 << 1)
#define RTE_MAX_MEMZONE 2560
#define RTE_MAX_TAILQ 32
#define RTE_LOG_DP_LEVEL RTE_LOG_INFO
Expand Down

0 comments on commit 133a51e

Please sign in to comment.