Hi Amber, One minor nit inline.
> diff --git a/lib/dpif-netdev-private-dpif.h b/lib/dpif-netdev-private- > dpif.h index b3e75b7a2..46ce4ecf6 100644 > --- a/lib/dpif-netdev-private-dpif.h > +++ b/lib/dpif-netdev-private-dpif.h > @@ -86,8 +86,16 @@ dp_netdev_input(struct dp_netdev_pmd_thread *pmd, > > /* AVX512 enabled DPIF implementation function. */ int32_t - > dp_netdev_input_outer_avx512(struct dp_netdev_pmd_thread *pmd, > - struct dp_packet_batch *packets, > - odp_port_t in_port); > +dp_netdev_input_avx512(struct dp_netdev_pmd_thread *pmd, > + struct dp_packet_batch *packets, > + odp_port_t in_port); > + > +int32_t > +dp_netdev_input_avx512_recirc(struct dp_netdev_pmd_thread *pmd, > + struct dp_packet_batch *packets); > + > +int32_t > +dp_netdev_recirculate(struct dp_netdev_pmd_thread *, > + struct dp_packet_batch *); > Nit: You might want to move this declaration of recirculate fn before the comment: "/* AVX512 enabled DPIF implementation function. */" Other than that, Acked-by: Sunil Pai G <[email protected]> Thanks and regards Sunil _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
