index
:
linux-rng
jd/vdso-skip-insn
jd/vdso-test-harness
linus/master
master
Development tree for the kernel CSPRNG
Jason A. Donenfeld
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
rust
/
pin-init
Age
Commit message (
Expand
)
Author
Files
Lines
2026-08-05
rust: pin-init: add `#[inline]` to small functions
Gary Guo
4
-0
/
+28
2026-08-05
rust: pin-init: remove `__pinned_init` method for `cfg(kernel)`
Gary Guo
1
-1
/
+2
2026-08-05
rust: pin-init: add `raw_init` and `raw_try_init` and recommend over `__init`
Gary Guo
2
-3
/
+34
2026-08-03
rust: pin-init: merge `__pinned_init` and `__init`
Gary Guo
4
-102
/
+67
2026-08-03
rust: pin-init: examples: use `Wrapper::pin_init` instead of manual reimplementation
Gary Guo
1
-5
/
+1
2026-07-27
rust: pin-init: mark `pin_init::zeroed` and `Zeroable::zeroed` as `#[inline]`
Nicolás Antinori
1
-0
/
+2
2026-07-27
rust: pin-init: docs: link `Zeroable::zeroed` and `pin_init::zeroed` in documentation
Nicolás Antinori
1
-2
/
+8
2026-07-27
rust: pin-init: internal: rework how `#[pin_data]` handles cfg
Gary Guo
1
-18
/
+64
2026-07-13
rust: pin-init: make `[pin_]chain` unwind safe
Mirko Adzic
1
-12
/
+10
2026-07-13
rust: pin-init: make `[pin_]init_array_from_fn` unwind safe
Mirko Adzic
1
-42
/
+80
2026-07-13
rust: pin-init: internal: generate brace in macro for init code blocks
Gary Guo
1
-2
/
+4
2026-07-13
rust: pin-init: internal: remove `allow` and `expect`s that don't fire
Gary Guo
2
-4
/
+1
2026-07-13
rust: pin-init: remove redundant clippy expects in doc tests
Gary Guo
1
-7
/
+0
2026-07-13
rust: pin-init: examples: fix incorrect drop
Gary Guo
1
-4
/
+1
2026-07-13
rust: pin-init: internal: error on duplicate `#[pin]` attribute
Luiz Georg
1
-2
/
+5
2026-05-29
rust: pin_init: internal: use `loop {}` to produce never value
Gary Guo
1
-1
/
+1
2026-05-29
rust: pin-init: remove `E` from `InitClosure`
Gary Guo
1
-3
/
+3
2026-05-29
rust: pin-init: move `InitClosure` out from `__internal`
Gary Guo
2
-32
/
+32
2026-05-29
rust: pin-init: docs: fix typos in MaybeZeroable documentation
Xiaobo Liu
1
-2
/
+2
2026-05-29
rust: pin-init: internal: suppress `non_snake_case` lint in `[pin_]init!`
Mirko Adzic
1
-1
/
+3
2026-05-29
rust: pin-init: internal: suppress `non_snake_case` lint in `#[pin_data]`
Mirko Adzic
1
-2
/
+10
2026-05-29
rust: pin-init: internal: pin_data: filter non-`#[cfg]` attr in generated code
Martin Kletzander
1
-23
/
+27
2026-05-18
rust: pin-init: internal: project using full slot
Gary Guo
3
-10
/
+9
2026-05-18
rust: pin-init: internal: project slots instead of references
Gary Guo
4
-123
/
+133
2026-05-18
rust: pin-init: internal: make `make_closure` inherent methods
Gary Guo
3
-53
/
+23
2026-05-18
rust: pin-init: internal: use marker on drop guard type for pinned fields
Gary Guo
3
-44
/
+68
2026-05-18
rust: pin-init: internal: init: handle code blocks early
Gary Guo
1
-45
/
+55
2026-05-14
rust: pin-init: internal: add `PhantomInvariant` and `PhantomInvariantLifetime`
Gary Guo
3
-21
/
+59
2026-05-14
rust: pin-init: internal: pin_data: add struct to record field info
Mohamad Alsadhan
1
-21
/
+32
2026-05-14
rust: pin-init: internal: pin_data: use closure for `handle_field`
Gary Guo
1
-74
/
+70
2026-05-10
rust: pin-init: examples: fix `useless_borrows_in_formatting` clippy warning
Gary Guo
3
-3
/
+3
2026-05-10
rust: pin-init: internal: remove `collect_tuple` polyfill after MSRV bump
Gary Guo
1
-19
/
+8
2026-05-10
rust: pin-init: internal: turn `PhantomPinned` error into warnings
Gary Guo
2
-1
/
+15
2026-05-10
rust: pin-init: cleanup workaround for old Rust compiler
Gary Guo
2
-24
/
+3
2026-05-10
rust: pin-init: fix badge URL in README
Gary Guo
1
-1
/
+1
2026-05-10
rust: pin-init: internal: adjust license identifier of `zeroable.rs`
Benno Lossin
1
-1
/
+1
2026-05-10
rust: pin-init: internal: remove redundant `#[pin]` filtering
Gary Guo
1
-4
/
+0
2026-05-10
rust: pin-init: internal: add missing where clause to projection types
Mohamad Alsadhan
1
-1
/
+3
2026-05-10
rust: pin-init: extend `impl_zeroable_option` macro to handle generics
Mohamad Alsadhan
1
-15
/
+14
2026-05-10
rust: pin-init: cleanup `Zeroable` and `ZeroableOptions`
Mohamad Alsadhan
1
-23
/
+23
2026-05-10
rust: pin-init: bump minimum Rust version to 1.82
Gary Guo
7
-18
/
+0
2026-05-10
rust: pin-init: examples: mark as `#[inline]` all `From::from()`s for `Error`
Alistair Francis
1
-0
/
+2
2026-04-30
rust: pin-init: fix incorrect accessor reference lifetime
Gary Guo
2
-68
/
+66
2026-04-30
rust: pin-init: internal: move alignment check to `make_field_check`
Gary Guo
1
-41
/
+37
2026-03-25
rust: pin-init: replace `addr_of_mut!` with `&raw mut`
Antonio Hickey
8
-10
/
+14
2026-03-25
rust: pin-init: implement ZeroableOption for NonZero* integer types
Hamdan-Khan
1
-7
/
+14
2026-03-25
rust: pin-init: doc: de-clutter documentation with fake-variadics
Gary Guo
1
-1
/
+18
2026-03-25
rust: pin-init: properly document let binding workaround
Benno Lossin
3
-6
/
+20
2026-03-25
rust: pin-init: build: simplify use of nightly features
Gary Guo
6
-10
/
+7
2026-03-12
rust: pin-init: replace shadowed return token by `unsafe`-to-create token
Benno Lossin
2
-19
/
+31
[next]