From: Vratko Polak Date: Wed, 26 Jun 2019 15:24:56 +0000 (+0200) Subject: papi: prevent message_table inconsistencies X-Git-Tag: v20.01-rc0~311 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F66%2F20366%2F2;p=vpp.git papi: prevent message_table inconsistencies Socket transport is maintaining message_table to map message name to index. After disconnect and re-connect, the VPP may have been restarted with different set of plugins, so message_table has to be wiped. + Edited MAINTAINERS to recognize "papi" as a separate component. Type: fix Change-Id: I1f16ad7ee0886e03bbc6a17bcddbfcaa322354e5 Signed-off-by: Vratko Polak --- diff --git a/MAINTAINERS b/MAINTAINERS index d2af18aa16f..ad13219c46f 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -79,13 +79,13 @@ M: Damjan Marion F: src/vnet/devices/ VNET TAP Drivers -I: tap -M: Damjan Marion -M: Steven Luong -M: Mohsin Kazmi -F: src/vnet/devices/tap/ -F: src/vnet/devices/virtio/node.c -F: src/vnet/devices/virtio/device.c +I: tap +M: Damjan Marion +M: Steven Luong +M: Mohsin Kazmi +F: src/vnet/devices/tap/ +F: src/vnet/devices/virtio/node.c +F: src/vnet/devices/virtio/device.c VNET Feature Arcs I: feature @@ -426,6 +426,12 @@ M: Aloys Augustin M: Nathan Skrzypczak F: src/plugins/hs_apps/ +Python binding for the VPP API +I: papi +M: Ole Troan +M: Paul Vinciguerra +F: src/vpp-api/python + THE REST I: misc C: Contact vpp-dev Mailing List diff --git a/src/vpp-api/python/vpp_papi/vpp_transport_socket.py b/src/vpp-api/python/vpp_papi/vpp_transport_socket.py index ee142584c86..6c06791959d 100644 --- a/src/vpp-api/python/vpp_papi/vpp_transport_socket.py +++ b/src/vpp-api/python/vpp_papi/vpp_transport_socket.py @@ -152,6 +152,8 @@ class VppTransport(object): if self.message_thread is not None and self.message_thread.is_alive(): # Allow additional connect() calls. self.message_thread.join() + # Wipe message table, VPP can be restarted with different plugins. + self.message_table = {} # Collect garbage. self.message_thread = None self.socket = None