Page MenuHomeFreeBSD

linuxkpi: Add atomic_dec_and_mutex_lock
ClosedPublic

Authored by manu on May 15 2020, 9:24 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Nov 6, 3:07 PM
Unknown Object (File)
Oct 18 2024, 5:13 PM
Unknown Object (File)
Oct 15 2024, 12:27 AM
Unknown Object (File)
Oct 12 2024, 6:36 PM
Unknown Object (File)
Oct 1 2024, 6:45 AM
Unknown Object (File)
Sep 28 2024, 4:23 AM
Unknown Object (File)
Sep 24 2024, 1:16 AM
Unknown Object (File)
Sep 16 2024, 5:47 PM
Subscribers

Details

Summary

This function decrement the counter and if the result is 0 it acquires
the mutex and returns 1, if not it simply returns 0.
Needed by DRM from Linux v5.3

Sponsored-by: The FreeBSD Foundation

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

manu requested review of this revision.May 15 2020, 9:24 AM
This revision was not accepted when it landed; it landed in state Needs Review.May 17 2020, 8:09 PM
This revision was automatically updated to reflect the committed changes.
head/sys/compat/linuxkpi/common/include/linux/mutex.h
129 ↗(On Diff #71891)

Try to follow BSD style. Linebreak after int, before atomic_ .