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

Pull compute express link fixes from Dan Williams:

- Fix a compilation issue with DEFINE_STATIC_SRCU() in the unit tests

- Fix leaking kernel memory to a root-only sysfs attribute

* tag 'cxl-fixes-6.4-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/cxl/cxl:
cxl: Add missing return to cdat read error path
tools/testing/cxl: Use DEFINE_STATIC_SRCU()

+2 -1
+1
drivers/cxl/core/pci.c
··· 571 571 /* Don't leave table data allocated on error */ 572 572 devm_kfree(dev, cdat_table); 573 573 dev_err(dev, "CDAT data read error\n"); 574 + return; 574 575 } 575 576 576 577 port->cdat.table = cdat_table + sizeof(__le32);
+1 -1
tools/testing/cxl/test/mock.c
··· 19 19 } 20 20 EXPORT_SYMBOL_GPL(register_cxl_mock_ops); 21 21 22 - static DEFINE_SRCU(cxl_mock_srcu); 22 + DEFINE_STATIC_SRCU(cxl_mock_srcu); 23 23 24 24 void unregister_cxl_mock_ops(struct cxl_mock_ops *ops) 25 25 {