index
:
starfive-tech/linux.git
JH7100_VisionFive_OH_dev
JH7110_VisionFive2_510_devel
JH7110_VisionFive2_6.1.y_devel
JH7110_VisionFive2_6.12.y_devel
JH7110_VisionFive2_6.6.y_devel
JH7110_VisionFive2_devel
JH7110_VisionFive2_upstream
beaglev-5.13.y
beaglev_fedora_devel
buildroot-upstream
esmil_starlight
fedora-vic-7100_5.10.6
master
openwrt-6.1.y
pinetabv-6.6.y-devel
rt-ethercat-release
rt-linux-6.6.y-release
rt-linux-release
rtthread_AMP
starfive-5.13
starfive-5.15-dubhe
starfive-6.1-dubhe
starfive-6.1.65-dubhe
starfive-6.6.10-dubhe
starfive-6.6.31-dubhe
starfive-6.6.48-dubhe
starfive-6.6.63-dubhe
starlight-5.14.y
visionfive
visionfive-5.13.y-devel
visionfive-5.15.y
visionfive-5.15.y-devel
visionfive-5.15.y_fedora_devel
visionfive-5.16.y
visionfive-5.17.y
visionfive-5.18.y
visionfive-5.19.y
visionfive-6.4.y
visionfive_fedora_devel
StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)
Andrey V.Kosteltsev
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
rust
/
kernel
/
alloc
Age
Commit message (
Expand
)
Author
Files
Lines
2025-04-22
rust: alloc: allow coercion from `Box<T>` to `Box<dyn U>` if T implements U
Alexandre Courbot
1
-1
/
+39
2025-04-07
rust: alloc: use `spare_capacity_mut` to reduce unsafe
Tamir Duberstein
1
-8
/
+3
2025-04-07
rust: alloc: add Vec::resize method
Andrew Ballance
1
-0
/
+27
2025-04-07
rust: alloc: add Vec::truncate method
Andrew Ballance
1
-0
/
+35
2025-04-07
rust: alloc: add missing invariant in Vec::set_len()
Danilo Krummrich
1
-0
/
+3
2025-03-31
Merge tag 'rust-6.15' of git://git.kernel.org/pub/scm/linux/kernel/git/ojeda/...
Linus Torvalds
2
-1
/
+13
2025-03-26
Merge tag 'rust-hrtimer-for-v6.15-v3' of https://github.com/Rust-for-Linux/li...
Miguel Ojeda
1
-0
/
+6
2025-03-22
rust: alloc: add `Box::into_pin`
Andreas Hindborg
1
-0
/
+6
2025-03-16
rust: make pin-init its own crate
Benno Lossin
1
-2
/
+2
2025-03-16
rust: add `ZeroableOption` and implement it instead of `Zeroable` for `Option...
Benno Lossin
1
-2
/
+2
2025-03-16
rust: pin-init: move impl `Zeroable` for `Opaque` and `Option<KBox<T>>` into ...
Benno Lossin
1
-1
/
+7
2025-03-16
rust: pin-init: move `InPlaceInit` and impls of `InPlaceWrite` into the kerne...
Benno Lossin
1
-1
/
+2
2025-03-06
rust: alloc: make `ReallocFunc::call` inline
Gary Guo
1
-0
/
+1
2025-03-06
rust: alloc: satisfy POSIX alignment requirement
Tamir Duberstein
1
-0
/
+18
2025-01-14
rust: kernel: add improved version of `ForeignOwnable::borrow_mut`
Alice Ryhl
1
-0
/
+21
2025-01-14
rust: kernel: change `ForeignOwnable` pointer to mut
Tamir Duberstein
1
-8
/
+8
2025-01-14
rust: types: avoid `as` casts
Tamir Duberstein
1
-4
/
+4
2025-01-14
rust: alloc: add doctest for `ArrayLayout::new()`
Jimmy Ostler
1
-0
/
+19
2024-12-18
rust: alloc: align Debug implementation for Box with Display
Guangbo Cui
1
-1
/
+1
2024-12-18
rust: alloc: implement Display for Box
Guangbo Cui
1
-0
/
+10
2024-11-25
rust: alloc: Fix `ArrayLayout` allocations
Asahi Lina
1
-1
/
+1
2024-11-11
rust: use custom FFI integer types
Gary Guo
3
-9
/
+9
2024-10-16
kbuild: rust: remove the `alloc` crate and `GlobalAlloc`
Danilo Krummrich
1
-63
/
+2
2024-10-16
rust: alloc: implement `Cmalloc` in module allocator_test
Danilo Krummrich
1
-8
/
+81
2024-10-16
rust: alloc: remove `VecExt` extension
Danilo Krummrich
1
-185
/
+0
2024-10-16
rust: alloc: implement `collect` for `IntoIter`
Danilo Krummrich
1
-0
/
+95
2024-10-16
rust: alloc: implement `IntoIterator` for `Vec`
Danilo Krummrich
1
-0
/
+170
2024-10-16
rust: alloc: implement kernel `Vec` type
Danilo Krummrich
1
-0
/
+648
2024-10-15
rust: alloc: introduce `ArrayLayout`
Benno Lossin
1
-0
/
+91
2024-10-15
rust: alloc: remove extension of std's `Box`
Danilo Krummrich
1
-89
/
+0
2024-10-15
rust: alloc: implement kernel `Box`
Danilo Krummrich
1
-0
/
+456
2024-10-15
rust: alloc: implement `KVmalloc` allocator
Danilo Krummrich
2
-0
/
+37
2024-10-15
rust: alloc: implement `Vmalloc` allocator
Danilo Krummrich
2
-0
/
+38
2024-10-15
rust: alloc: add module `allocator_test`
Danilo Krummrich
1
-0
/
+20
2024-10-15
rust: alloc: implement `Allocator` for `Kmalloc`
Danilo Krummrich
1
-3
/
+28
2024-10-15
rust: alloc: implement `ReallocFunc`
Danilo Krummrich
1
-0
/
+70
2024-10-14
rust: alloc: rename `KernelAllocator` to `Kmalloc`
Danilo Krummrich
1
-3
/
+3
2024-10-14
rust: alloc: separate `aligned_size` from `krealloc_aligned`
Danilo Krummrich
1
-7
/
+12
2024-10-07
rust: enable `clippy::undocumented_unsafe_blocks` lint
Miguel Ojeda
1
-0
/
+2
2024-09-25
Merge tag 'rust-6.12' of https://github.com/Rust-for-Linux/linux
Linus Torvalds
1
-1
/
+32
2024-09-05
rust: avoid `box_uninit_write` feature
Miguel Ojeda
1
-2
/
+4
2024-08-27
rust: alloc: eschew `Box<MaybeUninit<T>>::write`
Jubilee Young
1
-2
/
+4
2024-08-22
rust: kernel: add `drop_contents` to `BoxExt`
Benno Lossin
1
-1
/
+30
2024-07-15
Merge branch 'slab/for-6.11/buckets' into slab/for-next
Vlastimil Babka
1
-13
/
+6
2024-07-03
slab, rust: extend kmalloc() alignment guarantees to remove Rust padding
Vlastimil Babka
1
-13
/
+6
2024-06-12
rust: avoid unused import warning in `rusttest`
Miguel Ojeda
1
-2
/
+5
2024-05-08
rust: alloc: fix dangling pointer in VecExt<T>::reserve()
Danilo Krummrich
1
-2
/
+9
2024-05-05
rust: kernel: remove redundant imports
Miguel Ojeda
3
-4
/
+0
2024-04-16
rust: kernel: remove usage of `allocator_api` unstable feature
Wedson Almeida Filho
2
-4
/
+3
2024-04-16
rust: alloc: update `VecExt` to take allocation flags
Wedson Almeida Filho
1
-15
/
+143
[next]