ACPI / PCI: fix acpi_pci_irq_enable() memory leak
authorWenwen Wang <wenwen@cs.uga.edu>
Wed, 21 Aug 2019 03:44:19 +0000 (22:44 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 5 Oct 2019 10:30:26 +0000 (12:30 +0200)
commit9118efffc1e9ff1cacaaebfbe6272bd84bfc4cdf
tree552bbef5994fac9665b71c38db0f0071e6d83bf6
parent5c12dadcbef8cd55ef1f5dac799bfcbb7ea7db1d
ACPI / PCI: fix acpi_pci_irq_enable() memory leak

[ Upstream commit 29b49958cf73b439b17fa29e9a25210809a6c01c ]

In acpi_pci_irq_enable(), 'entry' is allocated by kzalloc() in
acpi_pci_irq_check_entry() (invoked from acpi_pci_irq_lookup()). However,
it is not deallocated if acpi_pci_irq_valid() returns false, leading to a
memory leak. To fix this issue, free 'entry' before returning 0.

Fixes: e237a5518425 ("x86/ACPI/PCI: Recognize that Interrupt Line 255 means "not connected"")
Signed-off-by: Wenwen Wang <wenwen@cs.uga.edu>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/acpi/pci_irq.c