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 8DEE1A0507; Wed, 27 Apr 2022 11:18:00 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 937DF42829; Wed, 27 Apr 2022 11:16:55 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 0A53F42800 for ; Wed, 27 Apr 2022 11:16:49 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1651051010; x=1682587010; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=otbhiVuAWK+g9FwMjCHtQgaAwjIyvpGd2CwjlqprWlg=; b=d4lUkJhbkxOi7UaSZIVoi8oHmy3Lcxa7MRIzBxTowf9iyZFNq73Hf2Gl iNyKEiNdRNmVQnN4M+rezNjw8EKZ073g3MYZ1Jo1noA7PHZBXCS7XRCpo iNFr2FhyY0qjFv2MVM+yrBl1l4mBkWIo/sgNUXor27BWcQKubsWo4qHDu 1tqWm2VvnqaIGGm9SDawNL1WseCujVwtK3OqzDGCi9ofYdipOHJxXEXSH EltBMQJjxi7N8w8zflvGGIXbOhCmjOcqvv9obKRacqcNdLic6cjM4/VVO RjO6bOYPPpBVq+oNfSOTE1hLaM/wDWpUAw39Nt2e2VgoN++pnE4SaJkQc Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10329"; a="352308323" X-IronPort-AV: E=Sophos;i="5.90,292,1643702400"; d="scan'208";a="352308323" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Apr 2022 02:16:43 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,292,1643702400"; d="scan'208";a="580488774" Received: from dpdk-dipei.sh.intel.com ([10.67.110.238]) by orsmga008.jf.intel.com with ESMTP; 27 Apr 2022 02:16:41 -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 v7 11/18] vdpa/ifc: add set vring state for blk device Date: Wed, 27 Apr 2022 16:29:59 +0800 Message-Id: <1651048206-282372-12-git-send-email-andy.pei@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1651048206-282372-1-git-send-email-andy.pei@intel.com> References: <1643093258-47258-2-git-send-email-andy.pei@intel.com> <1651048206-282372-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 Set_vring_state op is mandatory, add set_vring_state for blk device. Currently set_vring_state for blk device is not implemented. 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 99a6ab0..ca49bc3 100644 --- a/drivers/vdpa/ifc/ifcvf_vdpa.c +++ b/drivers/vdpa/ifc/ifcvf_vdpa.c @@ -1290,6 +1290,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) { @@ -1316,7 +1326,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