Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d3005fbc authored by Denis Kirjanov's avatar Denis Kirjanov Committed by Benjamin Herrenschmidt
Browse files

powerpc/iseries: Fix possible null pointer dereference in iSeries_pcibios_fixup_resources



I don't know if this is a right fix for the problem
since of_get_property can return NULL.
Since iseries_device_information is used only for informational purpose,
we can skip this function without valid HvSubBusNumber number.

Signed-off-by: default avatarDenis Kirjanov <dkirjanov@kernel.org>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent 33ad5e4b
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -445,7 +445,11 @@ void __init iSeries_pcibios_fixup_resources(struct pci_dev *pdev)
	}

	allocate_device_bars(pdev);
	if (likely(sub_bus))
		iseries_device_information(pdev, bus, *sub_bus);
	else
		printk(KERN_ERR "PCI: Device node %s has missing or invalid "
				"linux,subbus property\n", node->full_name);
}

/*