summaryrefslogtreecommitdiffstats
path: root/rust/kernel
Commit message (Expand)AuthorAgeFilesLines
* rust: error: Markdown style nitManmohan Shukla2023-10-121-1/+1
* rust: error: fix the description for `ECHILD`Wedson Almeida Filho2023-10-121-1/+1
* Merge tag 'rust-6.6' of https://github.com/Rust-for-Linux/linuxLinus Torvalds2023-08-298-517/+803
|\
| * rust: init: update expanded macro explanationBenno Lossin2023-08-211-57/+69
| * rust: init: add `{pin_}chain` functions to `{Pin}Init<T, E>`Benno Lossin2023-08-212-1/+143
| * rust: init: make `PinInit<T, E>` a supertrait of `Init<T, E>`Benno Lossin2023-08-212-13/+20
| * rust: init: implement `Zeroable` for `UnsafeCell<T>` and `Opaque<T>`Benno Lossin2023-08-211-1/+7
| * rust: init: add support for arbitrary paths in init macrosBenno Lossin2023-08-211-19/+35
| * rust: init: add functions to create array initializersBenno Lossin2023-08-211-0/+88
| * rust: init: add `..Zeroable::zeroed()` syntax for zeroing all missing fieldsBenno Lossin2023-08-212-2/+129
| * rust: init: make initializer values inaccessible after initializingBenno Lossin2023-08-211-9/+11
| * rust: init: wrap type checking struct initializers in a closureBenno Lossin2023-08-211-4/+4
| * rust: init: make guards in the init macros hygienicBenno Lossin2023-08-213-86/+56
| * rust: add derive macro for `Zeroable`Benno Lossin2023-08-212-1/+36
| * rust: init: make `#[pin_data]` compatible with conditional compilation of fieldsBenno Lossin2023-08-211-0/+2
| * rust: init: consolidate init macrosBenno Lossin2023-08-212-366/+259
| * rust: bindgen: upgrade to 0.65.1Aakash Sen Sharma2023-08-151-3/+0
| * rust: upgrade to Rust 1.71.1Miguel Ojeda2023-08-141-49/+2
| * rust: types: make `Opaque` be `!Unpin`Benno Lossin2023-08-101-5/+14
| * rust: make `UnsafeCell` the outer type in `Opaque`Alice Ryhl2023-08-101-5/+5
| * rust: alloc: Add realloc and alloc_zeroed to the GlobalAlloc implBjörn Roy Baron2023-08-071-0/+27
| * rust: allocator: Use krealloc_aligned() in KernelAllocator::allocBoqun Feng2023-08-071-3/+3
| * rust: lock: Add intra-doc links to the Backend traitBen Gooding2023-08-071-3/+3
* | Merge tag 'linux-kselftest-kunit-6.6-rc1' of git://git.kernel.org/pub/scm/lin...Linus Torvalds2023-08-288-15/+197
|\ \ | |/ |/|
| * rust: support running Rust documentation tests as KUnit onesMiguel Ojeda2023-07-192-0/+165
| * rust: types: make doctests compilable/testableMiguel Ojeda2023-07-191-3/+3
| * rust: sync: make doctests compilable/testableMiguel Ojeda2023-07-193-2/+9
| * rust: str: make doctests compilable/testableMiguel Ojeda2023-07-191-1/+3
| * rust: init: make doctests compilable/testableMiguel Ojeda2023-07-181-9/+17
* | rust: delete `ForeignOwnable::borrow_mut`Alice Ryhl2023-08-042-22/+3
* | rust: allocator: Prevent mis-aligned allocationBoqun Feng2023-08-041-15/+59
|/
* rust: error: `impl Debug` for `Error` with `errname()` integrationGary Guo2023-06-131-0/+39
* rust: task: add `Send` marker to `Task`Alice Ryhl2023-05-311-2/+8
* rust: specify when `ARef` is thread safeAlice Ryhl2023-05-311-0/+13
* rust: sync: reword the `Arc` safety comment for `Sync`Alice Ryhl2023-05-311-3/+5
* rust: sync: reword the `Arc` safety comment for `Send`Alice Ryhl2023-05-311-2/+2
* rust: sync: implement `AsRef<T>` for `Arc<T>`Alice Ryhl2023-05-311-0/+6
* rust: sync: add `Arc::ptr_eq`Alice Ryhl2023-05-311-0/+5
* rust: error: add missing error codesAlice Ryhl2023-05-311-0/+20
* rust: str: add conversion from `CStr` to `CString`Alice Ryhl2023-05-311-0/+22
* rust: error: allow specifying error type on `Result`Alice Ryhl2023-05-311-1/+1
* rust: init: update macro expansion example in docsBenno Lossin2023-05-311-37/+48
* rust: upgrade to Rust 1.68.2Miguel Ojeda2023-05-314-4/+9
* rust: arc: fix intra-doc link in `Arc<T>::init`Miguel Ojeda2023-05-311-1/+1
* Merge tag 'rust-6.4' of https://github.com/Rust-for-Linux/linuxLinus Torvalds2023-04-3017-8/+4084
|\
| * rust: ioctl: Add ioctl number manipulation functionsAsahi Lina2023-04-222-0/+73
| * rust: uapi: Add UAPI crateAsahi Lina2023-04-221-0/+1
| * rust: sync: introduce `CondVar`Wedson Almeida Filho2023-04-223-1/+176
| * rust: lock: add `Guard::do_unlocked`Wedson Almeida Filho2023-04-222-2/+30
| * rust: sync: introduce `LockedBy`Wedson Almeida Filho2023-04-223-1/+159