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 'locking_urgent_for_v6.16_rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull locking fixes from Borislav Petkov:

- Disable FUTEX_PRIVATE_HASH for this cycle due to a performance
regression

- Add a selftests compilation product to the corresponding .gitignore
file

* tag 'locking_urgent_for_v6.16_rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
selftests/futex: Add futex_numa to .gitignore
futex: Temporary disable FUTEX_PRIVATE_HASH

+5
+4
init/Kconfig
··· 1716 1716 depends on FUTEX && RT_MUTEXES 1717 1717 default y 1718 1718 1719 + # 1720 + # marked broken for performance reasons; gives us one more cycle to sort things out. 1721 + # 1719 1722 config FUTEX_PRIVATE_HASH 1720 1723 bool 1721 1724 depends on FUTEX && !BASE_SMALL && MMU 1725 + depends on BROKEN 1722 1726 default y 1723 1727 1724 1728 config FUTEX_MPOL
+1
tools/testing/selftests/futex/functional/.gitignore
··· 11 11 futex_wait_uninitialized_heap 12 12 futex_wait_wouldblock 13 13 futex_waitv 14 + futex_numa