Skip to content

Commit 21df54a

Browse files
committed
dpdk - update DEFAULT_MBUF_BURST_SIZE to 64 which is default value for input packet queue
1 parent b1eaf0e commit 21df54a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

input/dpdk-ring.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
namespace ipxp {
4141
class DpdkRingOptParser : public OptionsParser {
4242
private:
43-
static constexpr size_t DEFAULT_MBUF_BURST_SIZE = 256;
43+
static constexpr size_t DEFAULT_MBUF_BURST_SIZE = 64;
4444
size_t pkt_buffer_size_;
4545

4646
std::string ring_name_;

input/dpdk.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ namespace ipxp {
4343

4444
class DpdkOptParser : public OptionsParser {
4545
private:
46-
static constexpr size_t DEFAULT_MBUF_BURST_SIZE = 256;
46+
static constexpr size_t DEFAULT_MBUF_BURST_SIZE = 64;
4747
static constexpr size_t DEFAULT_MBUF_POOL_SIZE = 16384;
4848
size_t pkt_buffer_size_;
4949
size_t pkt_mempool_size_;

0 commit comments

Comments
 (0)