aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/ip/ip_frag.c
AgeCommit message (Expand)AuthorFilesLines
2021-05-01vlib: refactor trajectory trace debug featureBenoƮt Ganne1-1/+0
2021-02-15vlib: refactor checksum offload supportMohsin Kazmi1-1/+1
2019-11-11ip: functional interface to ip fragmentationOle Troan1-119/+62
2019-11-05ip: Fragmentation fixesNeale Ranns1-0/+30
2019-10-09mpls: support fragmentation of mpls output packetRajesh Goel1-2/+38
2019-02-09buffers: fix typoDamjan Marion1-1/+1
2019-02-06buffers: make buffer data size configurable from startup configDamjan Marion1-1/+2
2019-01-20buffers: don't init metadata, as it is already initializedDamjan Marion1-3/+0
2018-12-03Copying QoS Bits when fragmented, so that marking can happen properly also cl...Vijayabhaskar Katamreddy1-0/+7
2018-11-14Remove c-11 memcpy checks from perf-critical codeDave Barach1-4/+4
2018-10-22Fix buffer overflow when fragmenting packets (VPP-1383)Juraj Sloboda1-2/+3
2018-09-27IPIP and IPv6 fragmentationOle Troan1-277/+185
2018-08-17VPP-1392: VXLAN fails with IP fragmentationOle Troan1-0/+2
2018-08-10IP fragmentation buffer chains, part 2.Ole Troan1-19/+21
2018-08-10IP fragmentation to handle buffer chains.Ole Troan1-79/+106
2018-07-30Reverse the logic of flagging malformed packet in fragmentation code to allow...Rajesh Saluja1-1/+1
2018-06-29Removing the static keyword do_fragment routines, so that could be accessed o...Vijayabhaskar Katamreddy1-2/+2
2018-06-14MTU: IP fragmentation added to ip4-rewrite and ip6-rewriteOle Troan1-0/+12
2018-01-29DRAFT ip4/6_frag to support DPO Style based Next NodeVijayabhaskar Katamreddy1-0/+14
2017-12-15Fix icmp/udp/tcp punt/drop pathsVijayabhaskar Katamreddy1-11/+14
2016-12-28Reorganize source tree to use single autotools instanceDamjan Marion1-0/+581
_vlib_error_funcs_h #define included_vlib_error_funcs_h #include <vlib/node_funcs.h> always_inline void vlib_error_elog_count (vlib_main_t * vm, uword counter, uword increment) { if (VLIB_ELOG_MAIN_LOOP > 0 && increment > 0) { elog_main_t *em = &vm->elog_main; elog (em, vec_elt_at_index (vm->error_elog_event_types, counter), increment); } } always_inline void vlib_error_count (vlib_main_t * vm, uword node_index, uword counter, uword increment) { vlib_node_t *n = vlib_get_node (vm, node_index); vlib_error_main_t *em = &vm->error_main; ASSERT (counter < n->n_errors); counter += n->error_heap_index; ASSERT (counter < vec_len (em->counters)); em->counters[counter] += increment; vlib_error_elog_count (vm, counter, increment); } /* Drop all buffers in frame with given error code. */ uword vlib_error_drop_buffers (vlib_main_t * vm, vlib_node_runtime_t * node, u32 * buffers, u32 next_buffer_stride, u32 n_buffers, u32 error_next_index, u32 error_node, u32 error_code); #endif /* included_vlib_error_funcs_h */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */