Skip to content
This repository has been archived by the owner on Sep 28, 2024. It is now read-only.

Commit

Permalink
Revert "RH7: PCI: hv: Make sure the bus domain is really unique"
Browse files Browse the repository at this point in the history
This reverts commit 636fd88.

(cherry picked from commit c4e45f4)
  • Loading branch information
Johnson authored and johnsongeorge-w committed Apr 11, 2019
1 parent ecb698e commit 286d652
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions hv-rhel7.x/hv/pci-hyperv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1507,6 +1507,19 @@ static struct hv_pci_dev *new_pcichild_device(struct hv_pcibus_device *hbus,
get_pcichild(hpdev, hv_pcidev_ref_initial);
get_pcichild(hpdev, hv_pcidev_ref_childlist);
spin_lock_irqsave(&hbus->device_list_lock, flags);
/*
* When a device is being added to the bus, we set the PCI domain
* number to be the device serial number, which is non-zero and
* unique on the same VM. The serial numbers start with 1, and
* increase by 1 for each device. So device names including this
* can have shorter names than based on the bus instance UUID.
* Only the first device serial number is used for domain, so the
* domain number will not change after the first device is added.
* The lower 16 bits of the serial number is used, otherwise some
* drivers may not be able to handle it.
*/
if (list_empty(&hbus->children))
hbus->sysdata.domain = desc->ser & 0xFFFF;
list_add_tail(&hpdev->list_entry, &hbus->children);
spin_unlock_irqrestore(&hbus->device_list_lock, flags);
return hpdev;
Expand Down

0 comments on commit 286d652

Please sign in to comment.