On Wed, 9 Sep 2020 06:46:27 +0000 [email protected] wrote:
> @@ -374,17 +375,31 @@ static int ena_xdp_execute(struct ena_ring *rx_ring,
>  
>       verdict = bpf_prog_run_xdp(xdp_prog, xdp);
>  
> -     if (verdict == XDP_TX)
> +     if (verdict == XDP_TX) {
>               ena_xdp_xmit_buff(rx_ring->netdev,
> -                               xdp,
> -                               rx_ring->qid + 
> rx_ring->adapter->num_io_queues,
> -                               rx_info);
> -     else if (unlikely(verdict == XDP_ABORTED))
> +                             xdp,
> +                             rx_ring->qid + rx_ring->adapter->num_io_queues,
> +                             rx_info);

You broke the alignment here, for no reason.

Otherwise the series looks good.

Reply via email to