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 branch 'x86-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip

* 'x86-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
x86, mrst: Don't blindly access extended config space

+4
+4
arch/x86/pci/mrst.c
··· 247 247 u32 size; 248 248 int i; 249 249 250 + /* Must have extended configuration space */ 251 + if (dev->cfg_size < PCIE_CAP_OFFSET + 4) 252 + return; 253 + 250 254 /* Fixup the BAR sizes for fixed BAR devices and make them unmoveable */ 251 255 offset = fixed_bar_cap(dev->bus, dev->devfn); 252 256 if (!offset || PCI_DEVFN(2, 0) == dev->devfn ||