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 214EEA04A9;
	Tue, 25 Jan 2022 07:53:56 +0100 (CET)
Received: from [217.70.189.124] (localhost [127.0.0.1])
	by mails.dpdk.org (Postfix) with ESMTP id A828C42864;
	Tue, 25 Jan 2022 07:53:31 +0100 (CET)
Received: from mga03.intel.com (mga03.intel.com [134.134.136.65])
 by mails.dpdk.org (Postfix) with ESMTP id 9615A4286D
 for <dev@dpdk.org>; Tue, 25 Jan 2022 07:53:29 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple;
 d=intel.com; i=@intel.com; q=dns/txt; s=Intel;
 t=1643093610; x=1674629610;
 h=from:to:cc:subject:date:message-id:in-reply-to: references;
 bh=Lhdq/xvbv3NUIqAt2UMtdPlzcD1yb79uecQkP9ZKb7I=;
 b=P5H0dDu8C2JKaEaJbZ6kAX2DE4umCnE71c2mDzF69njmOcoFTRiR0mJN
 LRt8wwjZNrasBtkglBKcU+zUU+4pmfae4VhmAjUWWMpcIhdsyMV3FgIAv
 lVWDK9/3CVHTf1rXrK2h2kXgM+76Rc/neP1qidADNe6+rLbvLNStb1noG
 OUX853NmcHt5gBCUaqcFM+C6o2cwW3W2nG5VDR+CRwAII7Q+FB5nxvwEo
 EklZRynX8f703FWmvjxwSBqA59FO+aQLk7p/8EDQPaaVGIWxpNrJhuAM7
 xxkTcOtdU+E9EIW1StXmYs4SQdSHfWARQWHOZWq7aofEdfCsOmv6sGb10 A==;
X-IronPort-AV: E=McAfee;i="6200,9189,10237"; a="246181330"
X-IronPort-AV: E=Sophos;i="5.88,314,1635231600"; d="scan'208";a="246181330"
Received: from orsmga005.jf.intel.com ([10.7.209.41])
 by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;
 24 Jan 2022 22:53:29 -0800
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.88,314,1635231600"; d="scan'208";a="695724316"
Received: from dpdk-dipei.sh.intel.com ([10.67.111.91])
 by orsmga005.jf.intel.com with ESMTP; 24 Jan 2022 22:53:27 -0800
From: Andy Pei <andy.pei@intel.com>
To: dev@dpdk.org
Cc: chenbo.xia@intel.com, maxime.coquelin@redhat.com, gang.cao@intel.com,
 changpeng.liu@intel.com
Subject: [PATCH 08/15] vdpa/ifc: set_vring_state op is mandatory,
 add set_vring_state for blk device
Date: Tue, 25 Jan 2022 14:47:31 +0800
Message-Id: <1643093258-47258-9-git-send-email-andy.pei@intel.com>
X-Mailer: git-send-email 1.8.3.1
In-Reply-To: <1643093258-47258-1-git-send-email-andy.pei@intel.com>
References: <1643093258-47258-1-git-send-email-andy.pei@intel.com>
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

Signed-off-by: Andy Pei <andy.pei@intel.com>
---
 drivers/vdpa/ifc/ifcvf_vdpa.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/drivers/vdpa/ifc/ifcvf_vdpa.c b/drivers/vdpa/ifc/ifcvf_vdpa.c
index 1f832a3..eff6ff3 100644
--- a/drivers/vdpa/ifc/ifcvf_vdpa.c
+++ b/drivers/vdpa/ifc/ifcvf_vdpa.c
@@ -1384,6 +1384,16 @@ struct rte_vdpa_dev_info {
 }
 
 static int
+ifcvf_blk_set_vring_state(int vid, int vring, int state)
+{
+	RTE_SET_USED(vid);
+	RTE_SET_USED(vring);
+	RTE_SET_USED(state);
+
+	return 0;
+}
+
+static int
 ifcvf_blk_get_protocol_features(struct rte_vdpa_device *vdev,
 	uint64_t *features)
 {
@@ -1401,7 +1411,7 @@ struct rte_vdpa_dev_info {
 	.get_protocol_features = ifcvf_blk_get_protocol_features,
 	.dev_conf = ifcvf_dev_config,
 	.dev_close = ifcvf_dev_close,
-	.set_vring_state = NULL,
+	.set_vring_state = ifcvf_blk_set_vring_state,
 	.migration_done = NULL,
 	.get_vfio_group_fd = ifcvf_get_vfio_group_fd,
 	.get_vfio_device_fd = ifcvf_get_vfio_device_fd,
-- 
1.8.3.1