Re: [PATCH 1/2] iwl4965: Add missing check for create_singlethread_workqueue

From: Jiasheng Jiang <hidden>
Date: 2023-02-09 01:11:37
Also in: linux-wireless, lkml

On Thu, Feb 09, 2023 at 04:16:58AM +0800, Stanislaw Gruszka wrote:
On Wed, Feb 08, 2023 at 02:30:31PM +0800, Jiasheng Jiang wrote:
quoted
Add the check for the return value of the create_singlethread_workqueue
in order to avoid NULL pointer dereference.

Fixes: b481de9ca074 ("[IWLWIFI]: add iwlwifi wireless drivers")
Signed-off-by: Jiasheng Jiang <redacted>
Acked-by: Stanislaw Gruszka <stf_xl@wp.pl>
quoted
 static void
@@ -6618,7 +6622,11 @@ il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
 		goto out_disable_msi;
 	}
 
-	il4965_setup_deferred_work(il);
+	err = il4965_setup_deferred_work(il);
+	if (err) {
+		goto out_free_irq;
+	}
{} not needded.
I have submitted a v2 removing the "{}" with your Ack.

Thanks,
Jiang
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help