Update git submodules

* Update neutron from branch 'master'
  to 0bae4b70b6fc53cf5502622677a95ee50cc319a1
  - [ovn] Make scheduling of unhosted gateways aware of current transaction
    
    At present, whenever multiple additions/updates are made to LRPs
    with gateway_chassis, each update is put in separate transactions
    in an attempt to ensure the scheduler operates on updated
    information for each iteration.
    
    This is problematic because we don't have the luxury of creating
    separate transactions for updates in all parts of the code base,
    and it is also not very efficient.
    
    The OVSDBapp library wraps the OVS Python IDL and provides
    different semantics. Most notably the OVSDBapp represents a
    Transaction as a list of command objects with `run_idl` methods
    for execution at some point in the future. The main loop and the
    command objects are not aware of changes made in the current
    transaction until it is committed.
    
    Fortunately, as an ovsdbapp transaction is committed, the
    underlying OVS Python IDL is kept up to date during the course of
    the transaction [0][1][2].
    
    Move implementation of scheduling of unhosted gateways into an
    ovsdbapp command, using a plugin reference to the Neutron
    OVNClient class for any calls into the Neutron code, allowing
    scheduling decisions to be made on up to date data as the
    transaction is applied.
    
    0: https://github.com/openvswitch/ovs/blob/e3ba0be48ca4/python/ovs/db/idl.py#L1316
    1: https://github.com/openvswitch/ovs/blob/e3ba0be48ca4/python/ovs/db/idl.py#L1400
    2: https://github.com/openvswitch/ovs/blob/e3ba0be48ca4/python/ovs/db/idl.py#L2083
    
    Partial-Bug: #2002687
    Co-Authored-By: Terry Wilson <twilson@redhat.com>
    Co-Authored-By: Brian Haley <haleyb.dev@gmail.com>
    Signed-off-by: Frode Nordahl <frode.nordahl@canonical.com>
    Change-Id: I83bcf7fe838c0d6b0617c43439643e8443b2bdae
This commit is contained in:
Frode Nordahl 2024-02-28 02:41:53 +02:00 committed by Gerrit Code Review
parent 2640a90928
commit 41e3d601c2
1 changed files with 1 additions and 1 deletions

@ -1 +1 @@
Subproject commit 491fbc890bd6a22e77570982dea9c37786ea412f
Subproject commit 0bae4b70b6fc53cf5502622677a95ee50cc319a1