summaryrefslogtreecommitdiffstats
path: root/MAINTAINERS
AgeCommit message (Expand)AuthorFilesLines
2019-06-24tests: fix the MAINTAINERS fileAndrew Yourtchenko1-4/+0
2019-06-24tests: refactor VppDiedError.Paul Vinciguerra1-0/+4
2019-06-21misc: update maintainers to include VOMNeale Ranns1-0/+6
2019-06-20tap: add support to configure tap interface host MTU sizeMohsin Kazmi1-0/+9
2019-06-19misc: add bonding, lacp and vmxnet3 to MAINTAINERSSteven Luong1-0/+15
2019-06-18build: update MAINTAINERSPaul Vinciguerra1-0/+1
2019-06-18quic: fix handling of stream reset & closeNathan Skrzypczak1-0/+8
2019-06-14stats: add version field to stat segment base headerOle Troan1-0/+6
2019-06-14misc: Update MAINTAINERS to include interface commonNeale Ranns1-0/+5
2019-06-12maintainers: add vclFlorin Coras1-2/+7
2019-06-12misc: update MAINTAINERS fileDamjan Marion1-23/+159
2019-05-29Break out the broom for some cleanup workDave Barach1-18/+13
2019-05-14rdma: update MAINTAINERS and add docBenoƮt Ganne1-0/+5
2019-03-29Update MAINTAINERSDave Barach1-5/+1
2019-03-01MAINTAINERS: Add Paul Vinciguerra to test/Paul Vinciguerra1-0/+1
2019-02-22Maintainers list updateMarco Varlese1-8/+0
2018-09-04Add Load Balancer plugin MaintainersHongjun Ni1-0/+6
2018-08-29Add NSH Plugin MaintainersHongjun Ni1-3/+10
2018-08-17tls: add maintainersFlorin Coras1-4/+11
2018-08-03API: Remove legacy vlibsocket code.Ole Troan1-1/+0
2018-07-26Initial commit of Sphinx docsJohn DeNisco1-0/+5
2018-06-25MAP: Move MAP-E/T to a plugin.Ole Troan1-2/+2
2018-03-14IPIP: Add IP{v4,v6} over IP{v4,v6} configured tunnel support.Ole Troan1-5/+4
2018-01-29SRv6 dynamic proxy pluginFrancois Clad1-0/+5
2018-01-25SRv6 masquerading proxy pluginFrancois Clad1-0/+5
2018-01-24SCTP stack (RFC4960)Marco Varlese1-1/+5
2018-01-19SRv6 static proxy pluginFrancois Clad1-0/+5
2017-12-22maintainers: update emailSergio Gonzalez Monroy1-2/+1
2017-12-18Updated MAINTAINERSRadu Nicolau1-0/+2
2017-10-19Add GENEVE tunnel maintainer.Marco Varlese1-0/+4
2017-08-10Add tcp, session-layer MAINTAINERS file entriesDave Barach1-0/+8
2017-08-10acl-plugin: add MAINTAINERS entryAndrew Yourtchenko1-0/+5
2017-08-09Add PPPoE PluginHongjun Ni1-0/+5
2017-06-25Add Maintainers for Vxlan-gpe featureHongjun Ni1-3/+8
2017-06-16Add maintainer for GTPU PluginHongjun Ni1-0/+5
2017-05-30Flowprobe: Stateful flows and IPv6, L4 recordingOle Troan1-4/+4
2017-05-05First commit SR MPLSPablo Camarillo1-2/+4
2017-04-05Fix name typoSergio Gonzalez Monroy1-2/+2
2017-03-01Add MAINTAINERS fileDamjan Marion1-0/+158
ass="o">& VLIB_NODE_FLAG_TRACE) && (b0->flags & VLIB_BUFFER_IS_TRACED))) { qos_store_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t)); t->bits = qos0; } /* verify speculative enqueue, maybe switch current next frame */ vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, n_left_to_next, bi0, next0); } vlib_put_next_frame (vm, node, next_index, n_left_to_next); } return frame->n_vectors; } VLIB_NODE_FN (ip4_qos_store_node) (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame) { return (qos_store_inline (vm, node, frame, QOS_SOURCE_IP)); } VLIB_NODE_FN (ip6_qos_store_node) (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame) { return (qos_store_inline (vm, node, frame, QOS_SOURCE_IP)); } /* *INDENT-OFF* */ VLIB_REGISTER_NODE (ip4_qos_store_node) = { .name = "ip4-qos-store", .vector_size = sizeof (u32), .format_trace = format_qos_store_trace, .type = VLIB_NODE_TYPE_INTERNAL, .n_errors = 0, .n_next_nodes = 1, .next_nodes = { [0] = "ip4-drop", }, }; VNET_FEATURE_INIT (ip4_qos_store_node, static) = { .arc_name = "ip4-unicast", .node_name = "ip4-qos-store", }; VNET_FEATURE_INIT (ip4m_qos_store_node, static) = { .arc_name = "ip4-multicast", .node_name = "ip4-qos-store", }; VLIB_REGISTER_NODE (ip6_qos_store_node) = { .name = "ip6-qos-store", .vector_size = sizeof (u32), .format_trace = format_qos_store_trace, .type = VLIB_NODE_TYPE_INTERNAL, .n_errors = 0, .n_next_nodes = 1, .next_nodes = { [0] = "ip6-drop", }, }; VNET_FEATURE_INIT (ip6_qos_store_node, static) = { .arc_name = "ip6-unicast", .node_name = "ip6-qos-store", }; VNET_FEATURE_INIT (ip6m_qos_store_node, static) = { .arc_name = "ip6-multicast", .node_name = "ip6-qos-store", }; /* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */