From patchwork Thu Jan 5 13:57:18 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 121623 X-Patchwork-Delegate: jerinj@marvell.com 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 D004FA00C2; Thu, 5 Jan 2023 14:57:33 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 779EC400EF; Thu, 5 Jan 2023 14:57:33 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 5970240041 for ; Thu, 5 Jan 2023 14:57:32 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1672927051; 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; bh=/Zc8HPjTNZWWm9qUySKJuMGGlbD0fqfycTNWgdvR87A=; b=Tf6zzG0ENZdb3/Ut+7QD1t4rB+xYidUiqYyElDcCQOWCuxldtE3e7PUN9Sw8pknC8Zgfd1 idvNFfndw6W8F2G46ndmLEZmsntHtOFHwIVjjA7Eg2JTDzPY36xg2RW3RJbSSSuo19bbnj eqKwn3fL+fzhzlv1XU21j3jCd8jgYRA= 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-155-glUfR6JTNamznI9SWapj3w-1; Thu, 05 Jan 2023 08:57:27 -0500 X-MC-Unique: glUfR6JTNamznI9SWapj3w-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 2A0928028B0; Thu, 5 Jan 2023 13:57:27 +0000 (UTC) Received: from dmarchan.redhat.com (ovpn-193-12.brq.redhat.com [10.40.193.12]) by smtp.corp.redhat.com (Postfix) with ESMTP id C44552026D4B; Thu, 5 Jan 2023 13:57:25 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org, Nithin Dabilpuram , Kiran Kumar K , Sunil Kumar Kori , Satha Rao , Vidya Sagar Velumuri Subject: [PATCH] net/cnxk: fix deadlock in security session creation Date: Thu, 5 Jan 2023 14:57:18 +0100 Message-Id: <20230105135718.4162914-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.4 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.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 Releasing the lock was missing in this branch. Fixes: 4440eb88ddfc ("net/cnxk: use full context IPsec structures") Cc: stable@dpdk.org Signed-off-by: David Marchand Acked-by: Fan Zhang Acked-by: Nithin Dabilpuram --- drivers/net/cnxk/cn9k_ethdev_sec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/cnxk/cn9k_ethdev_sec.c b/drivers/net/cnxk/cn9k_ethdev_sec.c index 67966a4e49..327f221e38 100644 --- a/drivers/net/cnxk/cn9k_ethdev_sec.c +++ b/drivers/net/cnxk/cn9k_ethdev_sec.c @@ -556,6 +556,7 @@ cn9k_eth_sec_session_create(void *device, if (!dev->outb.lf_base) { plt_err("Could not allocate security session private data"); + rte_spinlock_unlock(lock); return -ENOMEM; }