rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-09-16 00:33:56 to 2024-09-20 12:59:25 UTC [more...]

[PATCH 00/23] kbuild: support building external modules in a separate build directory
 2024-09-20 12:58 UTC  (38+ messages)
` [PATCH 01/23] kbuild: doc: update the description about Kbuild/Makefile split
` [PATCH 02/23] kbuild: doc: remove description about grepping CONFIG options
` [PATCH 03/23] kbuild: doc: remove outdated description of the limitation on -I usage
` [PATCH 04/23] kbuild: doc: remove the description about shipped files
` [PATCH 05/23] kbuild: doc: describe the -C option precisely for external module builds
` [PATCH 06/23] kbuild: doc: replace "gcc" in external module description
` [PATCH 07/23] kbuild: remove unnecessary prune of rust/alloc for rustfmt
` [PATCH 08/23] kbuild: simplify find command "
` [PATCH 09/23] speakup: use SPKDIR=$(src) to specify the source directory
` [PATCH 10/23] kbuild: refactor the check for missing config files
` [PATCH 11/23] kbuild: check the presence of include/generated/rustc_cfg
` [PATCH 12/23] scripts/nsdeps: use VPATH as src_prefix
` [PATCH 13/23] kbuild: replace two $(abs_objtree) with $(CURDIR) in top Makefile
` [PATCH 14/23] kbuild: add $(objtree)/ prefix to some in-kernel build artifacts
` [PATCH 15/23] kbuild: rename abs_objtree to abs_output
` [PATCH 16/23] kbuild: use 'output' variable to create the output directory
` [PATCH 17/23] kbuild: build external modules in their directory
` [PATCH 18/23] kbuild: remove extmod_prefix, MODORDER, MODULES_NSDEPS variables
` [PATCH 19/23] kbuild: support building external modules in a separate build directory
` [PATCH 20/23] kbuild: support -fmacro-prefix-map for external modules
` [PATCH 21/23] kbuild: use absolute path in the generated wrapper Makefile
` [PATCH 22/23] kbuild: make wrapper Makefile more convenient for external modules
` [PATCH 23/23] kbuild: allow to start building external module in any directory

[PATCH 0/2] rust: Move unfit code out of `rust/kernel/types.rs`
 2024-09-20  9:21 UTC  (7+ messages)
` [PATCH 1/2] rust: Move `FromBytes` and `AsBytes` traits to a new `transmute` module
` [PATCH 2/2] rust: Move `ARef<T>` and `AlwaysRefCounted` to new `sync::aref` module

[PATCH v2 00/14] hrtimer Rust API
 2024-09-20  8:25 UTC  (28+ messages)
` [PATCH v2 01/14] rust: time: Add Ktime::from_ns()
` [PATCH v2 02/14] rust: hrtimer: introduce hrtimer support
` [PATCH v2 03/14] rust: sync: add `Arc::as_ptr`
` [PATCH v2 04/14] rust: sync: add `Arc::clone_from_raw`
` [PATCH v2 05/14] rust: hrtimer: implement `TimerPointer` for `Arc`
` [PATCH v2 06/14] rust: hrtimer: allow timer restart from timer handler
` [PATCH v2 07/14] rust: hrtimer: add `UnsafeTimerPointer`
` [PATCH v2 08/14] rust: hrtimer: implement `UnsafeTimerPointer` for `Pin<&T>`
` [PATCH v2 09/14] rust: hrtimer: implement `UnsafeTimerPointer` for `Pin<&mut T>`
` [PATCH v2 10/14] rust: hrtimer: add `hrtimer::ScopedTimerPointer`
` [PATCH v2 11/14] rust: hrtimer: allow specifying a distinct callback parameter
` [PATCH v2 12/14] rust: hrtimer: implement `TimerPointer` for `Pin<Box<T>>`
` [PATCH v2 13/14] rust: hrtimer: add `schedule_function` to schedule closures
` [PATCH v2 14/14] rust: hrtimer: add maintainer entry

[RFC PATCH 00/24] erofs: introduce Rust implementation
 2024-09-20  2:57 UTC  (51+ messages)
` [RFC PATCH 01/24] erofs: lift up erofs_fill_inode to global
` [RFC PATCH 02/24] erofs: add superblock data structure in Rust
` [RFC PATCH 03/24] erofs: add Errno "
    ` [PATCH RESEND 0/1] rust: introduce declare_err! autogeneration
      ` [PATCH RESEND 1/1] rust: error: auto-generate error declarations
` [RFC PATCH 04/24] erofs: add xattrs data structure in Rust
` [RFC PATCH 05/24] erofs: add inode "
  ` [External Mail][RFC "
` [RFC PATCH 06/24] erofs: add alloc_helper "
` [RFC PATCH 07/24] erofs: add data abstraction "
` [RFC PATCH 08/24] erofs: add device data structure "
` [RFC PATCH 09/24] erofs: add continuous iterators "
` [RFC PATCH 10/24] erofs: add device_infos implementation "
` [RFC PATCH 11/24] erofs: add map data structure "
` [RFC PATCH 12/24] erofs: add directory entry "
` [RFC PATCH 13/24] erofs: add runtime filesystem and inode "
` [RFC PATCH 14/24] erofs: add block mapping capability "
` [RFC PATCH 15/24] erofs: add iter methods in filesystem "
` [RFC PATCH 16/24] erofs: implement dir and inode operations "
` [RFC PATCH 17/24] erofs: introduce Rust SBI to C
` [RFC PATCH 18/24] erofs: introduce iget alternative "
` [RFC PATCH 19/24] erofs: introduce namei "
` [RFC PATCH 20/24] erofs: introduce readdir "
` [RFC PATCH 21/24] erofs: introduce erofs_map_blocks "
` [RFC PATCH 22/24] erofs: add skippable iters in Rust
` [RFC PATCH 23/24] erofs: implement xattrs operations "
` [RFC PATCH 24/24] erofs: introduce xattrs replacement to C

[PATCH] rust: fix `ARCH_SLAB_MINALIGN` multiple definition error
 2024-09-19 16:58 UTC  (2+ messages)

[PATCH 0/1] rust: introduce declare_err! autogeneration
 2024-09-19 13:35 UTC  (2+ messages)
` [PATCH 1/1] rust: error: auto-generate error declarations

[PATCH v10 0/8] File abstractions needed by Rust Binder
 2024-09-19  7:57 UTC  (13+ messages)
` [PATCH v10 4/8] rust: cred: add Rust abstraction for `struct cred`
` [PATCH v10 5/8] rust: security: add abstraction for secctx
` [PATCH v10 6/8] rust: file: add `FileDescriptorReservation`

[PATCH net] net: phy: qt2025: Fix warning: unused import DeviceId
 2024-09-19  6:29 UTC  (3+ messages)

[PATCH v2] rust: types: Add examples for the `Either` type
 2024-09-18 21:20 UTC 

[PATCH 0/3] Untrusted data abstraction
 2024-09-18 17:39 UTC  (9+ messages)
` [PATCH 1/3] rust: add untrusted "

[PATCH v2 2/2] rust: cfi: add support for CFI_CLANG with Rust
 2024-09-18 17:14 UTC  (5+ messages)
` [PATCH v2b] "

Plumbers Testing MC potential topic: specialised toolchains
 2024-09-18  7:33 UTC  (4+ messages)

[PATCH] rust: Adds examples for the `Either` type
 2024-09-17 18:01 UTC  (3+ messages)

[PATCH 0/1] RISC-V: Fix building rust when using GCC toolchain
 2024-09-17 15:26 UTC  (6+ messages)
` [PATCH] "

rustgcc-kselftest: error: unknown unstable option: `patchable-function-entry`
 2024-09-17  7:45 UTC  (3+ messages)

[PATCH] rust: mutex: fix __mutex_init() usage in case of PREEMPT_RT
 2024-09-17  4:54 UTC  (4+ messages)

[PATCH] rust: shrinker: add shrinker abstraction
 2024-09-17  1:59 UTC  (7+ messages)

[PATCH v2 0/1] rust: sync: Add Lock::from_raw for Lock<(), B>
 2024-09-16 23:17 UTC  (2+ messages)
` [PATCH v2 1/1] rust: sync: Add Lock::from_raw() "

[PATCH 0/1] rust: sync: Add Lock::from_raw for ZST data types
 2024-09-16 23:05 UTC  (4+ messages)
` [PATCH 1/1] rust: sync: Add Lock::from_raw() "

[PATCH v6 0/3] rust: Add irq abstraction, SpinLockIrq
 2024-09-16 21:28 UTC  (4+ 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 0/5] use custom FFI integer types
 2024-09-16 17:26 UTC  (6+ messages)

[PATCH v4 0/4] Rust KASAN Support
 2024-09-16 16:46 UTC  (3+ messages)

[PATCH 1/2] rust: harden index manipulation using ownership
 2024-09-16 16:06 UTC  (2+ messages)

[PATCH] rust: sync: fix incorrect Sync bounds for LockedBy
 2024-09-16 15:28 UTC  (6+ messages)

[PATCH v3] rust: add global lock support
 2024-09-16 15:09 UTC  (5+ messages)

[RFC PATCH 00/24] erofs: introduce Rust implementation
 2024-09-16 14:04 UTC  (12+ messages)
` [RFC PATCH 01/24] erofs: lift up erofs_fill_inode to global
` [RFC PATCH 02/24] erofs: add superblock data structure in Rust
` [RFC PATCH 03/24] erofs: add Errno "
` [RFC PATCH 04/24] erofs: add xattrs data structure "
` [RFC PATCH 05/24] erofs: add inode "
` [RFC PATCH 06/24] erofs: add alloc_helper "
` [RFC PATCH 07/24] erofs: add data abstraction "
` [RFC PATCH 08/24] erofs: add device data structure "
` [RFC PATCH 09/24] erofs: add continuous iterators "
` [RFC PATCH 10/24] erofs: add device_infos implementation "

[syzbot] upstream boot error: BUG: unable to handle kernel NULL pointer dereference in __dabt_svc
 2024-09-16 13:40 UTC  (9+ messages)

[PATCH v3 1/2] rust: kernel: clean up empty `///` lines
 2024-09-16  9:53 UTC  (2+ messages)
` [PATCH v3 2/2] checkpatch: warn on empty rust doc comments

[PATCH] kernel-docs: Add new section for Rust learning materials
 2024-09-16  8:39 UTC  (2+ messages)

[PATCH v2] kernel-docs: Add new section for Rust learning materials
 2024-09-16  5:33 UTC  (2+ messages)


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).