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 CD95AA0032; Fri, 17 Jun 2022 20:49:28 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 15A4D4281C; Fri, 17 Jun 2022 20:49:14 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 0077840E2D for ; Fri, 17 Jun 2022 20:49:10 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655491751; x=1687027751; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=xUlq0a8AGN0tGH9hMBZnjrxLbB1Au8iCdsvwuPGcgrg=; b=gzdFqhQxgm+CsA7KrN2mkHWr6LYX9XcdNvU6XzPIDg5bEoReNsVV4l84 mHuJzWflEWLfHFAoyeAC2KQUqCJcgcSflFX5BPQj1yIGPgtPkHW6HgqE/ gdOdILUac2Q335Zg7z8kN0+YCDWO2Qk3EP2V2cijyyOH+nm2jThinEG4x ggxB1VhI3smlD6a1rXjpSn8S9429DR4KNcluNzsAcKkpXa4u9A70qbFao 7RejyeRPa1MCFm/m29yQs/B55PeRPflBZJzWrP8uZN7TBaJ4n6GZ4w0+G M6J4oIIs9EMgK34qy3aHAuO0jYwk7YIUyIKBaiSCxY3OhRISJc7gCskXX w==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="278333241" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="278333241" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 11:49:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="560636030" Received: from skx-5gnr-sc12-4.sc.intel.com ([172.25.69.210]) by orsmga006.jf.intel.com with ESMTP; 17 Jun 2022 11:49:08 -0700 From: Nicolas Chautru To: dev@dpdk.org, thomas@monjalon.net, gakhil@marvell.com, hemant.agrawal@nxp.com Cc: maxime.coquelin@redhat.com, trix@redhat.com, mdr@ashroe.eu, bruce.richardson@intel.com, david.marchand@redhat.com, stephen@networkplumber.org, Nicolas Chautru Subject: [PATCH v2 3/5] bbdev: add device info on queue topology Date: Fri, 17 Jun 2022 11:37:18 -0700 Message-Id: <1655491040-183649-4-git-send-email-nicolas.chautru@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1655491040-183649-1-git-send-email-nicolas.chautru@intel.com> References: <1646785355-168133-3-git-send-email-nicolas.chautru@intel.com> <1655491040-183649-1-git-send-email-nicolas.chautru@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 Adding more options in the API to expose the number of queues exposed and related priority. Signed-off-by: Nicolas Chautru --- lib/bbdev/rte_bbdev.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/bbdev/rte_bbdev.h b/lib/bbdev/rte_bbdev.h index 29c3cd4..9fd7fb0 100644 --- a/lib/bbdev/rte_bbdev.h +++ b/lib/bbdev/rte_bbdev.h @@ -289,6 +289,10 @@ struct rte_bbdev_driver_info { /** Maximum number of queues supported by the device */ unsigned int max_num_queues; + /** Maximum number of queues supported per operation type */ + unsigned int num_queues[RTE_BBDEV_OP_TYPE_PADDED_MAX]; + /** Priority level supported per operation type */ + unsigned int queue_priority[RTE_BBDEV_OP_TYPE_PADDED_MAX]; /** Queue size limit (queue size must also be power of 2) */ uint32_t queue_size_lim; /** Set if device off-loads operation to hardware */ -- 1.8.3.1