summaryrefslogtreecommitdiffstats
path: root/MAINTAINERS
AgeCommit message (Expand)AuthorFilesLines
2019-07-10emacs: update the vat plugin generatorDave Barach1-0/+5
2019-07-09udp: UDPC handle open failNathan Skrzypczak1-0/+5
2019-07-05vxlan-gbp: Decap ignores reserved bitsNeale Ranns1-0/+6
2019-07-05ethernet: ARP disabled nodeNeale Ranns1-0/+7
2019-07-05sctp: move to plugins, disabled by defaultFlorin Coras1-2/+2
2019-06-29pg: format_pg_input_trace - reorder fieldsPaul Vinciguerra1-0/+5
2019-06-27sctp: add option to enable/disableFlorin Coras1-0/+4
2019-06-26papi: prevent message_table inconsistenciesVratko Polak1-7/+13
2019-06-26fib: default flow hash config for each DPO protocol typeNeale Ranns1-0/+5
2019-06-26misc: nat is added to MAINTAINERS file.Chore1-0/+5
2019-06-26hsa: move vcl test apps to hsaFlorin Coras1-0/+3
2019-06-25hsa: move session-apps to host-stack apps pluginFlorin Coras1-0/+5
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
ass="o">!= UNFORMAT_END_OF_INPUT) { if (unformat (line_input, "verbose")) verbose = 1; else if (unformat (line_input, "v")) verbose = 1; else if (unformat (line_input, "detail")) verbose = 2; else if (unformat (line_input, "d")) verbose = 2; else if (unformat (line_input, "map")) map = 1; else break; } unformat_free (line_input); } if (map) vlib_cli_output (vm, " %U", format_pmalloc_map, vpm->pmalloc_main); else vlib_cli_output (vm, " %U", format_pmalloc, vpm->pmalloc_main, verbose); return 0; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (show_physmem_command, static) = { .path = "show physmem", .short_help = "show physmem [verbose | detail | map]", .function = show_physmem, }; /* *INDENT-ON* */ static clib_error_t * vlib_physmem_config (vlib_main_t * vm, unformat_input_t * input) { vlib_physmem_main_t *vpm = &vm->physmem_main; while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) { if (unformat (input, "base-addr 0x%lx", &vpm->base_addr)) ; else return unformat_parse_error (input); } unformat_free (input); return 0; } VLIB_EARLY_CONFIG_FUNCTION (vlib_physmem_config, "physmem"); /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */