rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-02-23 02:59:34 to 2023-03-07 17:30:28 UTC [more...]

[PATCH 1/2] docs: programming-language: remove mention of the Intel compiler
 2023-03-07 17:25 UTC  (5+ messages)
` [PATCH 2/2] docs: programming-language: add Rust programming language section

[PATCH] scripts: rust-analyzer: Skip crate module directories
 2023-03-07 17:14 UTC  (5+ messages)

[PATCH] rust: virtio: add virtio support
 2023-03-07 17:09 UTC  (3+ messages)

[PATCH RFC 00/18] Rust DRM subsystem abstractions (& preview AGX driver)
 2023-03-07 16:17 UTC  (23+ messages)
` [PATCH RFC 01/18] rust: drm: ioctl: Add DRM ioctl abstraction
` [PATCH RFC 02/18] rust: drm: Add Device and Driver abstractions
` [PATCH RFC 03/18] rust: drm: file: Add File abstraction
` [PATCH RFC 04/18] rust: drm: gem: Add GEM object abstraction
` [PATCH RFC 05/18] drm/gem-shmem: Export VM ops functions
` [PATCH RFC 06/18] rust: drm: gem: shmem: Add DRM shmem helper abstraction
` [PATCH RFC 07/18] rust: drm: mm: Add DRM MM Range Allocator abstraction
` [PATCH RFC 08/18] rust: dma_fence: Add DMA Fence abstraction
` [PATCH RFC 09/18] rust: drm: syncobj: Add DRM Sync Object abstraction
` [PATCH RFC 10/18] drm/scheduler: Add can_run_job callback
` [PATCH RFC 11/18] drm/scheduler: Clean up jobs when the scheduler is torn down
` [PATCH RFC 12/18] rust: drm: sched: Add GPU scheduler abstraction
` [PATCH RFC 13/18] drm/gem: Add a flag to control whether objects can be exported
` [PATCH RFC 14/18] rust: drm: gem: Add set_exportable() method
` [PATCH RFC 15/18] drm/asahi: Add the Asahi driver UAPI [DO NOT MERGE]
` [PATCH RFC 16/18] rust: bindings: Bind the Asahi DRM UAPI
` [PATCH RFC 17/18] rust: macros: Add versions macro

[PATCH] scripts: `make rust-analyzer` for out-of-tree modules
 2023-03-07 15:55 UTC  (7+ messages)
` [PATCH v2] "
    ` [PATCH v3] "
      ` [PATCH v4] "

[PATCH v1 0/2] RISC-V: enable rust
 2023-03-07 12:51 UTC  (9+ messages)
` [PATCH v1 1/2] scripts: generate_rust_target: enable building on RISC-V
` [PATCH v1 2/2] RISC-V: enable building 64-bit kernels with rust support

[PATCH] docs: rust: point directly to the standalone installers
 2023-03-07 12:45 UTC  (5+ messages)

[PATCH 0/3] Rust enablement for AArch64
 2023-03-07 12:17 UTC  (3+ messages)

[RFC 0/2] RISC-V: enable rust
 2023-03-07  2:20 UTC  (14+ messages)

[PATCH 0/5] rust: Add io_pgtable and RTKit abstractions
 2023-03-05  6:52 UTC  (33+ messages)
` [PATCH 1/5] rust: Add a Sealed trait
` [PATCH 2/5] rust: device: Add a minimal RawDevice trait
` [PATCH 3/5] rust: io_pgtable: Add io_pgtable abstraction
` [PATCH 4/5] rust: soc: apple: rtkit: Add Apple RTKit abstraction
` [PATCH 5/5] rust: device: Add a stub abstraction for devices

[PATCH] rust: str: fix requierments->requirements typo for rust str
 2023-03-04 19:49 UTC  (2+ messages)

Reminder: informal call in 15 minutes
 2023-03-04 17:46 UTC 

[GIT PULL] Rust fixes for 6.3-rc1
 2023-03-03 23:04 UTC  (2+ messages)

[PATCH 1/1] rust: bindgen: Add `alt_instr` as opaque type
 2023-03-03  0:07 UTC  (8+ messages)

[PATCH v1] rust: build: Fix grep warning
 2023-03-02 14:21 UTC  (2+ messages)

Napływ Klientów ze strony
 2023-03-02  8:50 UTC 

[PATCH] rust: Enable the new_uninit feature for kernel and driver crates
 2023-03-01 17:24 UTC  (8+ messages)

[PATCH 0/2] rust: sync: Arc: Any downcasting and assume_init()
 2023-03-01 17:23 UTC  (11+ messages)
` [PATCH 1/2] rust: sync: arc: implement Arc<dyn Any + Send + Sync>::downcast()
` [PATCH 2/2] rust: sync: arc: Add UniqueArc<MaybeUninit<T>::assume_init()

[PATCH 0/3] rust: Miscellaneous macro improvements
 2023-03-01 17:19 UTC  (13+ messages)
` [PATCH 1/3] rust: macros: Make expect_punct() return the Punct directly
` [PATCH 2/3] rust: macros: concat_idents: Allow :: paths in the first argument
` [PATCH 3/3] rust: macros: Allow specifying multiple module aliases

[PATCH 0/5] rust: error: Add missing wrappers to convert to/from kernel error codes
 2023-02-27 16:11 UTC  (26+ messages)
` [PATCH 1/5] rust: error: Add Error::to_ptr()
` [PATCH 2/5] rust: error: Add Error::from_kernel_errno()
` [PATCH 3/5] rust: error: Add to_result() helper
` [PATCH 4/5] rust: error: Add a helper to convert a C ERR_PTR to a `Result`
` [PATCH 5/5] rust: error: Add from_kernel_result!() macro

[PATCH] rust: sort uml documentation arch support table
 2023-02-27  7:48 UTC  (2+ messages)

[PATCH] rust: ioctl: Add ioctl number manipulation functions
 2023-02-25  2:43 UTC  (5+ messages)

[RFC RESEND 0/2] RISC-V: enable rust
 2023-02-24 21:03 UTC  (7+ messages)
` [RFC RESEND 1/2] scripts: generate_rust_target: enable building on RISC-V
` [RFC RESEND 2/2] RISC-V: enable building the 64-bit kernels with rust support

[PATCH] rust: xarray: Add an abstraction for XArray
 2023-02-24 12:32 UTC  (2+ messages)

[PATCH 0/4] rust: alloc: vec: Add some missing fallible try_* methods
 2023-02-24  9:11 UTC  (5+ messages)
` [PATCH 1/4] rust: Import upstream `alloc::vec::set_len_on_drop` module
` [PATCH 2/4] rust: Import upstream `alloc::vec::spec_extend` module
` [PATCH 3/4] rust: Add SPDX headers to alloc::vec::{spec_extend, set_len_on_drop}
` [PATCH 4/4] rust: alloc: vec: Add some try_* methods we need

(no subject)
 2023-02-23 17:53 UTC 

[PATCH] scripts: read cfgs from Makefile for rust-analyzer
 2023-02-23  2:59 UTC 


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