From patchwork Fri Feb 10 17:58:32 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Chautru, Nicolas" X-Patchwork-Id: 123699 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id AA2F541C50; Fri, 10 Feb 2023 19:02:45 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 78E3B42B8C; Fri, 10 Feb 2023 19:02:45 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 1D957410D3; Fri, 10 Feb 2023 19:02:42 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1676052163; x=1707588163; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Wq8aALRNSQPoiCL+MTE/66Pr1DXCJIo49C+ENdBscJo=; b=CEZ4N2UQ6bQ6LCfoGXBLOTIuEXxo/BPA2vhXJwLBdb4QYFYa0x3uFQk3 DaV1tCxkE7OpVMwsu1OyKPnpWvYvZYBzDjsXClWxxe8S/gwLBz5v8dFm3 yxgXaZUPtjdyNQ8MeTjbJ8dviuV62x4aQgKyw3obMYcMpsiImI2MbvzAl naU4rvYOr2UmL1xfJV+E+/eybuv3gCtEaNTR0fP3IZUgfOwgAciiLPlfJ uBqiJO7hrUmoH1gr7oAJqzoASmCAgSIQUUXmLVqTT6uao0hfJvmJlMGXC dPuPlXKCLVyZPpfFsUYKDpNhXGzrCp+OiVcSfuiOuDn6lJMhbx9FhzJn6 A==; X-IronPort-AV: E=McAfee;i="6500,9779,10617"; a="310117898" X-IronPort-AV: E=Sophos;i="5.97,287,1669104000"; d="scan'208";a="310117898" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Feb 2023 10:02:14 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10617"; a="670076698" X-IronPort-AV: E=Sophos;i="5.97,287,1669104000"; d="scan'208";a="670076698" Received: from spr-npg-bds1-eec2.sn.intel.com (HELO spr-npg-bds1-eec2..) ([10.233.181.123]) by fmsmga007.fm.intel.com with ESMTP; 10 Feb 2023 10:02:14 -0800 From: Nicolas Chautru To: dev@dpdk.org, maxime.coquelin@redhat.com Cc: hernan.vargas@intel.com, stable@dpdk.org, Nicolas Chautru Subject: [PATCH v2 0/9] baseband/acc: VRB PMD fixes Date: Fri, 10 Feb 2023 17:58:32 +0000 Message-Id: <20230210175841.303450-1-nicolas.chautru@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230209221929.265059-2-nicolas.chautru@intel.com> References: <20230209221929.265059-2-nicolas.chautru@intel.com> MIME-Version: 1.0 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 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(-)