From 36d90e3aa7ad9a72f7acbefa4d409a71d78bfd25 Mon Sep 17 00:00:00 2001 From: Mohammad Abdul Awal Date: Wed, 3 May 2017 08:47:00 +0100 Subject: two fixes. - allow conditional jumbo frame based on rx_max_pkt_len - fix mss size for rx_synack Change-Id: I47b7775445bc4ba647f9da9edafc4b255082e926 Signed-off-by: Mohammad Abdul Awal --- examples/l4fwd/main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'examples/l4fwd/main.c') diff --git a/examples/l4fwd/main.c b/examples/l4fwd/main.c index 37bd03e..7613a95 100644 --- a/examples/l4fwd/main.c +++ b/examples/l4fwd/main.c @@ -68,9 +68,8 @@ static char proto_name[3][10] = {"udp", "tcp", ""}; static const struct rte_eth_conf port_conf_default = { .rxmode = { - .max_rx_pkt_len = ETHER_MAX_VLAN_FRAME_LEN, .hw_vlan_strip = 1, - .jumbo_frame = 1, + .jumbo_frame = 0, }, }; -- cgit 1.2.3-korg