From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3F301419FBB; Fri, 4 Sep 2026 05:23:12 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788499393; cv=none; b=BRaDP+W4kszZE6uP1ff8+tnLBSaPA8WgTSeu6Y9fDH4p4KriefxaFYukb/mtbum8Puam6ugzOQdcd28+XLKlx6VM16q+CIBHzNeULgD3YbGVp6MrAHt9bR4V9XRfU9DxKAtF8QktLRDM9wWuflIKQkq1WME1a/Sm9zUrtaNXW6g= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788499393; c=relaxed/simple; bh=kxSvCJJMvBZhM1PcEBbv3XRL0V86wacMJIJ+ZJF+c38=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=LtozLxpxdF5pedP8/uAI/fbwz+mlywEPkRPoiAOo3hIR8wvxW9IIezAKDIBcePIgwpgJtsNiQyrmQRcLVDkL4RS5ghW9xot9rHYzGztDJqOsOcYkas+N/8htAaVRPEpqM2oPs3zNoTuDv5SK1pCUzNXpzQcX9XVrfWIGFMc+wuc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ABD5rnaN; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="ABD5rnaN" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9726A1F00A3D; Fri, 4 Sep 2026 05:23:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1788499392; bh=f/uLEJ2/TMZcmdfZuT2tybA3+1OGOSAf0fzhbNDFASE=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=ABD5rnaNKT80kPzKqrsac8AtQZkNzGvMPcAcscRh42LAs9fZ8IOZvBAoO23fTZjM8 BXFXo8ksbuUaNVHy0Ghl2pOXmZvGPjBgV8ko0tEthokCksg9hZPRxDaPtsUSQN0zHm 8Y0ZkhIBQRLhzCHsm1TiRMdH+mdDvD/S/LcRUp0c= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jeff Layton , Chuck Lever Subject: [PATCH 7.2 399/713] svcrdma: Use svc_xprt_put to free listener on create failure Date: Fri, 4 Sep 2026 06:56:07 +0200 Message-ID: <20260904045812.769466661@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260904045803.810145556@linuxfoundation.org> References: <20260904045803.810145556@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 7.2-stable review patch. If anyone has any objections, please let me know. ------------------ From: Chuck Lever commit e346ef7bcb137f50c49f969330ab7dcf64ea1654 upstream. svc_rdma_create() calls kfree(cma_xprt) when svc_rdma_create_listen_id() fails. svc_xprt_init() has already acquired a net namespace reference via get_net_track(); kfree bypasses svc_xprt_free() which releases it. Replace the kfree() with svc_xprt_put() so the kref_init birth reference drops to zero and svc_xprt_free() dispatches svc_rdma_free() to clean up properly. sc_cm_id is still NULL at that point; the preceding patch added the necessary NULL guard in svc_rdma_free(). svc_xprt_free() also drops the module reference via module_put(), but the caller _svc_xprt_create() does the same on xpo_create failure, double-putting the single try_module_get() it acquired. Take a compensating __module_get() before the svc_xprt_put() to keep the count balanced, matching the convention in svc_rdma_accept()'s error path. Fixes: 4fb8518bdac8 ("sunrpc: Tag svc_xprt with net") Cc: stable@vger.kernel.org Acked-by: Jeff Layton Link: https://patch.msgid.link/20260527-rdma-follow-on-v1-3-1b09bd87b6cd@oracle.com Signed-off-by: Chuck Lever Signed-off-by: Greg Kroah-Hartman --- net/sunrpc/xprtrdma/svc_rdma_transport.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) --- a/net/sunrpc/xprtrdma/svc_rdma_transport.c +++ b/net/sunrpc/xprtrdma/svc_rdma_transport.c @@ -393,7 +393,13 @@ static struct svc_xprt *svc_rdma_create( listen_id = svc_rdma_create_listen_id(net, sa, cma_xprt); if (IS_ERR(listen_id)) { - kfree(cma_xprt); + /* _svc_xprt_create() acquired one module reference and + * puts it on xpo_create failure. svc_xprt_free() puts + * a second one when the kref drops to zero. Take a + * compensating reference so both puts are balanced. + */ + __module_get(cma_xprt->sc_xprt.xpt_class->xcl_owner); + svc_xprt_put(&cma_xprt->sc_xprt); return ERR_CAST(listen_id); } cma_xprt->sc_cm_id = listen_id;