rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-06-09 06:56:35 to 2023-06-15 14:23:50 UTC [more...]

[RFC PATCH v2 0/2] Rust abstractions for Crypto API
 2023-06-15 14:23 UTC 

[PATCH 0/6] KUnit integration for Rust doctests
 2023-06-15 13:50 UTC  (27+ messages)
` [PATCH 1/6] rust: init: make doctests compilable/testable
` [PATCH 2/6] rust: str: "
` [PATCH 3/6] rust: sync: "
` [PATCH 4/6] rust: types: "
` [PATCH 5/6] rust: support running Rust documentation tests as KUnit ones
` [PATCH 6/6] MAINTAINERS: add Rust KUnit files to the KUnit entry

[PATCH 0/5] Rust abstractions for network device drivers
 2023-06-15 13:44 UTC  (15+ messages)
` [PATCH 1/5] rust: core "
` [PATCH 2/5] rust: add support for ethernet operations
` [PATCH 3/5] rust: add support for get_stats64 in struct net_device_ops
` [PATCH 4/5] rust: add methods for configure net_device
` [PATCH 5/5] samples: rust: add dummy network driver

[PATCH] rust: bindgen: upgrade to 0.65.1
 2023-06-15  6:47 UTC  (3+ messages)

[PATCH] rust: make `UnsafeCell` the outer type in `Opaque`
 2023-06-14 19:04 UTC  (6+ messages)

[PATCH v2 0/1] Fix libclang version check for rustavailable
 2023-06-14 16:44 UTC  (5+ messages)
` [PATCH v2 1/1] scripts/rust_is_available: Fix clang version check

[PATCH] rust: allocator: Prevents mis-aligned allocation
 2023-06-14 16:30 UTC  (5+ messages)

Rust MC at LPC 2023
 2023-06-14 12:27 UTC 

Pozycjonowanie- informacja
 2023-06-13  7:56 UTC 

[PATCH v1] rust: error: integrate Rust error type with `errname`
 2023-06-12 23:36 UTC  (3+ messages)

[PATCH v3 0/3] Rust scatterlist abstractions
 2023-06-12 16:13 UTC  (13+ messages)
` [PATCH v3 1/3] rust: kernel: add ScatterList abstraction
` [PATCH v3 2/3] rust: kernel: implement iterators for ScatterList
` [PATCH v3 3/3] rust: kernel: add SgTable abstraction

[PATCH v2 0/3] Rust enablement for AArch64
 2023-06-12 15:26 UTC  (5+ messages)
` [PATCH v2 1/3] arm64: rust: Enable Rust support "

[PATCH v2 1/5] rust: core abstractions for network device drivers
 2023-06-12 13:35 UTC  (22+ messages)
` [PATCH v2 5/5] samples: rust: add dummy network driver
` [PATCH v2 3/5] rust: add support for get_stats64 in struct net_device_ops
` [PATCH v2 2/5] rust: add support for ethernet operations
` [PATCH v2 4/5] rust: add methods for configure net_device

[RFC PATCH 00/80] Rust PuzzleFS filesystem driver
 2023-06-12 11:58 UTC  (82+ messages)
` [PATCH 02/80] rust: add ability to register a file system
` [PATCH 05/80] rust: kernel: add libraries required by the filesystem abstractions
` [PATCH 07/80] rust: add `module_fs` macro
` [PATCH 09/80] rust: kernel: backport the delay module from the rust branch
` [PATCH 10/80] rust: kernel: add container_of macro
` [PATCH 11/80] rust: kernel: add offset_of macro
` [PATCH 12/80] drop: Add crate::pr_warn declaration
` [PATCH 13/80] rust: kernel: rename from_kernel_errno to from_errno
` [PATCH 14/80] rust: kernel: Rename from_pointer to from_foreing and into_pointer to into_foreign
` [PATCH 16/80] rust: helpers: add missing rust helper 'alloc_pages'
` [PATCH 17/80] kernel: configs: add qemu-busybox-min.config
` [PATCH 18/80] rust: kernel: format the rust code
` [PATCH 20/80] kernel: configs: enable rust samples in rust.config
` [PATCH 23/80] rust: proc-macro2: remove `unicode_ident` dependency
` [PATCH 28/80] rust: syn: remove `unicode-ident` dependency
` [PATCH 31/80] rust: serde: add SPDX License Identifiers
` [PATCH 37/80] rust: kernel: fix compile errors after rebase to rust-next
` [PATCH 40/80] rust: serde_cbor: add no_fp_fmt_parse support
` [PATCH 41/80] rust: Kbuild: enable serde_cbor
` [PATCH 43/80] rust: serde_cbor: add support for serde_cbor's from_slice method by using a custom alloc_kernel feature
` [PATCH 44/80] rust: serde: add support for deserializing Vec with kernel_alloc feature
` [PATCH 53/80] rust: file: move from_path, from_path_in_root_mnt and read_with_offset methods to a RegularFile newtype
` [PATCH 63/80] rust: alloc: add from_iter_fallible for Vec<T>
` [PATCH 68/80] rust: hex: import crate
` [PATCH 80/80] rust: puzzlefs: add oci_root_dir and image_manifest filesystem parameters

Proszę o kontakt
 2023-06-12  7:40 UTC 

[PATCH v2 0/8] rust: workqueue: add bindings for the workqueue
 2023-06-11 16:15 UTC  (17+ messages)
` [PATCH v2 1/8] rust: workqueue: add low-level workqueue bindings
` [PATCH v2 2/8] rust: add offset_of! macro
` [PATCH v2 3/8] rust: sync: add `Arc::{from_raw, into_raw}`
` [PATCH v2 4/8] rust: workqueue: define built-in queues
` [PATCH v2 5/8] rust: workqueue: add helper for defining work_struct fields
` [PATCH v2 6/8] rust: workqueue: implement `WorkItemPointer` for pointer types
` [PATCH v2 7/8] rust: workqueue: add `try_spawn` helper method
` [PATCH v2 8/8] rust: workqueue: add examples

[PATCH v2 0/5] add abstractions for network device drivers
 2023-06-10 11:24 UTC  (4+ messages)

[RFC PATCH 00/80] Rust PuzzleFS filesystem driver
 2023-06-10 11:19 UTC  (7+ messages)

[PATCH 5/5] samples: rust: add dummy network driver sample
 2023-06-09 14:41 UTC  (7+ messages)

[PATCH 1/5] rust: core abstractions for network device drivers
 2023-06-09 13:23 UTC  (3+ messages)

[PATCH 1/5] rust: core abstractions for network device drivers
 2023-06-09 12:52 UTC  (3+ messages)

[PATCH 1/5] rust: core abstractions for network device drivers
 2023-06-09 12:39 UTC  (3+ 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).