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 195953DAABE; Mon, 17 Aug 2026 14:28:19 +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=1786976901; cv=none; b=Z4rxlgDi7Kau2REtn4QjnXpnt0OtCXVFz9CFYVMpZJ5koD4p91xtTZq6TIoqvw1kx8/Nz6oRc8nYHD3xfOxrNIpHv1Iw5esugEbLs/YtH1golCK0sII3zA30eC4fNP2qQIROdRLwBHW0OBrrM3hP9fhbLCVyYDeS1UAmD3zDCZU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786976901; c=relaxed/simple; bh=48mz/54R4HJsoAHFycHgykSNJawD31WTSay9V119wQM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=WDgHqvCuwoCCnIIWuQsjNga3uK3LB3hRz/4ISEYPQnKDiewwYG6NWEa/Dy0j+97tYRzOrk3Or7cBeQL2vWk6jwcxAwaUzHP380emGJ+ZN1GXUZCepgzc2KwUhIYSmauUatRSQkKaC8fqxxTpqLByMg50bQiPlo2LlVBD4uSxwkw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=aWxnCNI5; 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="aWxnCNI5" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 36B491F000E9; Mon, 17 Aug 2026 14:28:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786976899; bh=8RR7Go2tSmBlyckKstAI2Qt1tJXdFLfJ5HYfNdpZ96k=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=aWxnCNI5pQhOrQjZ26sTP4OzrHpEzEgDz9TYlfcMe9eUyoqqeh/qFcOX5z3uoRrBp YUCnfCnJ9te1474WuEZAYZ3/dDObaiEYFrnqyH8vjpfQtLxE2cYR7OpjbCktUvcKHb d1dcZCraC0mWz5Wwsb3P8GXzSsOqAILRSlDJapOg= 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 5.15 104/456] wan: wanxl: Only reset hardware after BAR mapping Date: Mon, 17 Aug 2026 15:28:14 +0200 Message-ID: <20260817132544.159859229@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260817132539.792407575@linuxfoundation.org> References: <20260817132539.792407575@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 5.15-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