Page MenuHomeFreeBSD

linuxkpi: Add atomic_dec_and_mutex_lock
ClosedPublic

Authored by manu on May 15 2020, 9:24 AM.
Tags
None
Referenced Files
F168012233: D24847.id.diff
Tue, Aug 25, 10:04 PM
Unknown Object (File)
Tue, Aug 25, 12:35 PM
Unknown Object (File)
Fri, Aug 21, 7:54 PM
Unknown Object (File)
Jul 19 2026, 6:49 PM
Unknown Object (File)
Jul 18 2026, 6:17 AM
Unknown Object (File)
Jul 12 2026, 5:48 PM
Unknown Object (File)
Jul 4 2026, 10:07 PM
Unknown Object (File)
Jul 4 2026, 4:02 AM
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 Not Applicable
Unit
Tests Not Applicable

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

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