This patchset introduces a new futex implementation called throughput-optimized (TO) futexes. It is similar to PI futexes in its calling convention, but provides better throughput than the wait-wake futexes by encouraging lock stealing and optimistic spinning. The timeout parameter, however, isn't quite working yet. More investigation will have to be done to see if this can be fixed or the timeout parameter has to be scrapped entirely. Waiman Long (4): futex: Add futex_set_timer() helper function futex: Rename futex_pi_state to futex_state futex: Throughput-optimized (TO) futexes futex, doc: TO futexes document Documentation/00-INDEX | 2 + Documentation/to-futex.txt | 124 ++++++++ include/linux/sched.h | 4 +- include/uapi/linux/futex.h | 4 + kernel/futex.c | 675 ++++++++++++++++++++++++++++++++++++++------ 5 files changed, 719 insertions(+), 90 deletions(-) create mode 100644 Documentation/to-futex.txt -- To unsubscribe from this list: send the line "unsubscribe linux-doc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html