From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id ACDBBA034C; Sun, 27 Mar 2022 17:36:43 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 733C042894; Sun, 27 Mar 2022 17:36:03 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id 2297E4288E for ; Sun, 27 Mar 2022 17:36:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1648395362; x=1679931362; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=bo7WL2+URlaL7lMv/7Z5CoN7zy2GZiVZ2pmCi1TxoMI=; b=mqCpZewxvCHbAdqUcx8M8VB6P2FkAX7f3hEfttHcATtMlEBVYXoJdgZE 8zuTxRIG63xemZi4Cc+UeVayNro9lCvszJBtl0ccgbYPFyRGDGP1Un69t hWeVYrY32f4tyGBWGjz9Zvvyas0MngMpZ1MBYcqS+vWevz8plfRijAsYq /c9ANAZ2cF/VEmfn34E0+fLw1GGHkHk6MLiIgFwMMibvOTwu8SBEdN8im 8RuYPj39LB1Cq4OIwEHmSfjOAqZzUfZd00iI7i56K/GVY04LLMR+lj7Yw PsrHTVmze+eoU4G8BrC59MFzija77MxZQYCUoeQduecQB+XVC/ea8PKdL g==; X-IronPort-AV: E=McAfee;i="6200,9189,10299"; a="259045653" X-IronPort-AV: E=Sophos;i="5.90,215,1643702400"; d="scan'208";a="259045653" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Mar 2022 08:36:01 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,215,1643702400"; d="scan'208";a="562421556" Received: from dpdk-dipei.sh.intel.com ([10.67.110.238]) by orsmga008.jf.intel.com with ESMTP; 27 Mar 2022 08:36:00 -0700 From: Andy Pei To: dev@dpdk.org Cc: chenbo.xia@intel.com, maxime.coquelin@redhat.com, gang.cao@intel.com, changpeng.liu@intel.com Subject: [PATCH v4 09/16] vdpa/ifc: set_vring_state op is mandatory, add set_vring_state for blk device Date: Sun, 27 Mar 2022 22:51:32 +0800 Message-Id: <1648392699-60113-10-git-send-email-andy.pei@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1648392699-60113-1-git-send-email-andy.pei@intel.com> References: <1643093258-47258-2-git-send-email-andy.pei@intel.com> <1648392699-60113-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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Signed-off-by: Andy Pei --- 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 a23dc2d..28191e4 100644 --- a/drivers/vdpa/ifc/ifcvf_vdpa.c +++ b/drivers/vdpa/ifc/ifcvf_vdpa.c @@ -1368,6 +1368,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) { @@ -1385,7 +1395,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