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 F282DA04FD; Mon, 23 May 2022 12:22:41 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DF1E64161A; Mon, 23 May 2022 12:22:37 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 8FB834161A for ; Mon, 23 May 2022 12:22:35 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1653301355; x=1684837355; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=2SO/NXrVgSokERE7L5aHhYOoSldzv4OKs1wMFicFg2A=; b=BhRAHkBBQJDWkPz2R+nAl0iNqCU57rH6+9mtPGozRl/8pk6SVLYmz1aM L/esAOo5XKb0Tk85wUIu4yQFtRZ8LeyF4op3W4wYi8GL1xyHNBT9CiFpj 5NaU7o0AeO7CwAJB6zBdFHgapR2XUqXBxhtVeX9Z/yYOXx+/WL6t9PPHc hn6qnPL5ncYEW7GMHmUBUyZ6Y7PlhE32rvEKRtfJYnn8sqMkFE5EZMfex OQ/tzisNwHMYEpdXlcCRjXisrmFCn+c7mMfhhYRYMkGvav44jbxImc71r Je6tJPHCuKGbQkAakO0Uf9IDk/FeBkY7aKBhz2/aRN+3ts5PxzGOqEmST Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10355"; a="255239276" X-IronPort-AV: E=Sophos;i="5.91,246,1647327600"; d="scan'208";a="255239276" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 May 2022 03:22:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,246,1647327600"; d="scan'208";a="547889371" Received: from dpdk-dipei.sh.intel.com ([10.67.110.238]) by orsmga006.jf.intel.com with ESMTP; 23 May 2022 03:22:33 -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, rosen.xu@intel.com, qimaix.xiao@intel.com Subject: [PATCH v9 02/13] vhost: add vDPA ops for blk device Date: Mon, 23 May 2022 17:35:13 +0800 Message-Id: <1653298524-232138-3-git-send-email-andy.pei@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1653298524-232138-1-git-send-email-andy.pei@intel.com> References: <1643093258-47258-2-git-send-email-andy.pei@intel.com> <1653298524-232138-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 Get_config and set_config are necessary ops for blk device. Add get_config and set_config ops to vDPA ops. Signed-off-by: Andy Pei Reviewed-by: Maxime Coquelin --- lib/vhost/vdpa_driver.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/vhost/vdpa_driver.h b/lib/vhost/vdpa_driver.h index 88138be..c4233a6 100644 --- a/lib/vhost/vdpa_driver.h +++ b/lib/vhost/vdpa_driver.h @@ -72,8 +72,12 @@ struct rte_vdpa_dev_ops { /** Reset statistics of the queue */ int (*reset_stats)(struct rte_vdpa_device *dev, int qid); - /** Reserved for future extension */ - void *reserved[2]; + /** Get the device configuration space */ + int (*get_config)(int vid, uint8_t *config, uint32_t size); + + /** Set the device configuration space */ + int (*set_config)(int vid, uint8_t *config, uint32_t offset, + uint32_t size, uint32_t flags); }; /** -- 1.8.3.1