mlx5: fix xdp data_meta setup in mlx5e_fill_xdp_buff
authorJesper Dangaard Brouer <brouer@redhat.com>
Wed, 27 May 2020 13:44:09 +0000 (15:44 +0200)
committerSaeed Mahameed <saeedm@mellanox.com>
Sat, 30 May 2020 04:20:19 +0000 (21:20 -0700)
The helper function xdp_set_data_meta_invalid() must be called after
setting xdp->data as it depends on it.

The bug was introduced in the cited patch below, and cause the kernel
to crash when using BPF helper bpf_xdp_adjust_head() on mlx5 driver.

Fixes: 39d6443c8daf ("mlx5, xsk: Migrate to new MEM_TYPE_XSK_BUFF_POOL")
Reported-by: David Ahern <dsahern@kernel.org>
Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>
Tested-by: David Ahern <dsahern@gmail.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
drivers/net/ethernet/mellanox/mlx5/core/en_rx.c

index 6b3c82d..dbb1c63 100644 (file)
@@ -1056,8 +1056,8 @@ static void mlx5e_fill_xdp_buff(struct mlx5e_rq *rq, void *va, u16 headroom,
                                u32 len, struct xdp_buff *xdp)
 {
        xdp->data_hard_start = va;
-       xdp_set_data_meta_invalid(xdp);
        xdp->data = va + headroom;
+       xdp_set_data_meta_invalid(xdp);
        xdp->data_end = xdp->data + len;
        xdp->rxq = &rq->xdp_rxq;
        xdp->frame_sz = rq->buff.frame0_sz;