rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
[PATCH 1/2] rust: kernel: add `drop_contents` to `BoxExt`
 2024-05-15  9:47 UTC  (7+ messages)
` [PATCH 2/2] rust: init: add re-initialization functions

[PATCH v6 0/4] Memory management patches needed by Rust Binder
 2024-05-15  7:34 UTC  (7+ messages)
` [PATCH v6 2/4] uaccess: always export _copy_[from|to]_user with CONFIG_RUST
` [PATCH v6 3/4] rust: uaccess: add typed accessors for userspace pointers

[PATCH 0/3] Rust block device driver API and null block driver
 2024-05-14 20:00 UTC  (8+ messages)
` [PATCH 1/3] rust: block: introduce `kernel::block::mq` module
` [PATCH 2/3] rust: block: add rnull, Rust null_blk implementation
` [PATCH 3/3] MAINTAINERS: add entry for Rust block device driver API

[PATCH] Add room for insn-enconding and symbol name
 2024-05-14 16:31 UTC  (5+ messages)

[PATCH 2/2] rust: time: Use wrapping_sub() for Ktime::sub()
 2024-05-14 14:21 UTC  (6+ messages)

[RFC PATCH v2 00/30] Rust abstractions for VFS
 2024-05-14 13:17 UTC  (31+ messages)
` [RFC PATCH v2 01/30] rust: fs: add registration/unregistration of file systems
` [RFC PATCH v2 02/30] rust: fs: introduce the `module_fs` macro
` [RFC PATCH v2 03/30] samples: rust: add initial ro file system sample
` [RFC PATCH v2 04/30] rust: fs: introduce `FileSystem::fill_super`
` [RFC PATCH v2 05/30] rust: fs: introduce `INode<T>`
` [RFC PATCH v2 06/30] rust: fs: introduce `DEntry<T>`
` [RFC PATCH v2 07/30] rust: fs: introduce `FileSystem::init_root`
` [RFC PATCH v2 08/30] rust: file: move `kernel::file` to `kernel::fs::file`
` [RFC PATCH v2 09/30] rust: fs: generalise `File` for different file systems
` [RFC PATCH v2 10/30] rust: fs: add empty file operations
` [RFC PATCH v2 11/30] rust: fs: introduce `file::Operations::read_dir`
` [RFC PATCH v2 12/30] rust: fs: introduce `file::Operations::seek`
` [RFC PATCH v2 13/30] rust: fs: introduce `file::Operations::read`
` [RFC PATCH v2 14/30] rust: fs: add empty inode operations
` [RFC PATCH v2 15/30] rust: fs: introduce `inode::Operations::lookup`
` [RFC PATCH v2 16/30] rust: folio: introduce basic support for folios
` [RFC PATCH v2 17/30] rust: fs: add empty address space operations
` [RFC PATCH v2 18/30] rust: fs: introduce `address_space::Operations::read_folio`
` [RFC PATCH v2 19/30] rust: fs: introduce `FileSystem::read_xattr`
` [RFC PATCH v2 20/30] rust: fs: introduce `FileSystem::statfs`
` [RFC PATCH v2 21/30] rust: fs: introduce more inode types
` [RFC PATCH v2 22/30] rust: fs: add per-superblock data
` [RFC PATCH v2 23/30] rust: fs: allow file systems backed by a block device
` [RFC PATCH v2 24/30] rust: fs: allow per-inode data
` [RFC PATCH v2 25/30] rust: fs: export file type from mode constants
` [RFC PATCH v2 26/30] rust: fs: allow populating i_lnk
` [RFC PATCH v2 27/30] rust: fs: add `iomap` module
` [RFC PATCH v2 28/30] rust: fs: add memalloc_nofs support
` [RFC PATCH v2 29/30] tarfs: introduce tar fs
` [RFC PATCH v2 30/30] WIP: fs: ext2: add rust ro ext2 implementation

[GIT PULL] Rust for 6.10
 2024-05-13 22:38 UTC  (2+ messages)

[PATCH v2] rust: add 'firmware' field support to module! macro
 2024-05-12 16:53 UTC  (5+ messages)

[PATCH v2 1/2] rust: add example for `alias` argument in `module` macro documentation
 2024-05-12 11:23 UTC  (2+ messages)
` [PATCH v2 2/2] rust: fix datatype in docs for `module` macro arguments

[PATCH] rust: alloc: use `if` instead of `match` in VecExt<T>::reserve()
 2024-05-07 22:47 UTC  (2+ messages)

[PATCH v2] kbuild: rust: split up helpers.c
 2024-05-07 22:09 UTC  (2+ messages)

[PATCH v2] rust: alloc: fix dangling pointer in VecExt<T>::reserve()
 2024-05-07 20:18 UTC  (6+ messages)

[PATCH v3] rust: alloc: fix dangling pointer in VecExt<T>::reserve()
 2024-05-07 20:16 UTC  (13+ messages)
      ` some aside maintainer advice (was Re: [PATCH v3] rust: alloc: fix dangling pointer in VecExt<T>::reserve())

[PATCH WIP 0/8] Draft: Alternative allocator support
 2024-05-06 13:17 UTC  (24+ messages)
` [PATCH WIP 1/8] rust: alloc: re-enable allocator_api
` [PATCH WIP 2/8] rust: alloc: use AllocError from core::alloc
` [PATCH WIP 3/8] rust: alloc: implement AllocatorWithFlags trait
` [PATCH WIP 4/8] rust: alloc: separate krealloc_aligned()
` [PATCH WIP 5/8] rust: alloc: implement AllocatorWithFlags for KernelAllocator
` [PATCH WIP 6/8] rust: alloc: implement BoxExtAlloc
` [PATCH WIP 7/8] rust: alloc: implement VecExtAlloc
` [PATCH WIP 8/8] rust: alloc: implement vmalloc allocator

Rust MC at LPC 2024
 2024-05-06 13:05 UTC 

[PATCH v2 0/9] Add Rust linked list for reference counted values
 2024-05-06  9:53 UTC  (10+ messages)
` [PATCH v2 1/9] rust: list: add ListArc
` [PATCH v2 2/9] rust: list: add tracking for ListArc
` [PATCH v2 3/9] rust: list: add struct with prev/next pointers
` [PATCH v2 4/9] rust: list: add macro for implementing ListItem
` [PATCH v2 5/9] rust: list: add List
` [PATCH v2 6/9] rust: list: add iterators
` [PATCH v2 7/9] rust: list: add cursor
` [PATCH v2 8/9] rust: list: support heterogeneous lists
` [PATCH v2 9/9] rust: list: add ListArcField

[PATCH 0/3] Rust 1.78.0 upgrade
 2024-05-05 22:33 UTC  (2+ messages)

[PATCH v4] docs: rust: extend abstraction and binding documentation
 2024-05-05 22:32 UTC  (2+ messages)

[PATCH v3] docs: rust: Add instructions for the Rust kselftest
 2024-05-05 22:30 UTC  (2+ messages)

[PATCH] rust: remove unneeded `kernel::prelude` imports from doctests
 2024-05-05 22:30 UTC  (2+ messages)

[PATCH] rust: update `dbg!()` to format column number
 2024-05-05 22:28 UTC  (2+ messages)

[PATCH] rust: helpers: Fix grammar in comment
 2024-05-05 22:28 UTC  (2+ messages)

[PATCH] rust: init: change the generated name of guard variables
 2024-05-05 22:27 UTC  (2+ messages)

[PATCH v4 0/2] Arc methods for linked list
 2024-05-05 22:27 UTC  (2+ messages)

[PATCH] rust: types: Make Opaque::get const
 2024-05-05 22:26 UTC  (2+ messages)

[PATCH 0/9] Add Rust linked list for reference counted values
 2024-05-04 15:50 UTC  (6+ messages)
` [PATCH 1/9] rust: list: add ListArc

Bug report: Deriving zeroable doesn't work with const generics
 2024-05-04 14:17 UTC  (2+ messages)

[PATCH v2 0/4] rust: docs: Update the translation of rust to 6.9-rc4
 2024-05-02 16:28 UTC  (21+ messages)
` [PATCH v2 1/4] docs/zh_CN/rust: Update the translation of arch-support "
` [PATCH v2 2/4] docs/zh_CN/rust: Update the translation of coding-guidelines "
` [PATCH v2 3/4] docs/zh_CN/rust: Update the translation of general-information "
` [PATCH v2 4/4] docs/zh_CN/rust: Update the translation of quick-start "

[PATCH v3 00/10] Allocation APIs
 2024-05-01 22:06 UTC  (3+ messages)

[PATCH v1] rust: add 'firmware' field support to module! macro
 2024-05-01 12:37 UTC  (3+ messages)

[PATCH] rust: hrtimer: introduce hrtimer support
 2024-05-01 11:37 UTC  (14+ messages)

[PATCH] kbuild: rust: split up helpers.c
 2024-05-01 11:09 UTC  (2+ messages)

[PATCH] rust: alloc: fix dangling pointer in VecExt<T>::reserve()
 2024-04-30 22:44 UTC  (15+ messages)

[PATCH v2] rust: add flags for shadow call stack sanitizer
 2024-04-30 11:09 UTC  (2+ messages)

[PATCH v3 00/10] Allocation APIs
 2024-04-29 20:14 UTC  (8+ messages)

[RFC WIP 0/4] Rust bindings for KMS + RVKMS
 2024-04-29 19:54 UTC  (6+ messages)
` [PATCH 2/4] WIP: drm: Introduce rvkms

Problem with rust module
 2024-04-29 14:56 UTC  (3+ messages)

[GIT PULL] Rust fixes for 6.9
 2024-04-27 19:17 UTC  (2+ messages)

[PATCH RFC v1] rust: add 'firmware' tag support to module! macro
 2024-04-26  9:40 UTC  (7+ messages)

[PATCH v3 0/5] Red-black tree abstraction needed by Rust Binder
 2024-04-26  7:05 UTC  (3+ messages)
` [PATCH v3 5/5] rust: rbtree: add `RBTree::entry`


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