summaryrefslogtreecommitdiff
path: root/AUTHORS.rst
Commit message (Collapse)AuthorAgeFilesLines
...
* AUTHORS: Add Hyong Youb Kim <hyonkim@cisco.com>.Ben Pfaff2019-02-041-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Li RongQing.Ben Pfaff2019-01-251-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Liang-min Wang.Ian Stokes2019-01-181-0/+1
| | | | Signed-off-by: Ian Stokes <ian.stokes@intel.com>
* AUTHORS: Add shaoke xi.Ben Pfaff2019-01-171-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Shweta Seth.Ben Pfaff2019-01-171-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add new contributors.Ben Pfaff2019-01-101-0/+2
|
* AUTHORS: Update ZhiPeng Lu's email address.Ben Pfaff2018-12-271-1/+1
|
* AUTHORS: Add Martin Xu.Ben Pfaff2018-12-131-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Martin Fong.Ben Pfaff2018-12-121-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add David Marchand and Scott Cheloha.Ben Pfaff2018-12-101-0/+2
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Yousong Zhou.Ben Pfaff2018-12-031-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Eric Lapointe.Ben Pfaff2018-10-311-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Jianbo Liu.Ben Pfaff2018-10-301-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Update or remove all Nicira email addresses.Ben Pfaff2018-10-031-60/+60
| | | | | | | | | nicira.com email addresses stopped working long ago. For folks still at VMware, this updates them. (Also for Martin, because I feel like it.) For everyone else, this deletes the addresses. Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Justin Pettit <jpettit@ovn.org>
* AUTHORS: Add Andre McCurdy.Ben Pfaff2018-10-021-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Zak Whittington.Ben Pfaff2018-08-071-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Bala Sankaran.Ben Pfaff2018-08-061-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* ovs-ofctl: Better validate OpenFlow message length in "ofp-parse-pcap".Ben Pfaff2018-08-061-0/+1
| | | | | | | Reported-by: Oscar Wilde <xdxiaobin@gmail.com> Reported-at: https://mail.openvswitch.org/pipermail/ovs-discuss/2018-July/047070.html Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Aaron Conole <aconole@redhat.com>
* AUTHORS: Update email address for Jakub Sitnicki.Jakub Sitnicki2018-08-021-1/+1
| | | | | | Signed-off-by: Jakub Sitnicki <jkbs@redhat.com> Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Aaron Conole <aconole@redhat.com>
* AUTHORS: Add Qiuyu Xiao.Ben Pfaff2018-07-311-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* ifupdown.sh: Correctly bring up bond slaves.Ken Sanislo2018-07-101-0/+1
| | | | | | | | | It seems that line 70 needs to be operating on the $slave variable created in the for loop at :68. Bonded interfaces fail to bring up their links with the current version, this will makes them work correctly. Signed-off-by: Ken Sanislo <ken@intherack.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Keshav Gupta and Rohith Basavaraja.Ben Pfaff2018-07-061-0/+2
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Update email-id of Manohar K C.Manohar K C2018-06-261-1/+1
| | | | | | CC: Manohar K C <manukc@gmail.com> Signed-off-by: Manohar K C <manohar.krishnappa.chidambaraswamy@ericsson.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Neal Shrader.Ben Pfaff2018-06-261-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Kyle Simpson.Ben Pfaff2018-06-181-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHROS: Add Ivan Dyukov.Ben Pfaff2018-06-141-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* python: Update docstring in ovs.db.idl.Idl class.Toms Atteka2018-06-051-0/+1
| | | | | | | | | Adjusted docstring and variable names according to previous code changes; Fixed grammar "a attribute" > "an attribute". Fixes: bf42f674 (idl: Convert python daemons to utilize SchemaHelper) Signed-off-by: Toms Atteka <cpp.code.lv@gmail.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
* rstp: Eliminate BPDU padding and uninitialized bytes.Ben Pfaff2018-06-051-0/+1
| | | | | | | | | | | | | | | | When the RSTP implementation sent BPDUs, it failed to initialize some of their bytes. None of the code initialized an array of 7 padding bytes, and some of it also failed to initialize the version1_length field. In addition, the padding bytes confused some implementations that did not correctly ignore extra bytes. This commit fixes both problems, by removing the padding bytes and initializing every byte in outgoing messages. Reported-by: David van Moolenbroek <dvmoolenbroek@aimvalley.nl> Reported-at: https://mail.openvswitch.org/pipermail/ovs-discuss/2018-June/046864.html Tested-by: David van Moolenbroek <dvmoolenbroek@aimvalley.nl> Signed-off-by: Ben Pfaff <blp@ovn.org>
* ofp-flow: Fix uninitialized data decoding OF1.5 flow stats.Ben Pfaff2018-05-231-0/+1
| | | | | | | | Reported-by: Paul Greenberg Reported-at: https://github.com/openvswitch/ovs-issues/issues/149 Fixes: c7b02b800615 ("Add support for OpenFlow 1.5 statistics (OXS).") Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Darrell Ball <dlu998@gmail.com>
* lacp: New command "lacp/show-stats" fordisplaying LACP counters.Nitin Katiyar2018-04-181-0/+1
| | | | | | | | | | | | | | | | | | | | | | Currently OVS does not provide any command to display stats for LACP without which it is difficult to debug LACP issues. Here we propose to display various statistics about LACP PDUs and slave state change. Sample output: ovs_lacp # ovs-appctl lacp/stats-show ---- bond-prv statistics ---- slave: dpdk0: RX PDUs: 128 RX Bad PDUs: 0 TX PDUs: 5 Link Expired: 2 Link Defaulted: 1 Carrier Status Changed: 0 Signed-off-by: Nitin Katiyar <nitin.katiyar@ericsson.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Andrea Kao.Ben Pfaff2018-04-161-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* Fix AUTHORS.rstLucas Alvares Gomes2018-04-111-344/+344
| | | | | | | | | | | | | The commit 9afc6f14ee7b2622703d98689acb0044d4a5492e added a new author which name was too long that broke the column size. Runinng "make docs-checks" was failing because of that. All this patch does is to enlarge the "Name" column to fit the new author's name. Signed-off-by: Lucas Alvares Gomes <lucasagomes@gmail.com> Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Daniel Alvarez <dalvarez@redhat.com>
* AUTHORS: Add Manohar Krishnappa Chidambaraswamy.Ben Pfaff2018-04-101-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add aginwala.Ben Pfaff2018-04-041-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Frédéric Tobias Christ.Ben Pfaff2018-04-031-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* ofp-flow: Reduce memory consumption for ofputil_flow_mod, using minimatch.Ben Pfaff2018-03-311-0/+1
| | | | | | | | | | | | | | | | | | | | | | | Until now, struct ofputil_flow_mod, which represents an OpenFlow flow table modification request, has incorporated a struct match, which made the overall ofputil_flow_mod about 2.5 kB. This is OK for a small number of flows, but absurdly inflates memory requirements when there are hundreds of thousands of flows. This commit fixes the problem by changing struct match to struct minimatch inside ofputil_flow_mod, which reduces its size to about 100 bytes plus the actual size of the flow match (usually a few dozen bytes). This affects memory usage of ovs-ofctl (when it adds a large number of flows) more than ovs-vswitchd. Reported-by: Michael Ben-Ami <mbenami@digitalocean.com> Signed-off-by: Ben Pfaff <blp@ovn.org> Reviewed-by: Armando Migliaccio <armamig@gmail.com> Tested-by: Armando Migliaccio <armamig@gmail.com> Reviewed-by: Jan Scheurich <jan.scheurich@ericsson.com> Tested-by: Jan Scheurich <jan.scheurich@ericsson.com> Tested-by: Yifeng Sun <pkusunyifeng@gmail.com> Reviewed-by: Yifeng Sun <pkusunyifeng@gmail.com>
* ovsdb-idl: Use modern form of <monitor-requests>.Ben Pfaff2018-03-141-0/+1
| | | | | | | | | | | Long ago, a <monitor-requests> object in the OVSDB protocol mapped a table name to a single <monitor-request>. Since then, it has mapped a table name to an *array of* <monitor-request> objects, but the OVSDB IDL has never been updated to use the modern form. This commit makes that change. Reported-by: Anil Jangam <anilj.mailing@gmail.com> Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Justin Pettit <jpettit@ovn.org>
* AUTHORS: update email address for Mark KavanaghMark Kavanagh2018-02-281-1/+1
| | | | | Signed-off-by: Mark Kavanagh <mark.b.kavanagh@intel.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
* ovn-sbctl: Remove incorrect manpage options.Dan Williams2018-02-281-0/+1
| | | | | | | These options are not implemented by ovn-sbctl. Signed-off-by: Dan Williams <dcbw@redhat.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: update e-mail address of Zoltan BaloghZoltan Balogh2018-02-231-2/+1
| | | | | | Signed-off-by: Zoltan Balogh <zoltan.balogh@ericsson.com> CC: Zoltan Balogh <zoltan.balogh.eth@gmail.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add JunhanYan <juyan@redhat.com>.Ben Pfaff2018-02-011-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Frode Nordahl <frode.nordahl@gmail.com>.Ben Pfaff2018-02-011-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Add Robert Mulik.Ben Pfaff2018-01-231-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* ofproto: Delete all groups and meters when (un)configuring a controller.Ben Pfaff2018-01-081-0/+1
| | | | | | | | | | | | | | Open vSwitch has always deleted all flows from the flow table whenever a controller is configured or whenever all the controllers are unconfigured. After this commit, OVS additionally deletes all OpenFlow groups and meters. Suggested-by: Periyasamy Palanisamy <periyasamy.palanisamy@ericsson.com> Suggested-by: Jan Scheurich <jan.scheurich@ericsson.com> Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Jan Scheurich <jan.scheurich@ericsson.com> Tested-by: Jan Scheurich <jan.scheurich@ericsson.com> Reviewed-by: Greg Rose <gvrose8192@gmail.com> Tested-by: Greg Rose <gvrose8192@gmail.com>
* AUTHORS: Add Brad Cowie.Ben Pfaff2018-01-081-0/+1
|
* AUTHORS: Add Lorenzo Bianconi.Ben Pfaff2018-01-081-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>
* faq: Correct location of flow.h.Ben Pfaff2018-01-021-0/+1
| | | | | | Reported-by: Alan Kayahan <hsykay@gmail.com> Signed-off-by: Ben Pfaff <blp@ovn.org> Reviewed-by: Greg Rose <gvrose8192@gmail.com>
* ofproto: Keep inserting buckets into a group from changing group type.Ben Pfaff2017-12-111-0/+1
| | | | | | | | | | | The "insert buckets" and "delete buckets" operations on a group should not change the group's type or properties, but the implementation did this by mistake. This fixes the problem. Reported-by: shivani dommeti <shivani.dommeti@gmail.com> Tested-by: shivani dommeti <shivani.dommeti@gmail.com> Reported-at: https://mail.openvswitch.org/pipermail/ovs-discuss/2017-December/045830.html Signed-off-by: Ben Pfaff <blp@ovn.org>
* AUTHORS: Update email address for Thadeu Lima de Souza Cascardo.Ben Pfaff2017-12-081-1/+1
| | | | | Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Thadeu Lima de Souza Cascardo <cascardo@cascardo.eti.br>
* AUHTORS: Add Vishal Deep Ajmera.Ben Pfaff2017-11-201-0/+1
| | | | Signed-off-by: Ben Pfaff <blp@ovn.org>