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 8F17441D625; Thu, 30 Jul 2026 15:36:06 +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=1785425767; cv=none; b=aEz+wGeFK2NqEr5qcSCo7MlynQsdniDPyxeQkxf58vclln/Q/A3mUN0cp5eZott+AqyvG4vCGcK3UA83dNPMqDhQhrAUORcajg8lw+EYcdCGxXwSLTY9lX2YBZvp12jC0ij2OzMcTHwHSLQZipW8CcZuAWbPd5UG4rGoVHiUnmY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785425767; c=relaxed/simple; bh=QHFCgde73ecZ945ukS2lDQMLobm8dsdpX+q7Kh59Cbg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=uSzIAUjc7JctaUoCjPx+b8qfJllDKPKXWppv6u9RSy8rHKKpAtSWySER7DRsrW1oUrXTeBhdBsqG5fKwblelNUyPoBaVPK13s2IJbHJXe1qo4+lqpiUzR3C3c1BrsU8abCAFYNEd12D4C4YNvDeYLejIJ+rMU1+yimzg3p1bdaA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=1OphB94z; 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="1OphB94z" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EA6811F000E9; Thu, 30 Jul 2026 15:36:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1785425766; bh=kY98UTpM9Lgxkvk7iNtiT6nioi5ephrRpRHJl9NyRUM=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=1OphB94zT/u+sh0tIlWQItklm0kwKiUfwYhHdfHIKpByVOwYEBIY0X4cH/ZBPnQ36 72VMWHpKa24sfLDj0bD4syZhnIcXFOQeZxsAxL9a+awko9eS37eFtswwM+oKDSApaJ BiVgCj0Z5VsmAIuigXiCSB4DPNs+lEmpQmbPLYgM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ruoyu Wang , Paolo Abeni , Sasha Levin Subject: [PATCH 6.12 182/602] wan: wanxl: Only reset hardware after BAR mapping Date: Thu, 30 Jul 2026 16:09:34 +0200 Message-ID: <20260730141439.787547925@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260730141435.976815864@linuxfoundation.org> References: <20260730141435.976815864@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Ruoyu Wang [ Upstream commit 91957b89da995607cb654b1f9a3c126ddbaee10f ] wanxl_pci_init_one() stores the freshly allocated card in driver data before the PLX BAR is mapped. Several early probe failures then unwind through wanxl_pci_remove_one(), including failure to allocate the coherent status area or to restore the DMA mask. wanxl_pci_remove_one() unconditionally calls wanxl_reset(), and wanxl_reset() dereferences card->plx. On those early failures card->plx is still NULL, so the error path can dereference a NULL MMIO pointer. Only issue the hardware reset once the BAR mapping exists. The remaining cleanup in wanxl_pci_remove_one() already checks whether later resources were allocated. This issue was found by a static analysis checker and confirmed by manual source review. Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2") Signed-off-by: Ruoyu Wang Link: https://patch.msgid.link/20260708143415.3169358-1-ruoyuw560@gmail.com Signed-off-by: Paolo Abeni Signed-off-by: Sasha Levin --- drivers/net/wan/wanxl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/wan/wanxl.c b/drivers/net/wan/wanxl.c index 5a9e262188efe1..c38dd741401e13 100644 --- a/drivers/net/wan/wanxl.c +++ b/drivers/net/wan/wanxl.c @@ -514,7 +514,8 @@ static void wanxl_pci_remove_one(struct pci_dev *pdev) if (card->irq) free_irq(card->irq, card); - wanxl_reset(card); + if (card->plx) + wanxl_reset(card); for (i = 0; i < RX_QUEUE_LENGTH; i++) if (card->rx_skbs[i]) { -- 2.53.0