summaryrefslogtreecommitdiff
path: root/rust/kernel
AgeCommit message (Expand)AuthorFilesLines
2023-06-13rust: error: `impl Debug` for `Error` with `errname()` integrationGary Guo1-0/+39
2023-05-31rust: task: add `Send` marker to `Task`Alice Ryhl1-2/+8
2023-05-31rust: specify when `ARef` is thread safeAlice Ryhl1-0/+13
2023-05-31rust: sync: reword the `Arc` safety comment for `Sync`Alice Ryhl1-3/+5
2023-05-31rust: sync: reword the `Arc` safety comment for `Send`Alice Ryhl1-2/+2
2023-05-31rust: sync: implement `AsRef<T>` for `Arc<T>`Alice Ryhl1-0/+6
2023-05-31rust: sync: add `Arc::ptr_eq`Alice Ryhl1-0/+5
2023-05-31rust: error: add missing error codesAlice Ryhl1-0/+20
2023-05-31rust: str: add conversion from `CStr` to `CString`Alice Ryhl1-0/+22
2023-05-31rust: error: allow specifying error type on `Result`Alice Ryhl1-1/+1
2023-05-31rust: init: update macro expansion example in docsBenno Lossin1-37/+48
2023-05-31rust: upgrade to Rust 1.68.2Miguel Ojeda4-4/+9
2023-05-31rust: arc: fix intra-doc link in `Arc<T>::init`Miguel Ojeda1-1/+1
2023-04-30Merge tag 'rust-6.4' of https://github.com/Rust-for-Linux/linuxLinus Torvalds17-8/+4084
2023-04-22rust: ioctl: Add ioctl number manipulation functionsAsahi Lina2-0/+73
2023-04-22rust: uapi: Add UAPI crateAsahi Lina1-0/+1
2023-04-22rust: sync: introduce `CondVar`Wedson Almeida Filho3-1/+176
2023-04-22rust: lock: add `Guard::do_unlocked`Wedson Almeida Filho2-2/+30
2023-04-22rust: sync: introduce `LockedBy`Wedson Almeida Filho3-1/+159
2023-04-22rust: introduce `current`Wedson Almeida Filho2-1/+83
2023-04-22rust: add basic `Task`Wedson Almeida Filho2-0/+76
2023-04-22rust: introduce `ARef`Wedson Almeida Filho1-0/+107
2023-04-22rust: lock: introduce `SpinLock`Wedson Almeida Filho3-1/+118
2023-04-22rust: lock: introduce `Mutex`Wedson Almeida Filho3-0/+121
2023-04-22rust: sync: introduce `Lock` and `Guard`Wedson Almeida Filho2-1/+163
2023-04-21rust: sync: introduce `LockClassKey`Wedson Almeida Filho1-0/+45
2023-04-21rust: init: broaden the blanket impl of `Init`Benno Lossin1-2/+2
2023-04-12rust: sync: add functions for initializing `UniqueArc<MaybeUninit<T>>`Benno Lossin1-0/+24
2023-04-12rust: sync: reduce stack usage of `UniqueArc::try_new_uninit`Benno Lossin2-4/+13
2023-04-12rust: types: add `Opaque::ffi_init`Benno Lossin2-0/+29
2023-04-12rust: prelude: add `pin-init` API items to preludeBenno Lossin1-1/+5
2023-04-12rust: init: add `Zeroable` trait and `init::zeroed` functionBenno Lossin1-2/+95
2023-04-12rust: init: add `stack_pin_init!` macroBenno Lossin2-6/+191
2023-04-12rust: init: add `PinnedDrop` trait and macrosBenno Lossin3-0/+390
2023-04-12rust: init/sync: add `InPlaceInit` trait to pin-initialize smart pointersBenno Lossin2-13/+139
2023-04-12rust: init: add initialization macrosBenno Lossin3-5/+1639
2023-04-12rust: add pin-init API coreBenno Lossin3-0/+226
2023-04-12rust: types: add `Opaque::raw_get`Benno Lossin1-0/+8
2023-04-12rust: sync: change error type of constructor functionsBenno Lossin1-4/+4
2023-04-12rust: enable the `pin_macro` featureBenno Lossin1-0/+1
2023-04-12rust: error: Add from_result() helperWedson Almeida Filho1-0/+39
2023-04-12rust: error: Add a helper to convert a C ERR_PTR to a `Result`Sven Van Asbroeck1-1/+49
2023-04-12rust: error: Add to_result() helperWedson Almeida Filho1-1/+10
2023-04-12rust: error: Add Error::from_errno{_unchecked}()Miguel Ojeda1-0/+32
2023-04-12rust: error: Add Error::to_ptr()Asahi Lina1-0/+7
2023-04-12rust: error: Rename to_kernel_errno() -> to_errno()Asahi Lina1-1/+1
2023-04-12rust: sync: arc: Add UniqueArc<MaybeUninit<T>::assume_init()Asahi Lina1-0/+11
2023-04-11rust: sync: arc: Implement Arc<dyn Any + Send + Sync>::downcast()Asahi Lina2-0/+30
2023-04-10rust: Enable the new_uninit feature for kernel and driver cratesAsahi Lina1-0/+1
2023-04-10rust: sync: impl {Debug,Display} for {Unique,}ArcBoqun Feng1-0/+25