From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124])
	by inbox.dpdk.org (Postfix) with ESMTP id 4AF14A0548;
	Thu,  4 Nov 2021 11:50:38 +0100 (CET)
Received: from [217.70.189.124] (localhost [127.0.0.1])
	by mails.dpdk.org (Postfix) with ESMTP id 36FE4411A4;
	Thu,  4 Nov 2021 11:50:38 +0100 (CET)
Received: from us-smtp-delivery-124.mimecast.com
 (us-smtp-delivery-124.mimecast.com [170.10.133.124])
 by mails.dpdk.org (Postfix) with ESMTP id 20DE641144
 for <dev@dpdk.org>; Thu,  4 Nov 2021 11:50:37 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com;
 s=mimecast20190719; t=1636023036;
 h=from:from:reply-to:subject:subject:date:date:message-id:message-id:
 to:to:cc:cc:mime-version:mime-version:content-type:content-type:
 content-transfer-encoding:content-transfer-encoding:
 in-reply-to:in-reply-to:references:references;
 bh=veUYAjHQWT+63LKULwDNI1/I+kdKEhxdwsiIOoe3FXw=;
 b=hDQf4mVVK41pcX+byP6I+9dZufnVMcvXko0PYL6qCnjS/GxgdvZQKJIYvRAX/g37r0eB2C
 jAAz4fBhF7GkrBzstN7k0WDxjNV3zcLecUN5YLUovFea9gXwQ2fKBlJsPgKklgPeWU+RC+
 LjbMe9T3x/MTlas8m0ZkSMIyv8pP0zE=
Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com
 [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id
 us-mta-596-Wkzp_Hh3NiSGTv3S22DsWA-1; Thu, 04 Nov 2021 06:50:33 -0400
X-MC-Unique: Wkzp_Hh3NiSGTv3S22DsWA-1
Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com
 [10.5.11.13])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 8BA041927800;
 Thu,  4 Nov 2021 10:50:32 +0000 (UTC)
Received: from [10.39.208.16] (unknown [10.39.208.16])
 by smtp.corp.redhat.com (Postfix) with ESMTPS id 1E50160854;
 Thu,  4 Nov 2021 10:50:30 +0000 (UTC)
Message-ID: <a501f83d-5f7f-61cf-e109-84ad94b5dbda@redhat.com>
Date: Thu, 4 Nov 2021 11:50:29 +0100
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
 Thunderbird/91.2.0
To: Vijay Srivastava <vijay.srivastava@xilinx.com>, dev@dpdk.org
Cc: chenbo.xia@intel.com, andrew.rybchenko@oktetlabs.ru,
 Vijay Kumar Srivastava <vsrivast@xilinx.com>
References: <20210706164418.32615-1-vsrivast@xilinx.com>
 <20211103135754.17411-1-vsrivast@xilinx.com>
 <20211103135754.17411-8-vsrivast@xilinx.com>
From: Maxime Coquelin <maxime.coquelin@redhat.com>
In-Reply-To: <20211103135754.17411-8-vsrivast@xilinx.com>
X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13
Authentication-Results: relay.mimecast.com;
 auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=maxime.coquelin@redhat.com
X-Mimecast-Spam-Score: 0
X-Mimecast-Originator: redhat.com
Content-Language: en-US
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Subject: Re: [dpdk-dev] [PATCH v4 07/10] vdpa/sfc: add support to get queue
 notify area info
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org
Sender: "dev" <dev-bounces@dpdk.org>



On 11/3/21 14:57, Vijay Srivastava wrote:
> From: Vijay Kumar Srivastava <vsrivast@xilinx.com>
> 
> Implement the vDPA ops get_notify_area to get the notify
> area info of the queue.
> 
> Signed-off-by: Vijay Kumar Srivastava <vsrivast@xilinx.com>
> Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
> ---
> v2:
> * Added error log in sfc_vdpa_get_notify_area.
> 
> v4:
> * Updated parameter for sfc_vdpa_setup_notify_ctrl
> 
>   drivers/vdpa/sfc/sfc_vdpa_ops.c | 156 ++++++++++++++++++++++++++++++++++++++--
>   drivers/vdpa/sfc/sfc_vdpa_ops.h |   2 +
>   2 files changed, 152 insertions(+), 6 deletions(-)

Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>

Thanks,
Maxime