This is the last patch in the series which implements the essentials of the movable BARs feature, so it is turned on by default now. Tested on x86_64; and with extra patches applied, it also works on ppc64le (PowerNV). In case of problems it is still can be overridden by the following command line option: pcie_movable_bars=off Signed-off-by: Sergei Miroshnichenko <s.miroshnichenko@xxxxxxxxx> --- drivers/pci/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index f393f0bc8ec4..98fabff81028 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -76,7 +76,7 @@ static void pci_dev_d3_sleep(struct pci_dev *dev) int pci_domains_supported = 1; #endif -bool pci_can_move_bars; +bool pci_can_move_bars = true; #define DEFAULT_CARDBUS_IO_SIZE (256) #define DEFAULT_CARDBUS_MEM_SIZE (64*1024*1024) -- 2.24.1