[ovs-dev] [PATCH] datapath: RHEL 7.5 ndo_change_mtu backward compatibility

2018-05-17 Thread lucasagomes
From: Lucas Alvares Gomes The commit [0] partially fixed the problem but in RHEL 7.5 neither .{min, max}_mtu or 'ndo_change_mtu' were being set/implemented for vport-internal_dev.c. As pointed out by commit [0], the ndo_change_mtu function pointer has been moved from

[ovs-dev] [PATCH v1] Fix AUTHORS.rst

2018-04-11 Thread lucasagomes
From: Lucas Alvares Gomes 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

[ovs-dev] [PATCH] Python: Make Row's __getattr__ less error prone

2018-10-05 Thread lucasagomes
From: Lucas Alvares Gomes Calling getattr() on a Row object after invoking delkey() with a value that does not exist in the object will cause getattr() to fail with a KeyError error. For example: Oct 05 14:59:28 neutron-server[28435]: File

[ovs-dev] [PATCH] ovn-nbctl: Add lsp-get-ls command

2019-02-27 Thread lucasagomes
From: Lucas Alvares Gomes This commit adds the following command: lsp-get-ls: Get the logical switch which the port belongs to. This command is handy for scripting since there's no logical switch id in the Logical_Switch_Port table. Signed-off-by: Lucas Alvares Gomes ---