PCI: Check for alloc failure in pci_request_irq()
authorZeng Heng <zengheng4@huawei.com>
Mon, 21 Nov 2022 02:00:29 +0000 (10:00 +0800)
committerBjorn Helgaas <bhelgaas@google.com>
Mon, 21 Nov 2022 22:55:18 +0000 (16:55 -0600)
commit2d9cd957d40c3ac491b358e7cff0515bb07a3a9c
tree144af1838c4e86482e5c94a3138594b65858cb1d
parent98b04dd0b4577894520493d96bc4623387767445
PCI: Check for alloc failure in pci_request_irq()

When kvasprintf() fails to allocate memory, it returns a NULL pointer.
Return error from pci_request_irq() so we don't dereference it.

[bhelgaas: commit log]
Fixes: 704e8953d3e9 ("PCI/irq: Add pci_request_irq() and pci_free_irq() helpers")
Link: https://lore.kernel.org/r/20221121020029.3759444-1-zengheng4@huawei.com
Signed-off-by: Zeng Heng <zengheng4@huawei.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
drivers/pci/irq.c