Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

update DEFAULT_MBUF_BURST_SIZE to 64 which is default value for input packet queue #206

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion input/dpdk-ring.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
namespace ipxp {
class DpdkRingOptParser : public OptionsParser {
private:
static constexpr size_t DEFAULT_MBUF_BURST_SIZE = 256;
static constexpr size_t DEFAULT_MBUF_BURST_SIZE = 64;
size_t pkt_buffer_size_;

std::string ring_name_;
Expand Down
2 changes: 1 addition & 1 deletion input/dpdk.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ namespace ipxp {

class DpdkOptParser : public OptionsParser {
private:
static constexpr size_t DEFAULT_MBUF_BURST_SIZE = 256;
static constexpr size_t DEFAULT_MBUF_BURST_SIZE = 64;
static constexpr size_t DEFAULT_MBUF_POOL_SIZE = 16384;
size_t pkt_buffer_size_;
size_t pkt_mempool_size_;
Expand Down
Loading