xref: /linux/rust/kernel/interop.rs (revision f9f0b4a1f35d39a1a2a2f8ec46eb7b81efc70a63)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 //! Infrastructure for interfacing Rust code with C kernel subsystems.
4 //!
5 //! This module is intended for low-level, unsafe Rust infrastructure code
6 //! that interoperates between Rust and C. It is *not* for use directly in
7 //! Rust drivers.
8 
9 pub mod list;
10