On Sat, 17 Feb 2024 09:54:10 +0800
Chaoyong He <chaoyong...@corigine.com> wrote:

> Add the support of UDP fragmentation offload feature.
> 
> Signed-off-by: Chaoyong He <chaoyong...@corigine.com>
> Reviewed-by: Long Wu <long...@corigine.com>
> Reviewed-by: Peng Zhang <peng.zh...@corigine.com>
> ---
>  drivers/common/nfp/nfp_common_ctrl.h | 1 +
>  drivers/net/nfp/nfd3/nfp_nfd3_dp.c   | 7 ++++++-
>  drivers/net/nfp/nfdk/nfp_nfdk_dp.c   | 8 +++++---
>  drivers/net/nfp/nfp_net_common.c     | 8 ++++++--
>  4 files changed, 18 insertions(+), 6 deletions(-)

Looks like this depends on earlier patch, it does not apply directly to main 
branch.

> -     if ((ol_flags & RTE_MBUF_F_TX_TCP_SEG) == 0)
> +     if ((ol_flags & RTE_MBUF_F_TX_TCP_SEG) == 0 &&
> +                     (ol_flags & RTE_MBUF_F_TX_UDP_SEG) == 0)
>               goto clean_txd;

That is odd indentation style.
Should be:

        if ((ol_flags & RTE_MBUF_F_TX_TCP_SEG) == 0 &&
            (ol_flags & RTE_MBUF_F_TX_UDP_SEG) == 0)
                goto clean_txd;

Reply via email to