I am trying to rescan PCI bus in my own kernel driver with the help of pci_rescan_bus()
kernel function but I do not see it is functioning same.
If I try to do same from user space by running following command, I see that rescanning happens:
echo 1 > /sys/devices/pci0000:00/0000:00:14.1/rescan
I am trying to re-initialize my ethernet ports which sit on PCI bus. Below is the code I am using for now:
struct pci_dev *pci_eth_dev01, *pci_eth_dev02 = NULL;
pci_eth_dev01 = pci_get_device(0x10ec, 0x8168, NULL);
if (pci_eth_dev01 != NULL)
dev_info(&info->client->dev, "class - %2X\tbus number - %d\n", pci_eth_dev01->class, pci_eth_dev01->bus->number);
else
dev_info(&info->client->dev, "Error retreiving pci device\n");
pci_eth_dev02 = pci_get_device(0x10ec, 0x8168, pci_eth_dev01);
if (pci_eth_dev02 != NULL)
dev_info(&info->client->dev, "class - %2X\tbus number - %d\n", pci_eth_dev02->class, pci_eth_dev02->bus->number);
else
dev_info(&info->client->dev, "Error retreiving pci device\n");
pci_stop_and_remove_bus_device(pci_eth_dev02);
pci_remove_bus(pci_eth_dev02->bus);
unsigned int ret = 0;
pci_lock_rescan_remove();
ret = pci_rescan_bus(pci_eth_dev02->bus);
pci_unlock_rescan_remove();
dev_info(&info->client->dev, "ret from pci_rescan_bus - %d\n", ret);
I get 2
as a return value from pci_rescan_bus()
function call.
Am I doing anything wrong here?