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 9813141D4F; Thu, 23 Feb 2023 10:28:42 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3E6624312A; Thu, 23 Feb 2023 10:28:42 +0100 (CET) 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 BADFE427E9 for ; Thu, 23 Feb 2023 10:28:40 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1677144520; 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=5TI00Cj8OjL1uy8PQyxJes+Ob/7ApXMxhDIJy/OdkqQ=; b=cpMvov+LXD2h/Nsl7XF50lINlZjqHbXSRObZegP1Vs4EWwjeXRCNTGixNoF0JRy6XzRQ3y Z2bGMKN3falegcYsk8zK6eieYamxI4nBr/JU+ZPl0hqcqqJe5KjS7My/Ty2vxvbcQds6/W IcWWkSwsvjdmCIdrr8y8h9eJeBWQYNw= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-548-ubuV54vBPXek8GOYZTua8A-1; Thu, 23 Feb 2023 04:28:37 -0500 X-MC-Unique: ubuV54vBPXek8GOYZTua8A-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 0E7F4101A521; Thu, 23 Feb 2023 09:28:37 +0000 (UTC) Received: from [10.39.208.21] (unknown [10.39.208.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 2A6732026D4B; Thu, 23 Feb 2023 09:28:36 +0000 (UTC) Message-ID: Date: Thu, 23 Feb 2023 10:28:34 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.7.1 Subject: Re: [PATCH v2 0/9] baseband/acc: VRB PMD fixes To: Nicolas Chautru , dev@dpdk.org Cc: hernan.vargas@intel.com, stable@dpdk.org References: <20230209221929.265059-2-nicolas.chautru@intel.com> <20230210175841.303450-1-nicolas.chautru@intel.com> From: Maxime Coquelin In-Reply-To: <20230210175841.303450-1-nicolas.chautru@intel.com> X-Scanned-By: MIMEDefang 3.1 on 10.11.54.4 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 2/10/23 18:58, Nicolas Chautru wrote: > Hi, > > v2: updated based on Maxime's review (commit messages and adding > unlikely statement). Thanks. Let me know if further > change is required. > > Series of mainly fixes for corner-cases and protection > in the VRB PMD. > The last 2 commits are not fixes but add support for > missing minor capability, as well as a request to remove printf > from code (function called from bbdev-test). > > Thanks > Nic > > Nicolas Chautru (9): > baseband/acc: protection for TB negative scenario > baseband/acc: remove interrupt support on VRB1 > baseband/acc: add explicit mbuf append for soft output > baseband/acc: prevent to dequeue more than requested > baseband/acc: fix iteration counter in TB mode > baseband/acc: fix potential arithmetic overflow > baseband/acc: add support for 4GUL CRC drop in VRB PMD > baseband/acc: add support for 4GUL with SO and TB > baseband/acc: remove printf from PMD function > > drivers/baseband/acc/rte_acc100_pmd.c | 18 ++--- > drivers/baseband/acc/rte_vrb_pmd.c | 103 ++++++++++++++++++-------- > drivers/baseband/acc/vrb_pmd.h | 1 + > 3 files changed, 84 insertions(+), 38 deletions(-) > Applied to dpdk-next-baseband/for-main. Thanks, Maxime 11