On 12/9/2019 9:46 PM, Alfredo Cardigliano wrote:
> Add support for TX checksumming.
>
> Signed-off-by: Alfredo Cardigliano <[email protected]>
> Reviewed-by: Shannon Nelson <[email protected]>
<...>
> @@ -710,7 +794,7 @@ ionic_rx_clean(struct ionic_queue *q,
>
> /* Vlan Strip */
> if (cq_desc->csum_flags & IONIC_RXQ_COMP_CSUM_F_VLAN) {
> - pkt_flags |= PKT_RX_VLAN_STRIPPED;
> + pkt_flags |= PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED;
> rxm->vlan_tci = cq_desc->vlan_tci;
> }
>
>
Why not fix this at first place where it is introduced, it doesn't looks like
related to this patch.