Page MenuHomeFreeBSD

linux(4): Get rid of __WCLONE handling.
AbandonedPublic

Authored by dchagin on May 11 2022, 6:00 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Apr 17, 8:49 PM
Unknown Object (File)
Wed, Apr 17, 5:44 PM
Unknown Object (File)
Thu, Apr 11, 6:29 PM
Unknown Object (File)
Tue, Apr 9, 8:28 PM
Unknown Object (File)
Thu, Mar 21, 1:29 PM
Unknown Object (File)
Feb 19 2024, 4:43 AM
Unknown Object (File)
Dec 23 2023, 7:36 PM
Unknown Object (File)
Dec 20 2023, 8:08 AM
Subscribers

Details

Reviewers
None
Group Reviewers
Linux Emulation
Summary

SInce 81338031 (switch linuxulator to use the native 1:1 threads)
_WALL, _WCLONE flags are broken due to the fact that (to Linux kernel)
no distinction between processes and threads - everything is runnable
task. This allows do a weird things like waiting for a thread status
change by wait() API, unlike FreeBSD where wait() is process intended
only.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 45534
Build 42422: arc lint + arc unit

Event Timeline

emaste added inline comments.
sys/compat/linux/linux_misc.c
1002

case typo (SInce)

2760–2761

do you have a sense of how common __WCLONE use is in various Linux applications?
(of course if it's broken we shouldn't pretend to support it - I'm just curious)

sys/compat/linux/linux_misc.c
2760–2761

I haven't seen, NPTL does not use _WCLONE, however illumos implemented it (I don't know the reason or bug)

leave WLINUXCLONE define as libsysdecode mktables fails,
it uses $DSTDIR/include, not $SRCDIR to build.