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 B1C0AA0542; Wed, 5 Oct 2022 09:17:05 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 55DF840694; Wed, 5 Oct 2022 09:17:05 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 2201540041 for ; Wed, 5 Oct 2022 09:17:03 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1664954223; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=qyo8VBiE+EXU97ZDfR7On32r5/5tHzUyOCcDxPj5xiQ=; b=YXwYuhmhoFTpGrShpvAvN7hezxyejjgdyS7KF89J5rHS6iJH4I7Dj9rPUpQdmZ9MdYTuwg OUHX1BoqaOMhPDW7GKVzemkWUySufXU5/EMRT3js0Cq4WYToNTUcvsGC/8zYHhnFLsNUWw i7NNKYmrK+V89R4XAEyjy5Yn3Z0QMx4= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-368-qgxufC-rNua6iFfwz2X1Eg-1; Wed, 05 Oct 2022 03:17:00 -0400 X-MC-Unique: qgxufC-rNua6iFfwz2X1Eg-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 580581C09C95; Wed, 5 Oct 2022 07:16:52 +0000 (UTC) Received: from [10.39.208.19] (unknown [10.39.208.19]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 4A91AC15BB1; Wed, 5 Oct 2022 07:16:38 +0000 (UTC) Message-ID: Date: Wed, 5 Oct 2022 09:16:35 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.3.0 Subject: Re: [PATCH v12 2/7] bbdev: add device status info To: Nicolas Chautru , dev@dpdk.org, thomas@monjalon.net, gakhil@marvell.com Cc: trix@redhat.com, mdr@ashroe.eu, bruce.richardson@intel.com, david.marchand@redhat.com, stephen@networkplumber.org, mingshan.zhang@intel.com, hemant.agrawal@nxp.com References: <1655491040-183649-6-git-send-email-nicolas.chautru@intel.com> <20221004171656.17967-1-nicolas.chautru@intel.com> <20221004171656.17967-3-nicolas.chautru@intel.com> From: Maxime Coquelin In-Reply-To: <20221004171656.17967-3-nicolas.chautru@intel.com> X-Scanned-By: MIMEDefang 3.1 on 10.11.54.8 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Language: en-US Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 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 On 10/4/22 19:16, Nicolas Chautru wrote: > Added device status information, so that the PMD can > expose information related to the underlying accelerator device status. > Minor order change in structure to fit into padding hole. > > Signed-off-by: Nicolas Chautru > Acked-by: Mingshan Zhang > Acked-by: Hemant Agrawal > --- > doc/guides/rel_notes/deprecation.rst | 3 -- > doc/guides/rel_notes/release_22_11.rst | 3 ++ > drivers/baseband/acc100/rte_acc100_pmd.c | 1 + > .../fpga_5gnr_fec/rte_fpga_5gnr_fec.c | 1 + > drivers/baseband/fpga_lte_fec/fpga_lte_fec.c | 1 + > drivers/baseband/la12xx/bbdev_la12xx.c | 1 + > drivers/baseband/null/bbdev_null.c | 1 + > .../baseband/turbo_sw/bbdev_turbo_software.c | 1 + > lib/bbdev/rte_bbdev.c | 22 ++++++++++++ > lib/bbdev/rte_bbdev.h | 35 +++++++++++++++++-- > lib/bbdev/rte_bbdev_op.h | 2 +- > lib/bbdev/version.map | 7 ++++ > 12 files changed, 72 insertions(+), 6 deletions(-) Acked-by: Maxime Coquelin Thanks, Maxime