Page MenuHomeFreeBSD

Support LSE atomics in the arm64 casue* functions
ClosedPublic

Authored by andrew on May 17 2022, 1:56 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Aug 10, 11:57 PM
Unknown Object (File)
Mon, Aug 10, 11:25 PM
Unknown Object (File)
Mon, Aug 10, 8:09 AM
Unknown Object (File)
Sun, Aug 9, 11:06 PM
Unknown Object (File)
Sun, Aug 9, 11:03 PM
Unknown Object (File)
Wed, Jul 29, 5:58 PM
Unknown Object (File)
Tue, Jul 14, 9:51 PM
Unknown Object (File)
Jul 14 2026, 7:39 AM
Subscribers

Details

Summary

As with atomic(9) use the ARMv8.1 Large System Extension atomic
instructions to implement the userspace compare and swap functions.

Diff Detail

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

Event Timeline

I believe that the patch itself if fine.

But I noted a thing with casueword(32) and its use in kern_umtx.c. It seems that kern_umtx.c assumes that the function has sequential-constistent fence semantic. Note that both lock acquire and release just return success if casueword32 succeeded, in do_lock_normal() and do_unlock_normal(). The full fence semantic is provided on x86, but I suspect all ll/sc arches are affected.

This revision is now accepted and ready to land.May 17 2022, 11:47 PM