rust: lock: introduce `Mutex`
authorWedson Almeida Filho <walmeida@microsoft.com>
Tue, 11 Apr 2023 05:45:33 +0000 (02:45 -0300)
committerMiguel Ojeda <ojeda@kernel.org>
Fri, 21 Apr 2023 22:20:00 +0000 (00:20 +0200)
commit6d20d629c6d8575be98eeebe49a16fb2d7b32350
tree7c0df7bfbfbcdc511ebec0272bee28e60746cccc
parent76d4bd591e1101df69c44c819041e374c63f1194
rust: lock: introduce `Mutex`

This is the `struct mutex` lock backend and allows Rust code to use the
kernel mutex idiomatically.

Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Will Deacon <will@kernel.org>
Cc: Waiman Long <longman@redhat.com>
Reviewed-by: Martin Rodriguez Reboredo <yakoyoku@gmail.com>
Signed-off-by: Wedson Almeida Filho <walmeida@microsoft.com>
Link: https://lore.kernel.org/r/20230411054543.21278-3-wedsonaf@gmail.com
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
rust/helpers.c
rust/kernel/sync.rs
rust/kernel/sync/lock.rs
rust/kernel/sync/lock/mutex.rs [new file with mode: 0644]