Skip to content

Commit 7d815f4

Browse files
haiyangzliuw
authored andcommitted
PCI: hv: Add check for hyperv_initialized in init_hv_pci_drv()
Add check for hv_is_hyperv_initialized() at the top of init_hv_pci_drv(), so if the pci-hyperv driver is force-loaded on non Hyper-V platforms, the init_hv_pci_drv() will exit immediately, without any side effects, like assignments to hvpci_block_ops, etc. Signed-off-by: Haiyang Zhang <[email protected]> Reported-and-tested-by: Mohammad Alqayeem <[email protected]> Reviewed-by: Wei Liu <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Wei Liu <[email protected]>
1 parent a4d7e8a commit 7d815f4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

drivers/pci/controller/pci-hyperv.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3476,6 +3476,9 @@ static void __exit exit_hv_pci_drv(void)
34763476

34773477
static int __init init_hv_pci_drv(void)
34783478
{
3479+
if (!hv_is_hyperv_initialized())
3480+
return -ENODEV;
3481+
34793482
/* Set the invalid domain number's bit, so it will not be used */
34803483
set_bit(HVPCI_DOM_INVALID, hvpci_dom_map);
34813484

0 commit comments

Comments
 (0)