On Tue, Dec 16, 2025 at 3:28 PM Paulo Guilherme Silva via dev <[email protected]> wrote: > > Initial implementation of incremental processing for ovn-ic with > adds a single node (ic). This single node executes the ovn-ic > processing pipeline but does not do so incrementally yet. > > The idea from now on is to begin the migrate the functions > inside of ovn_db_run main function (ts_run(), port_binding_run(), > route_run(), ...) to engine-node mode. > > Paulo Guilherme Silva (4): > ovn: Move run_idl_loop function to lib/ovn-util. > ovn-ic: Introduce incremental processing for ovn-ic. > ovn-ic: Support dumping a visual representation of the I-P graph. > docs: Update OVN I+P Engine documentation.
Thanks Paulo for addressing the comments. I went ahead and applied the patch series to main. Numan > > Documentation/automake.mk | 1 + > .../incremental-processing/ic-graph.png | Bin 0 -> 169739 bytes > .../incremental-processing.rst | 23 +- > ic/automake.mk | 7 +- > ic/en-ic.c | 50 ++ > ic/en-ic.h | 18 + > ic/inc-proc-ic.c | 269 +++++++++ > ic/inc-proc-ic.h | 48 ++ > ic/ovn-ic.c | 512 +++++++++++------- > ic/ovn-ic.h | 61 +++ > lib/inc-proc-eng.h | 21 + > lib/ovn-util.c | 33 ++ > lib/ovn-util.h | 6 + > northd/inc-proc-northd.h | 2 - > northd/ovn-northd.c | 33 -- > 15 files changed, 847 insertions(+), 237 deletions(-) > create mode 100644 Documentation/topics/incremental-processing/ic-graph.png > create mode 100644 ic/en-ic.c > create mode 100644 ic/en-ic.h > create mode 100644 ic/inc-proc-ic.c > create mode 100644 ic/inc-proc-ic.h > create mode 100644 ic/ovn-ic.h > > -- > 2.34.1 > > > -- > > > > > _'Esta mensagem é direcionada apenas para os endereços constantes no > cabeçalho inicial. Se você não está listado nos endereços constantes no > cabeçalho, pedimos-lhe que desconsidere completamente o conteúdo dessa > mensagem e cuja cópia, encaminhamento e/ou execução das ações citadas estão > imediatamente anuladas e proibidas'._ > > > * **'Apesar do Magazine Luiza tomar > todas as precauções razoáveis para assegurar que nenhum vírus esteja > presente nesse e-mail, a empresa não poderá aceitar a responsabilidade por > quaisquer perdas ou danos causados por esse e-mail ou por seus anexos'.* > > > > _______________________________________________ > dev mailing list > [email protected] > https://mail.openvswitch.org/mailman/listinfo/ovs-dev _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
