messages from 2024-09-29 15:12:26 to 2024-10-01 15:19:08 UTC [more...]
[WIP RFC v2 00/35] Rust bindings for KMS + RVKMS
2024-10-01 15:18 UTC (39+ messages)
` [WIP RFC v2 01/35] WIP: rust/drm: Add fourcc bindings
` [WIP RFC v2 02/35] WIP: rust: drm: Add traits for registering KMS devices
` [WIP RFC v2 03/35] rust: drm/kms/fbdev: Add FbdevShmem
` [WIP RFC v2 04/35] rust: drm/kms: Introduce the main ModeConfigObject traits
` [WIP RFC v2 05/35] rust: drm/kms: Add bindings for drm_connector
` [WIP RFC v2 06/35] rust: drm/kms: Add drm_plane bindings
` [WIP RFC v2 07/35] WIP: rust: drm/kms: Add drm_crtc bindings
` [WIP RFC v2 08/35] rust: drm/kms: Add bindings for drm_encoder
` [WIP RFC v2 09/35] WIP: rust: drm/kms: Add Connector.attach_encoder()
` [WIP RFC v2 10/35] rust: drm/kms: Add DriverConnector::get_mode callback
` [WIP RFC v2 11/35] rust: drm/kms: Add ConnectorGuard::add_modes_noedid()
` [WIP RFC v2 12/35] rust: drm/kms: Add ConnectorGuard::set_preferred_mode
` [WIP RFC v2 13/35] WIP: rust: drm/kms: Add OpaqueConnector and OpaqueConnectorState
` [WIP RFC v2 14/35] WIP: rust: drm/kms: Add OpaqueCrtc and OpaqueCrtcState
` [WIP RFC v2 15/35] WIP: rust: drm/kms: Add OpaquePlane and OpaquePlaneState
` [WIP RFC v2 16/35] rust: drm/kms: Add RawConnector and RawConnectorState
` [WIP RFC v2 17/35] rust: drm/kms: Add RawCrtc and RawCrtcState
` [WIP RFC v2 18/35] rust: drm/kms: Add RawPlane and RawPlaneState
` [WIP RFC v2 19/35] WIP: rust: drm/kms: Add OpaqueEncoder
` [WIP RFC v2 20/35] WIP: rust: drm/kms: Add drm_atomic_state bindings
` [WIP RFC v2 21/35] rust: drm/kms: Introduce DriverCrtc::atomic_check()
` [WIP RFC v2 22/35] rust: drm/kms: Add DriverPlane::atomic_update()
` [WIP RFC v2 23/35] rust: drm/kms: Add DriverPlane::atomic_check()
` [WIP RFC v2 24/35] rust: drm/kms: Add RawCrtcState::active()
` [WIP RFC v2 25/35] rust: drm/kms: Add RawPlaneState::crtc()
` [WIP RFC v2 26/35] WIP: rust: drm/kms: Add RawPlaneState::atomic_helper_check()
` [WIP RFC v2 27/35] rust: drm/kms: Add drm_framebuffer bindings
` [WIP RFC v2 28/35] rust: drm/kms: Add RawPlane::framebuffer()
` [WIP RFC v2 29/35] rust: drm/kms: Add DriverCrtc::atomic_begin() and atomic_flush()
` [WIP RFC v2 30/35] rust: drm/kms: Add DriverCrtc::atomic_enable() and atomic_disable()
` [WIP RFC v2 31/35] rust: drm: Add Device::event_lock()
` [WIP RFC v2 32/35] rust: drm/kms: Add Device::num_crtcs()
` [WIP RFC v2 33/35] WIP: rust: drm/kms: Add VblankSupport
` [WIP RFC v2 34/35] WIP: rust: drm/kms: Add Kms::atomic_commit_tail
` [WIP RFC v2 35/35] WIP: drm: Introduce RVKMS!
[PATCH v1] RISC-V: disallow gcc + rust builds
2024-10-01 15:12 UTC (2+ messages)
[PATCH net-next v1 0/2] add delay abstraction (sleep functions)
2024-10-01 15:08 UTC (9+ messages)
` [PATCH net-next v1 1/2] rust: add delay abstraction
` [PATCH net-next v1 2/2] net: phy: qt2025: wait until PHY becomes ready
[PATCH v8 00/29] Generic `Allocator` support for Rust
2024-10-01 15:00 UTC (30+ messages)
` [PATCH v8 01/29] rust: alloc: add `Allocator` trait
` [PATCH v8 02/29] rust: alloc: separate `aligned_size` from `krealloc_aligned`
` [PATCH v8 03/29] rust: alloc: rename `KernelAllocator` to `Kmalloc`
` [PATCH v8 04/29] rust: alloc: implement `ReallocFunc`
` [PATCH v8 05/29] rust: alloc: make `allocator` module public
` [PATCH v8 06/29] rust: alloc: implement `Allocator` for `Kmalloc`
` [PATCH v8 07/29] rust: alloc: add module `allocator_test`
` [PATCH v8 08/29] rust: alloc: implement `Vmalloc` allocator
` [PATCH v8 09/29] rust: alloc: implement `KVmalloc` allocator
` [PATCH v8 10/29] rust: alloc: add __GFP_NOWARN to `Flags`
` [PATCH v8 11/29] rust: alloc: implement kernel `Box`
` [PATCH v8 12/29] rust: treewide: switch to our kernel `Box` type
` [PATCH v8 13/29] rust: alloc: remove extension of std's `Box`
` [PATCH v8 14/29] rust: alloc: add `Box` to prelude
` [PATCH v8 15/29] rust: alloc: introduce `ArrayLayout`
` [PATCH v8 16/29] rust: alloc: implement kernel `Vec` type
` [PATCH v8 17/29] rust: alloc: implement `IntoIterator` for `Vec`
` [PATCH v8 18/29] rust: alloc: implement `collect` for `IntoIter`
` [PATCH v8 19/29] rust: treewide: switch to the kernel `Vec` type
` [PATCH v8 20/29] rust: alloc: remove `VecExt` extension
` [PATCH v8 21/29] rust: alloc: add `Vec` to prelude
` [PATCH v8 22/29] rust: error: use `core::alloc::LayoutError`
` [PATCH v8 23/29] rust: error: check for config `test` in `Error::name`
` [PATCH v8 24/29] rust: alloc: implement `contains` for `Flags`
` [PATCH v8 25/29] rust: alloc: implement `Cmalloc` in module allocator_test
` [PATCH v8 26/29] rust: str: test: replace `alloc::format`
` [PATCH v8 27/29] rust: alloc: update module comment of alloc.rs
` [PATCH v8 28/29] kbuild: rust: remove the `alloc` crate and `GlobalAlloc`
` [PATCH v8 29/29] MAINTAINERS: add entry for the Rust `alloc` module
[PATCH v3] rust: add PidNamespace
2024-10-01 14:54 UTC
[PATCH v2 00/14] hrtimer Rust API
2024-10-01 14:42 UTC (8+ messages)
` [PATCH v2 03/14] rust: sync: add `Arc::as_ptr`
[PATCH] [RFC] rust: add PidNamespace wrapper
2024-10-01 14:17 UTC (4+ messages)
` [PATCH v2] rust: add PidNamespace
[PATCH v3 00/20] Implement DWARF modversions
2024-10-01 14:16 UTC (17+ messages)
` [PATCH v3 03/20] tools: Add gendwarfksyms
` [PATCH v3 04/20] gendwarfksyms: Add address matching
` [PATCH v3 05/20] gendwarfksyms: Expand base_type
` [PATCH v3 06/20] gendwarfksyms: Add a cache for processed DIEs
` [PATCH v3 07/20] gendwarfksyms: Expand type modifiers and typedefs
` [PATCH v3 08/20] gendwarfksyms: Expand subroutine_type
` [PATCH v3 09/20] gendwarfksyms: Expand array_type
` [PATCH v3 10/20] gendwarfksyms: Expand structure types
[PATCH v9 0/5] Tracepoints and static branch in Rust
2024-10-01 14:14 UTC (9+ messages)
` [PATCH v9 1/5] rust: add generic static_key_false
` [PATCH v9 2/5] rust: add tracepoint support
` [PATCH v9 3/5] rust: samples: add tracepoint to Rust sample
` [PATCH v9 4/5] jump_label: adjust inline asm to be consistent
` [PATCH v9 5/5] rust: add arch_static_branch
[PATCH v8 0/5] Tracepoints and static branch in Rust
2024-10-01 13:32 UTC (3+ messages)
[PATCH v7 00/26] Generic `Allocator` support for Rust
2024-10-01 13:27 UTC (11+ messages)
` [PATCH v7 15/26] rust: alloc: implement `collect` for `IntoIter`
` [PATCH v7 22/26] rust: alloc: implement `Cmalloc` in module allocator_test
` [PATCH v7 25/26] kbuild: rust: remove the `alloc` crate and `GlobalAlloc`
[PATCH] rust: device: change the from_raw() function
2024-10-01 12:10 UTC (5+ messages)
[PATCH v2 0/2] Miscdevices in Rust
2024-10-01 11:28 UTC (7+ messages)
` [PATCH v2 1/2] rust: types: add Opaque::try_ffi_init
` [PATCH v2 2/2] rust: miscdevice: add base miscdevice abstraction
[PATCH 1/2] rust: harden index manipulation using ownership
2024-10-01 10:57 UTC (3+ messages)
[PATCH] rust: add seqfile abstraction
2024-10-01 10:23 UTC (3+ messages)
[PATCH 0/3] Miscdevices in Rust
2024-10-01 8:20 UTC (7+ messages)
` [PATCH 2/3] rust: file: add f_pos and set_f_pos
[RFC PATCH 00/28] x86: Rely on toolchain for relocatable code
2024-10-01 7:39 UTC (7+ messages)
` [RFC PATCH 04/28] x86/boot: Permit GOTPCREL relocations for x86_64 builds
` [RFC PATCH 24/28] tools/objtool: Treat indirect ftrace calls as direct calls
[PATCH] cfi: encode cfi normalized integers + kasan/gcov bug in Kconfig
2024-10-01 5:51 UTC (2+ messages)
[PATCH 00/23] kbuild: support building external modules in a separate build directory
2024-10-01 5:45 UTC (13+ messages)
` [PATCH 07/23] kbuild: remove unnecessary prune of rust/alloc for rustfmt
` [PATCH 08/23] kbuild: simplify find command "
` [PATCH 11/23] kbuild: check the presence of include/generated/rustc_cfg
Plumbers Testing MC potential topic: specialised toolchains
2024-09-30 20:07 UTC (4+ messages)
` [Automated-testing] "
[PATCH] rust: types: extend `Opaque` documentation
2024-09-30 18:45 UTC (2+ messages)
[PATCH v3 0/1] rust: device: rename "Device::from_raw()"
2024-09-30 17:27 UTC (11+ messages)
` [PATCH v3 1/1] "
[PATCH v2 0/1] device: rust: change the name function
2024-09-30 17:02 UTC (9+ messages)
` [PATCH v2 1/1] "
LLVM toolchains with Rust 1.81.0 uploaded to kernel.org
2024-09-30 14:12 UTC
[PATCH v2 0/2] Untrusted Data Abstraction
2024-09-30 14:04 UTC (4+ messages)
` [PATCH v2 1/2] rust: add untrusted data abstraction
[PATCH net-next v1] rust: net::phy always define device_table in module_phy_driver macro
2024-09-30 13:49 UTC (2+ messages)
[PATCH v4] rust: add global lock support
2024-09-30 13:11 UTC
[PATCH v3 1/2 RESEND] rust: kernel: clean up empty `///` lines
2024-09-30 12:30 UTC (12+ messages)
` [PATCH v3 2/2 RESEND] checkpatch: warn on empty rust doc comments
[PATCH 2/2] device: rust: change the name function
2024-09-30 12:28 UTC (5+ messages)
[PATCH 1/2] device: rust: change the name function
2024-09-30 12:04 UTC (5+ messages)
[PATCH v2] rust: types: Add examples for the `Either` type
2024-09-30 7:56 UTC (3+ messages)
[PATCH] rust: re-order exports to fix rustfmt
2024-09-30 5:09 UTC (3+ messages)
[PATCH v6 0/3] rust: Add irq abstraction, SpinLockIrq
2024-09-29 23:59 UTC (10+ messages)
` [PATCH v6 1/3] rust: Introduce irq module
` [PATCH v6 2/3] rust: sync: Introduce lock::Backend::Context
` [PATCH v6 3/3] rust: sync: Add SpinLockIrq
[PATCH] rust: kunit: use C-string literals to clean warning
2024-09-29 23:43 UTC (2+ messages)
[PATCH 0/5] use custom FFI integer types
2024-09-29 21:02 UTC (5+ messages)
` [PATCH 1/5] rust: fix size_t in bindgen prototypes of C builtins
` [PATCH 2/5] rust: map `__kernel_size_t` and friends also to usize/isize
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).