aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/vmxnet3/input.c
AgeCommit message (Expand)AuthorFilesLines
2024-03-12misc: remove GNU Indent directivesDamjan Marion1-2/+0
2023-10-14feature: remove unused codeDamjan Marion1-2/+2
2022-02-15tcp: Do not include the tcp_packet.h file in the ip4_packet.hNeale Ranns1-0/+1
2021-10-01devices: add support for pseudo header checksumMohsin Kazmi1-8/+0
2021-05-06vlib: fix the offload flags sizeMohsin Kazmi1-1/+1
2021-02-15vlib: refactor checksum offload supportMohsin Kazmi1-9/+12
2021-01-21interface: rx queue infra rework, part oneDamjan Marion1-12/+12
2020-11-09vlib: fix trace number accountingBenoƮt Ganne1-11/+12
2020-09-16vmxnet3: gso fixesSteven Luong1-7/+13
2019-09-24vlib: add flag to explicitelly mark nodes which can init per-node packet traceDamjan Marion1-0/+1
2019-09-02vmxnet3: interface rx counter not increment correctlySteven Luong1-1/+1
2019-08-30vmxnet3: per interface gso supportSteven Luong1-1/+1
2019-08-02vmxnet3: don't bypass ethernet_inputSteven Luong1-14/+5
2019-05-21vmxnet3: gso_l4_hdr_sz is not set correctlySteven Luong1-16/+24
2019-02-26vmxnet3: lro/tso and rx checksumSteven Luong1-24/+136
2018-11-07vmxnet3: reduce calling vmxnet3_reg_write_inlineSteven1-2/+3
2018-10-10vmxnet3: better error handlingSteven1-11/+26
2018-10-03vmxnet3: coverity woeSteven1-3/+6
2018-10-03vmxnet3: error handlingSteven1-19/+41
2018-09-25vmxnet3: guard against array overflowSteven1-2/+3
2018-09-20vmxnet3: invoke vlib_buffer_enqueue_to_next() with the wrong buffers for chai...Steven1-7/+8
2018-09-18vmxnet3: add support for "non-default" next nodeSteven1-2/+53
2018-09-14vmxnet3 device driverSteven Luong1-0/+295
_index); pg_gre_header_init (h); pg_edit_set_fixed (&h->flags_and_version, 0); error = 1; if (!unformat (input, "%U", unformat_pg_edit, unformat_gre_protocol_net_byte_order, &h->protocol)) goto done; { gre_main_t *pm = &gre_main; gre_protocol_info_t *pi = 0; pg_node_t *pg_node = 0; if (h->protocol.type == PG_EDIT_FIXED) { u16 t = *(u16 *) h->protocol.values[PG_EDIT_LO]; pi = gre_get_protocol_info (pm, clib_net_to_host_u16 (t)); if (pi && pi->node_index != ~0) pg_node = pg_get_node (pi->node_index); } if (pg_node && pg_node->unformat_edit && unformat_user (input, pg_node->unformat_edit, s)) ; } error = 0; done: if (error) pg_free_edit_group (s); return error == 0; } /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */