diff mbox series

[1/2,net-next] mlx5: Set AF_XDP data pointer correctly.

Message ID 20190417195605.2810852-1-jonathan.lemon@gmail.com
State Awaiting Upstream
Delegated to: David Miller
Headers show
Series [1/2,net-next] mlx5: Set AF_XDP data pointer correctly. | expand

Commit Message

Jonathan Lemon April 17, 2019, 7:56 p.m. UTC
data starts at handle + headroom, so adjust appropriately.

Signed-off-by: Jonathan Lemon <jonathan.lemon@gmail.com>
---
 drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Maxim Mikityanskiy April 18, 2019, 9:11 a.m. UTC | #1
On 2019-04-17 22:56, Jonathan Lemon wrote:
> data starts at handle + headroom, so adjust appropriately.
> 
> Signed-off-by: Jonathan Lemon <jonathan.lemon@gmail.com>
> ---
>   drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.c | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.c b/drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.c
> index 2f0b5fd1ee97..e758f1015022 100644
> --- a/drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.c
> +++ b/drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.c
> @@ -290,7 +290,8 @@ int mlx5e_xsk_page_alloc_umem(struct mlx5e_rq *rq,
>   		return -ENOMEM;
>   
>   	dma_info->xsk.handle = handle + rq->buff.umem_headroom;
> -	dma_info->xsk.data = xdp_umem_get_data(umem, handle);
> +	dma_info->xsk.data = xdp_umem_get_data(umem, handle) +
> +			     rq->buff.umem_headroom;
>   
>   	/* No need to add headroom to the DMA address. In striding RQ case, we
>   	 * just provide pages for UMR, and headroom is counted at the setup
> 

This code is not upstreamed yet, please hold on with sending patches to 
netdev. You are not even working with the latest codebase. You shouldn't 
have exposed it before the submission. Please refrain from doing it for now.

If you have fixes like this, I'm happy to hear from you, but please 
provide your feedback internally. Your fixes may not apply cleanly, 
because I'm constantly updating the code, or these issues may be already 
fixed in the code that you haven't seen yet, so let's sync internally 
before it goes upstream.

Thanks,
Max
Jonathan Lemon April 18, 2019, 4:07 p.m. UTC | #2
On 18 Apr 2019, at 2:11, Maxim Mikityanskiy wrote:

> On 2019-04-17 22:56, Jonathan Lemon wrote:
>> data starts at handle + headroom, so adjust appropriately.
>>
>> Signed-off-by: Jonathan Lemon <jonathan.lemon@gmail.com>
>> ---
>>   drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.c | 3 ++-
>>   1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.c 
>> b/drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.c
>> index 2f0b5fd1ee97..e758f1015022 100644
>> --- a/drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.c
>> +++ b/drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.c
>> @@ -290,7 +290,8 @@ int mlx5e_xsk_page_alloc_umem(struct mlx5e_rq 
>> *rq,
>>   		return -ENOMEM;
>>
>>   	dma_info->xsk.handle = handle + rq->buff.umem_headroom;
>> -	dma_info->xsk.data = xdp_umem_get_data(umem, handle);
>> +	dma_info->xsk.data = xdp_umem_get_data(umem, handle) +
>> +			     rq->buff.umem_headroom;
>>
>>   	/* No need to add headroom to the DMA address. In striding RQ 
>> case, we
>>   	 * just provide pages for UMR, and headroom is counted at the 
>> setup
>>
>
> This code is not upstreamed yet, please hold on with sending patches 
> to
> netdev. You are not even working with the latest codebase. You 
> shouldn't
> have exposed it before the submission. Please refrain from doing it 
> for now.
>
> If you have fixes like this, I'm happy to hear from you, but please
> provide your feedback internally. Your fixes may not apply cleanly,
> because I'm constantly updating the code, or these issues may be 
> already
> fixed in the code that you haven't seen yet, so let's sync internally
> before it goes upstream.

This was my mistake - unintentionally generated from the wrong tree.
Please ignore, and I'll change my workflow to prevent this from 
happening again.
diff mbox series

Patch

diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.c b/drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.c
index 2f0b5fd1ee97..e758f1015022 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.c
@@ -290,7 +290,8 @@  int mlx5e_xsk_page_alloc_umem(struct mlx5e_rq *rq,
 		return -ENOMEM;
 
 	dma_info->xsk.handle = handle + rq->buff.umem_headroom;
-	dma_info->xsk.data = xdp_umem_get_data(umem, handle);
+	dma_info->xsk.data = xdp_umem_get_data(umem, handle) +
+			     rq->buff.umem_headroom;
 
 	/* No need to add headroom to the DMA address. In striding RQ case, we
 	 * just provide pages for UMR, and headroom is counted at the setup