aboutsummaryrefslogtreecommitdiff
path: root/rust/kernel
diff options
context:
space:
mode:
authorGravatar Asahi Lina <lina@asahilina.net> 2023-04-03 18:33:52 +0900
committerGravatar Miguel Ojeda <ojeda@kernel.org> 2023-04-22 01:46:45 +0200
commit4e1746656839ab1e88d76eec4d2fa0b41d585604 (patch)
tree3636331016fa3b21e46f4d54d0741c3b7f1021d4 /rust/kernel
parentrust: sync: introduce `CondVar` (diff)
downloadlinux-4e1746656839ab1e88d76eec4d2fa0b41d585604.tar.gz
linux-4e1746656839ab1e88d76eec4d2fa0b41d585604.tar.bz2
linux-4e1746656839ab1e88d76eec4d2fa0b41d585604.zip
rust: uapi: Add UAPI crate
This crate mirrors the `bindings` crate, but will contain only UAPI bindings. Unlike the bindings crate, drivers may directly use this crate if they have to interface with userspace. Initially, just bind the generic ioctl stuff. In the future, we would also like to add additional checks to ensure that all types exposed by this crate satisfy UAPI-safety guarantees (that is, they are safely castable to/from a "bag of bits"). [ Miguel: added support for the `rustdoc` and `rusttest` targets, since otherwise they fail, and we want to keep them working. ] Reviewed-by: Martin Rodriguez Reboredo <yakoyoku@gmail.com> Signed-off-by: Asahi Lina <lina@asahilina.net> Link: https://lore.kernel.org/r/20230329-rust-uapi-v2-1-bca5fb4d4a12@asahilina.net Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Diffstat (limited to 'rust/kernel')
-rw-r--r--rust/kernel/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/rust/kernel/lib.rs b/rust/kernel/lib.rs
index ee27e10da479..dd3b0d69fdd1 100644
--- a/rust/kernel/lib.rs
+++ b/rust/kernel/lib.rs
@@ -50,6 +50,7 @@ pub mod types;
#[doc(hidden)]
pub use bindings;
pub use macros;
+pub use uapi;
#[doc(hidden)]
pub use build_error::build_error;