rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-06-09 06:54:30 to 2023-06-14 18:11:14 UTC [more...]

[PATCH 0/6] KUnit integration for Rust doctests
 2023-06-14 18:08 UTC  (3+ messages)
` [PATCH 1/6] rust: init: make doctests compilable/testable
` [PATCH 3/6] rust: sync: "

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

[PATCH] rust: make `UnsafeCell` the outer type in `Opaque`
 2023-06-14 15:30 UTC  (4+ messages)

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

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

[PATCH 0/5] Rust abstractions for network device drivers
 2023-06-13  7:19 UTC  (7+ 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 v1] rust: error: integrate Rust error type with `errname`
 2023-06-12 23:36 UTC  (3+ messages)

[PATCH] rust: bindgen: upgrade to 0.65.1
 2023-06-12 19:43 UTC 

[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  (112+ 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 06/80] rust: allow fs driver to initialise new superblocks
` [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 15/80] rust: kernel: add count_paren_items macro, needed by define_fs_params macro
` [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 19/80] samples: puzzlefs: add initial puzzlefs sample, copied from rust_fs.rs
` [PATCH 20/80] kernel: configs: enable rust samples in rust.config
` [PATCH 23/80] rust: proc-macro2: remove `unicode_ident` dependency
` [PATCH 24/80] rust: quote: import crate
` [PATCH 25/80] rust: quote: add SPDX License Identifiers
` [PATCH 27/80] rust: syn: "
` [PATCH 28/80] rust: syn: remove `unicode-ident` dependency
` [PATCH 30/80] rust: serde: add `no_fp_fmt_parse` support
` [PATCH 31/80] rust: serde: add SPDX License Identifiers
` [PATCH 33/80] rust: serde_derive: "
` [PATCH 34/80] rust: Kbuild: enable `proc-macro2`, `quote`, `syn`, `serde` and `serde_derive`
` [PATCH 36/80] Add SAMPLE_RUST_SERDE in rust.config
` [PATCH 37/80] rust: kernel: fix compile errors after rebase to rust-next
` [PATCH 39/80] rust: serde_cbor: add SPDX License Identifiers
` [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 45/80] rust: file: Replace UnsafeCell with Opaque for File
` [PATCH 47/80] samples: puzzlefs: rename RustFs to PuzzleFs
` [PATCH 48/80] samples: puzzlefs: add basic deserializing support for the puzzlefs metadata
` [PATCH 49/80] rust: file: present the filesystem context to the open function
` [PATCH 50/80] rust: kernel: add an abstraction over vfsmount to allow cloning a new private mount
` [PATCH 53/80] rust: file: move from_path, from_path_in_root_mnt and read_with_offset methods to a RegularFile newtype
` [PATCH 54/80] rust: file: ensure RegularFile can only create regular files
` [PATCH 58/80] samples: puzzlefs: add cbor_get_array_size method
` [PATCH 59/80] samples: puzzlefs: add KernelError to WireFormatError and implement From conversion
` [PATCH 61/80] samples: puzzlefs: build puzzlefs into the kernel, thus avoiding the need to export rust symbols
` [PATCH 62/80] rust: alloc: add try_clone for Vec<T>
` [PATCH 63/80] rust: alloc: add from_iter_fallible "
` [PATCH 64/80] samples: puzzlefs: implement to_errno and from_errno for WireFormatError
` [PATCH 66/80] samples: puzzlefs: add higher level inode related functionality
` [PATCH 68/80] rust: hex: import crate
` [PATCH 69/80] rust: hex: add SPDX license identifiers
` [PATCH 70/80] rust: Kbuild: enable `hex`
` [PATCH 72/80] rust: hex: add encode_hex_iter and encode_hex_upper_iter methods
` [PATCH 75/80] samples: puzzlefs: add Rootfs and Digest structs to types.rs
` [PATCH 77/80] rust: puzzlefs: read the puzzlefs image manifest instead of an individual metadata layer
` [PATCH 78/80] rust: puzzlefs: rename PuzzleFs to PuzzleFsModule to avoid confusion with the PuzzleFS struct
` [PATCH 79/80] rust: puzzlefs: add support for reading files
` [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).