Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'pci-v6.16-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci

Pull PCI fix from Bjorn Helgaas:

- Fix a PTM debugfs build error with CONFIG_DEBUG_FS=n &&
CONFIG_PCIE_PTM=y (Manivannan Sadhasivam)

* tag 'pci-v6.16-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci:
PCI/PTM: Build debugfs code only if CONFIG_DEBUG_FS is enabled

+2
+2
drivers/pci/pcie/ptm.c
··· 254 254 } 255 255 EXPORT_SYMBOL(pcie_ptm_enabled); 256 256 257 + #if IS_ENABLED(CONFIG_DEBUG_FS) 257 258 static ssize_t context_update_write(struct file *file, const char __user *ubuf, 258 259 size_t count, loff_t *ppos) 259 260 { ··· 553 552 debugfs_remove_recursive(ptm_debugfs->debugfs); 554 553 } 555 554 EXPORT_SYMBOL_GPL(pcie_ptm_destroy_debugfs); 555 + #endif