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 'cxl-fixes-6.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/cxl/cxl

Pull cxl fix from Ira Weiny:

- Fix calculation for SBDF in error injection

* tag 'cxl-fixes-6.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/cxl/cxl:
EINJ, CXL: Fix CXL device SBDF calculation

+1 -1
+1 -1
drivers/acpi/apei/einj-cxl.c
··· 63 63 seg = bridge->domain_nr; 64 64 65 65 bus = pbus->number; 66 - *sbdf = (seg << 24) | (bus << 16) | dport_dev->devfn; 66 + *sbdf = (seg << 24) | (bus << 16) | (dport_dev->devfn << 8); 67 67 68 68 return 0; 69 69 }