On Wed, 2015-06-24 at 18:22 +0300, Or Gerlitz wrote: > From: Ido Shamay <i...@mellanox.com> >
> + if (be32_to_cpu(cqe->vlan_my_qpn) & MLX4_CQE_VLAN_PRESENT_MASK && > + !(dev_features & NETIF_F_HW_VLAN_CTAG_RX)) { > hw_checksum = get_fixed_vlan_csum(hw_checksum, hdr); > hdr += sizeof(struct vlan_hdr); This is faster to use if (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_VLAN_PRESENT_MASK) && -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html