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 E1B09A0547; Tue, 28 Jun 2022 03:49:03 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 39EC242B6C; Tue, 28 Jun 2022 03:48:50 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 7F07240DF7 for ; Tue, 28 Jun 2022 03:48:45 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1656380925; x=1687916925; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=ncRVSBSw0YjCMEerYRJlPB/82Y/U9HZwKDS6Wi0wf+A=; b=Xbgl+Qpjd1hmA3ACxVYPqPRcKTFSREJhZgyJyT76/3OxRUH7Pj/2W1kg uc6Op02/koTRdNIcQhglJ9ZCDaJ3S9bmtU9gv1wr/B68MyApFq41R9aXX BCHVUEW1ASobmysbsbPn8Uza6W8+XcdsfNDvaUWjvy9sGU53wHBdllKoi s8LR9L/u0b7VcG0d54xwojdcP+ZJvi3nkJc50bbljDLGPC0kJlsgMk849 EjKYH1QnbHLL9a6XW71kbjG/LH57c00xRhZPkgzrsRPAj8ynl+nygNlj9 RYPtVIc7mVTtDVD6cyA9QIVQlLPFc9bj+EU7nKuu9OfbbFeXNMcvG3SbA g==; X-IronPort-AV: E=McAfee;i="6400,9594,10391"; a="264648612" X-IronPort-AV: E=Sophos;i="5.92,227,1650956400"; d="scan'208";a="264648612" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Jun 2022 18:48:43 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,227,1650956400"; d="scan'208";a="587677075" Received: from skx-5gnr-sc12-4.sc.intel.com ([172.25.69.210]) by orsmga007.jf.intel.com with ESMTP; 27 Jun 2022 18:48:43 -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 v3 3/7] bbdev: add device info on queue topology Date: Mon, 27 Jun 2022 18:35:33 -0700 Message-Id: <1656380137-44550-4-git-send-email-nicolas.chautru@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1656380137-44550-1-git-send-email-nicolas.chautru@intel.com> References: <1655491040-183649-6-git-send-email-nicolas.chautru@intel.com> <1656380137-44550-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 9b1ffa4..ac941d6 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