{"api_version":"1","generated_at":"2026-08-22T21:53:01+00:00","cve":"CVE-2026-74658","urls":{"html":"https://cve.report/CVE-2026-74658","api":"https://cve.report/api/cve/CVE-2026-74658.json","docs":"https://cve.report/api","cve_org":"https://www.cve.org/CVERecord?id=CVE-2026-74658","nvd":"https://nvd.nist.gov/vuln/detail/CVE-2026-74658"},"summary":{"title":"futex: Prevent robust futex exit race some more","description":"In the Linux kernel, the following vulnerability has been resolved:\n\nfutex: Prevent robust futex exit race some more\n\nA robust futex unlock stores 0 over the whole futex value - wiping\nFUTEX_WAITERS - and wakes a single waiter. That wakeup is a one-shot\nnotification: the protocol relies on its recipient to either acquire the\nfutex (and eventually unlock while aware of the remaining contention) or\nre-arm FUTEX_WAITERS before sleeping again.  If the woken waiter is killed\nbefore it can do either, the kernel must jump in and wake the next task\ndown the line.\n\nThis is a known complication of the futex protocol with a previous\npartial fix in commit ca16d5bee598 (\"futex: Prevent robust futex exit\nrace\"). Unfortunately, that fix is insufficient.\n\nIf a third task re-acquired the futex through the uncontended fast\npath in the meantime, the notification is lost: robust exit processing\nsees that it is owned by another task and does nothing, while the new\nowner sees no FUTEX_WAITERS when it unlocks and wakes nobody.\nThe remaining waiters sleep forever behind a free futex:\n\n  A owns the futex, B and C sleep in FUTEX_WAIT\n                                        uval == A | FUTEX_WAITERS\n  A robust unlock: store 0, FUTEX_WAKE(1) wakes B\n                                        uval == 0\n  D fast path acquire: cmpxchg(0 -> D)\n                                        uval == D, no FUTEX_WAITERS\n  B killed before acting on the wakeup\n  B exit walk, pending op: owner D != B -> no action\n  D unlock: no FUTEX_WAITERS -> no wake\n                                        C sleeps forever\n\nThis is clearly a shortcoming in the implementation, which fails to keep\nthe FUTEX_WAITERS bit consistent.\n\nWork around this by augmenting the robust list exit processing to also\nperform the extra wakeup if the futex word is owned by another thread but\nFUTEX_WAITERS is not set.\n\nThis does not fix the problem of a non-contended take over/release and free\nsequence, which has been discussed for years and has been addressed by\ncommit 3ca9595d9fb6 (\"futex: Add support for unlocking robust futexes\") and\nsubsequent changes, but failed to take the problem described above into\naccount.\n\nA more complete solution which is based on the in kernel unlock of\ncontended robust futexes has been discussed in the context of this change\nand should show up in mainline sooner than later.\n\n[ tglx: Amend change log slightly and fixup coding style ]","state":"PUBLISHED","assigner":"Linux","published_at":"2026-08-22 16:16:39","updated_at":"2026-08-22 16:16:39"},"problem_types":[],"metrics":[],"references":[{"url":"https://git.kernel.org/stable/c/a1c2b7b86a946b6b172bce44d74553da2323a36c","name":"https://git.kernel.org/stable/c/a1c2b7b86a946b6b172bce44d74553da2323a36c","refsource":"416baaa9-dc9f-4396-8d5f-8c081fb06d67","tags":[],"title":"","mime":"","httpstatus":"","archivestatus":"0"},{"url":"https://git.kernel.org/stable/c/925628656b73b70930972ccde421de4f758d8650","name":"https://git.kernel.org/stable/c/925628656b73b70930972ccde421de4f758d8650","refsource":"416baaa9-dc9f-4396-8d5f-8c081fb06d67","tags":[],"title":"","mime":"","httpstatus":"","archivestatus":"0"},{"url":"https://git.kernel.org/stable/c/7cf710e70f9bb8ea75f759ebed09871801315992","name":"https://git.kernel.org/stable/c/7cf710e70f9bb8ea75f759ebed09871801315992","refsource":"416baaa9-dc9f-4396-8d5f-8c081fb06d67","tags":[],"title":"","mime":"","httpstatus":"","archivestatus":"0"},{"url":"https://git.kernel.org/stable/c/33bfa85458105d6169ebdb697f692b8bb8025bae","name":"https://git.kernel.org/stable/c/33bfa85458105d6169ebdb697f692b8bb8025bae","refsource":"416baaa9-dc9f-4396-8d5f-8c081fb06d67","tags":[],"title":"","mime":"","httpstatus":"","archivestatus":"0"},{"url":"https://git.kernel.org/stable/c/7b8c53263f8878bdd12c87e147ac6feca5c05211","name":"https://git.kernel.org/stable/c/7b8c53263f8878bdd12c87e147ac6feca5c05211","refsource":"416baaa9-dc9f-4396-8d5f-8c081fb06d67","tags":[],"title":"","mime":"","httpstatus":"","archivestatus":"0"},{"url":"https://git.kernel.org/stable/c/6d4514ca9cdf61fec4ec634cf50386f6f7e69748","name":"https://git.kernel.org/stable/c/6d4514ca9cdf61fec4ec634cf50386f6f7e69748","refsource":"416baaa9-dc9f-4396-8d5f-8c081fb06d67","tags":[],"title":"","mime":"","httpstatus":"","archivestatus":"0"},{"url":"https://git.kernel.org/stable/c/aa5c571901c6b22b58373693a4bf889ecab11ff5","name":"https://git.kernel.org/stable/c/aa5c571901c6b22b58373693a4bf889ecab11ff5","refsource":"416baaa9-dc9f-4396-8d5f-8c081fb06d67","tags":[],"title":"","mime":"","httpstatus":"","archivestatus":"0"},{"url":"https://git.kernel.org/stable/c/83b0f71d5a313a765754acab51d2ecc5de76e0b9","name":"https://git.kernel.org/stable/c/83b0f71d5a313a765754acab51d2ecc5de76e0b9","refsource":"416baaa9-dc9f-4396-8d5f-8c081fb06d67","tags":[],"title":"","mime":"","httpstatus":"","archivestatus":"0"},{"url":"https://www.cve.org/CVERecord?id=CVE-2026-74658","name":"CVE Program record","refsource":"CVE.ORG","tags":["canonical"]},{"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-74658","name":"NVD vulnerability detail","refsource":"NVD","tags":["canonical","analysis"]}],"affected":[{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected ca16d5bee59807bf04deaab0a8eccecd5061528c 83b0f71d5a313a765754acab51d2ecc5de76e0b9 git","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected ca16d5bee59807bf04deaab0a8eccecd5061528c a1c2b7b86a946b6b172bce44d74553da2323a36c git","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected ca16d5bee59807bf04deaab0a8eccecd5061528c 33bfa85458105d6169ebdb697f692b8bb8025bae git","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected ca16d5bee59807bf04deaab0a8eccecd5061528c aa5c571901c6b22b58373693a4bf889ecab11ff5 git","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected ca16d5bee59807bf04deaab0a8eccecd5061528c 925628656b73b70930972ccde421de4f758d8650 git","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected ca16d5bee59807bf04deaab0a8eccecd5061528c 7b8c53263f8878bdd12c87e147ac6feca5c05211 git","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected ca16d5bee59807bf04deaab0a8eccecd5061528c 7cf710e70f9bb8ea75f759ebed09871801315992 git","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected ca16d5bee59807bf04deaab0a8eccecd5061528c 6d4514ca9cdf61fec4ec634cf50386f6f7e69748 git","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected 8dd558881e0f4d6942c19bd8f7b1a7c19becb59e git","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected b90aa237f469c3575190a5e6a855b76ad1d2ce94 git","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected 3e24098da750991f75819069c79e090dfd029219 git","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected 2819f4030f43057238992a4adcd950d7c95aff65 git","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected 2c60b44d8ba9d62c2693d2692f118177f212b1a8 git","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected 82ca3ab31b9cf23b86436a85381e4c5757bc6b80 git","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected 3.16.82 3.17 semver","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected 4.9.264 4.10 semver","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected 4.14.158 4.15 semver","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected 4.19.87 4.20 semver","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected 5.3.14 5.4 semver","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected 5.4.1 5.5 semver","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"affected 5.5","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"unaffected 5.5 semver","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"unaffected 5.10.265 5.10.* semver","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"unaffected 5.15.216 5.15.* semver","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"unaffected 6.1.183 6.1.* semver","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"unaffected 6.6.152 6.6.* semver","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"unaffected 6.12.104 6.12.* semver","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"unaffected 6.18.45 6.18.* semver","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"unaffected 7.1.9 7.1.* semver","platforms":[]},{"source":"CNA","vendor":"Linux","product":"Linux","version":"unaffected 7.2 * original_commit_for_fix","platforms":[]}],"timeline":[],"solutions":[],"workarounds":[],"exploits":[],"credits":[],"nvd_cpes":[],"vendor_comments":[],"enrichments":{"kev":null,"epss":null,"legacy_qids":[]},"source_records":{"cve_program":{"containers":{"cna":{"affected":[{"defaultStatus":"unaffected","product":"Linux","programFiles":["kernel/futex/core.c"],"repo":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git","vendor":"Linux","versions":[{"lessThan":"83b0f71d5a313a765754acab51d2ecc5de76e0b9","status":"affected","version":"ca16d5bee59807bf04deaab0a8eccecd5061528c","versionType":"git"},{"lessThan":"a1c2b7b86a946b6b172bce44d74553da2323a36c","status":"affected","version":"ca16d5bee59807bf04deaab0a8eccecd5061528c","versionType":"git"},{"lessThan":"33bfa85458105d6169ebdb697f692b8bb8025bae","status":"affected","version":"ca16d5bee59807bf04deaab0a8eccecd5061528c","versionType":"git"},{"lessThan":"aa5c571901c6b22b58373693a4bf889ecab11ff5","status":"affected","version":"ca16d5bee59807bf04deaab0a8eccecd5061528c","versionType":"git"},{"lessThan":"925628656b73b70930972ccde421de4f758d8650","status":"affected","version":"ca16d5bee59807bf04deaab0a8eccecd5061528c","versionType":"git"},{"lessThan":"7b8c53263f8878bdd12c87e147ac6feca5c05211","status":"affected","version":"ca16d5bee59807bf04deaab0a8eccecd5061528c","versionType":"git"},{"lessThan":"7cf710e70f9bb8ea75f759ebed09871801315992","status":"affected","version":"ca16d5bee59807bf04deaab0a8eccecd5061528c","versionType":"git"},{"lessThan":"6d4514ca9cdf61fec4ec634cf50386f6f7e69748","status":"affected","version":"ca16d5bee59807bf04deaab0a8eccecd5061528c","versionType":"git"},{"status":"affected","version":"8dd558881e0f4d6942c19bd8f7b1a7c19becb59e","versionType":"git"},{"status":"affected","version":"b90aa237f469c3575190a5e6a855b76ad1d2ce94","versionType":"git"},{"status":"affected","version":"3e24098da750991f75819069c79e090dfd029219","versionType":"git"},{"status":"affected","version":"2819f4030f43057238992a4adcd950d7c95aff65","versionType":"git"},{"status":"affected","version":"2c60b44d8ba9d62c2693d2692f118177f212b1a8","versionType":"git"},{"status":"affected","version":"82ca3ab31b9cf23b86436a85381e4c5757bc6b80","versionType":"git"},{"lessThan":"3.17","status":"affected","version":"3.16.82","versionType":"semver"},{"lessThan":"4.10","status":"affected","version":"4.9.264","versionType":"semver"},{"lessThan":"4.15","status":"affected","version":"4.14.158","versionType":"semver"},{"lessThan":"4.20","status":"affected","version":"4.19.87","versionType":"semver"},{"lessThan":"5.4","status":"affected","version":"5.3.14","versionType":"semver"},{"lessThan":"5.5","status":"affected","version":"5.4.1","versionType":"semver"}]},{"defaultStatus":"affected","product":"Linux","programFiles":["kernel/futex/core.c"],"repo":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git","vendor":"Linux","versions":[{"status":"affected","version":"5.5"},{"lessThan":"5.5","status":"unaffected","version":"0","versionType":"semver"},{"lessThanOrEqual":"5.10.*","status":"unaffected","version":"5.10.265","versionType":"semver"},{"lessThanOrEqual":"5.15.*","status":"unaffected","version":"5.15.216","versionType":"semver"},{"lessThanOrEqual":"6.1.*","status":"unaffected","version":"6.1.183","versionType":"semver"},{"lessThanOrEqual":"6.6.*","status":"unaffected","version":"6.6.152","versionType":"semver"},{"lessThanOrEqual":"6.12.*","status":"unaffected","version":"6.12.104","versionType":"semver"},{"lessThanOrEqual":"6.18.*","status":"unaffected","version":"6.18.45","versionType":"semver"},{"lessThanOrEqual":"7.1.*","status":"unaffected","version":"7.1.9","versionType":"semver"},{"lessThanOrEqual":"*","status":"unaffected","version":"7.2","versionType":"original_commit_for_fix"}]}],"cpeApplicability":[{"nodes":[{"cpeMatch":[{"criteria":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","versionEndExcluding":"5.10.265","versionStartIncluding":"5.5","vulnerable":true},{"criteria":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","versionEndExcluding":"5.15.216","versionStartIncluding":"5.5","vulnerable":true},{"criteria":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","versionEndExcluding":"6.1.183","versionStartIncluding":"5.5","vulnerable":true},{"criteria":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","versionEndExcluding":"6.6.152","versionStartIncluding":"5.5","vulnerable":true},{"criteria":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","versionEndExcluding":"6.12.104","versionStartIncluding":"5.5","vulnerable":true},{"criteria":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","versionEndExcluding":"6.18.45","versionStartIncluding":"5.5","vulnerable":true},{"criteria":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","versionEndExcluding":"7.1.9","versionStartIncluding":"5.5","vulnerable":true},{"criteria":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","versionEndExcluding":"7.2","versionStartIncluding":"5.5","vulnerable":true},{"criteria":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","versionStartIncluding":"3.16.82","vulnerable":true},{"criteria":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","versionStartIncluding":"4.9.264","vulnerable":true},{"criteria":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","versionStartIncluding":"4.14.158","vulnerable":true},{"criteria":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","versionStartIncluding":"4.19.87","vulnerable":true},{"criteria":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","versionStartIncluding":"5.3.14","vulnerable":true},{"criteria":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","versionStartIncluding":"5.4.1","vulnerable":true}],"negate":false,"operator":"OR"}]}],"descriptions":[{"lang":"en","value":"In the Linux kernel, the following vulnerability has been resolved:\n\nfutex: Prevent robust futex exit race some more\n\nA robust futex unlock stores 0 over the whole futex value - wiping\nFUTEX_WAITERS - and wakes a single waiter. That wakeup is a one-shot\nnotification: the protocol relies on its recipient to either acquire the\nfutex (and eventually unlock while aware of the remaining contention) or\nre-arm FUTEX_WAITERS before sleeping again.  If the woken waiter is killed\nbefore it can do either, the kernel must jump in and wake the next task\ndown the line.\n\nThis is a known complication of the futex protocol with a previous\npartial fix in commit ca16d5bee598 (\"futex: Prevent robust futex exit\nrace\"). Unfortunately, that fix is insufficient.\n\nIf a third task re-acquired the futex through the uncontended fast\npath in the meantime, the notification is lost: robust exit processing\nsees that it is owned by another task and does nothing, while the new\nowner sees no FUTEX_WAITERS when it unlocks and wakes nobody.\nThe remaining waiters sleep forever behind a free futex:\n\n  A owns the futex, B and C sleep in FUTEX_WAIT\n                                        uval == A | FUTEX_WAITERS\n  A robust unlock: store 0, FUTEX_WAKE(1) wakes B\n                                        uval == 0\n  D fast path acquire: cmpxchg(0 -> D)\n                                        uval == D, no FUTEX_WAITERS\n  B killed before acting on the wakeup\n  B exit walk, pending op: owner D != B -> no action\n  D unlock: no FUTEX_WAITERS -> no wake\n                                        C sleeps forever\n\nThis is clearly a shortcoming in the implementation, which fails to keep\nthe FUTEX_WAITERS bit consistent.\n\nWork around this by augmenting the robust list exit processing to also\nperform the extra wakeup if the futex word is owned by another thread but\nFUTEX_WAITERS is not set.\n\nThis does not fix the problem of a non-contended take over/release and free\nsequence, which has been discussed for years and has been addressed by\ncommit 3ca9595d9fb6 (\"futex: Add support for unlocking robust futexes\") and\nsubsequent changes, but failed to take the problem described above into\naccount.\n\nA more complete solution which is based on the in kernel unlock of\ncontended robust futexes has been discussed in the context of this change\nand should show up in mainline sooner than later.\n\n[ tglx: Amend change log slightly and fixup coding style ]"}],"providerMetadata":{"dateUpdated":"2026-08-22T15:32:32.190Z","orgId":"416baaa9-dc9f-4396-8d5f-8c081fb06d67","shortName":"Linux"},"references":[{"url":"https://git.kernel.org/stable/c/83b0f71d5a313a765754acab51d2ecc5de76e0b9"},{"url":"https://git.kernel.org/stable/c/a1c2b7b86a946b6b172bce44d74553da2323a36c"},{"url":"https://git.kernel.org/stable/c/33bfa85458105d6169ebdb697f692b8bb8025bae"},{"url":"https://git.kernel.org/stable/c/aa5c571901c6b22b58373693a4bf889ecab11ff5"},{"url":"https://git.kernel.org/stable/c/925628656b73b70930972ccde421de4f758d8650"},{"url":"https://git.kernel.org/stable/c/7b8c53263f8878bdd12c87e147ac6feca5c05211"},{"url":"https://git.kernel.org/stable/c/7cf710e70f9bb8ea75f759ebed09871801315992"},{"url":"https://git.kernel.org/stable/c/6d4514ca9cdf61fec4ec634cf50386f6f7e69748"}],"title":"futex: Prevent robust futex exit race some more","x_generator":{"engine":"bippy-1.2.0"}}},"cveMetadata":{"assignerOrgId":"416baaa9-dc9f-4396-8d5f-8c081fb06d67","assignerShortName":"Linux","cveId":"CVE-2026-74658","datePublished":"2026-08-22T15:32:32.190Z","dateReserved":"2026-08-15T05:44:03.924Z","dateUpdated":"2026-08-22T15:32:32.190Z","state":"PUBLISHED"},"dataType":"CVE_RECORD","dataVersion":"5.2"},"nvd":{"publishedDate":"2026-08-22 16:16:39","lastModifiedDate":"2026-08-22 16:16:39","problem_types":[],"metrics":[],"configurations":[]},"legacy_mitre":{"record":{"CveYear":"2026","CveId":"74658","Ordinal":"1","Title":"futex: Prevent robust futex exit race some more","CVE":"CVE-2026-74658","Year":"2026"},"notes":[{"CveYear":"2026","CveId":"74658","Ordinal":"1","NoteData":"In the Linux kernel, the following vulnerability has been resolved:\n\nfutex: Prevent robust futex exit race some more\n\nA robust futex unlock stores 0 over the whole futex value - wiping\nFUTEX_WAITERS - and wakes a single waiter. That wakeup is a one-shot\nnotification: the protocol relies on its recipient to either acquire the\nfutex (and eventually unlock while aware of the remaining contention) or\nre-arm FUTEX_WAITERS before sleeping again.  If the woken waiter is killed\nbefore it can do either, the kernel must jump in and wake the next task\ndown the line.\n\nThis is a known complication of the futex protocol with a previous\npartial fix in commit ca16d5bee598 (\"futex: Prevent robust futex exit\nrace\"). Unfortunately, that fix is insufficient.\n\nIf a third task re-acquired the futex through the uncontended fast\npath in the meantime, the notification is lost: robust exit processing\nsees that it is owned by another task and does nothing, while the new\nowner sees no FUTEX_WAITERS when it unlocks and wakes nobody.\nThe remaining waiters sleep forever behind a free futex:\n\n  A owns the futex, B and C sleep in FUTEX_WAIT\n                                        uval == A | FUTEX_WAITERS\n  A robust unlock: store 0, FUTEX_WAKE(1) wakes B\n                                        uval == 0\n  D fast path acquire: cmpxchg(0 -> D)\n                                        uval == D, no FUTEX_WAITERS\n  B killed before acting on the wakeup\n  B exit walk, pending op: owner D != B -> no action\n  D unlock: no FUTEX_WAITERS -> no wake\n                                        C sleeps forever\n\nThis is clearly a shortcoming in the implementation, which fails to keep\nthe FUTEX_WAITERS bit consistent.\n\nWork around this by augmenting the robust list exit processing to also\nperform the extra wakeup if the futex word is owned by another thread but\nFUTEX_WAITERS is not set.\n\nThis does not fix the problem of a non-contended take over/release and free\nsequence, which has been discussed for years and has been addressed by\ncommit 3ca9595d9fb6 (\"futex: Add support for unlocking robust futexes\") and\nsubsequent changes, but failed to take the problem described above into\naccount.\n\nA more complete solution which is based on the in kernel unlock of\ncontended robust futexes has been discussed in the context of this change\nand should show up in mainline sooner than later.\n\n[ tglx: Amend change log slightly and fixup coding style ]","Type":"Description","Title":"futex: Prevent robust futex exit race some more"}]}}}