rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-11-29 23:08:37 to 2024-12-06 09:05:43 UTC [more...]

[PATCH v4 0/4] rust: miscdevice: Provide sample driver using the new MiscDevice bindings
 2024-12-06  9:05 UTC  (5+ messages)
` [PATCH v4 1/4] Documentation: ioctl-number: Carve out some identifiers for use by sample drivers
` [PATCH v3 1/5] rust: miscdevice: Provide accessor to pull out miscdevice::this_device
` [PATCH v3 2/5] Documentation: ioctl-number: Carve out some identifiers for use by sample drivers
` [PATCH v4 2/4] samples: rust: Provide example using the new Rust MiscDevice abstraction

[PATCH v3 0/5] rust: miscdevice: Provide sample driver using the new MiscDevice bindings
 2024-12-06  9:01 UTC  (43+ messages)
` [PATCH v3 1/5] rust: miscdevice: Provide accessor to pull out miscdevice::this_device
` [PATCH v3 2/5] Documentation: ioctl-number: Carve out some identifiers for use by sample drivers
` [PATCH v3 3/5] samples: rust: Provide example using the new Rust MiscDevice abstraction
` [PATCH v3 4/5] sample: rust_misc_device: Demonstrate additional get/set value functionality
` [PATCH v3 5/5] MAINTAINERS: Add Rust Misc Sample to MISC entry

[PATCH v4 00/13] Device / Driver PCI / Platform Rust abstractions
 2024-12-06  8:33 UTC  (18+ messages)
` [PATCH v4 01/13] rust: pass module name to `Module::init`
` [PATCH v4 02/13] rust: implement generic driver registration
` [PATCH v4 03/13] rust: implement `IdArray`, `IdTable` and `RawDeviceId`
` [PATCH v4 04/13] rust: add rcu abstraction
` [PATCH v4 05/13] rust: add `Revocable` type
` [PATCH v4 06/13] rust: add `io::{Io, IoRaw}` base types
` [PATCH v4 07/13] rust: add devres abstraction
` [PATCH v4 08/13] rust: pci: add basic PCI device / driver abstractions
` [PATCH v4 09/13] rust: pci: implement I/O mappable `pci::Bar`
` [PATCH v4 10/13] samples: rust: add Rust PCI sample driver
` [PATCH v4 11/13] rust: of: add `of::DeviceId` abstraction
` [PATCH v4 12/13] rust: platform: add basic platform device / driver abstractions
` [PATCH v4 13/13] samples: rust: add Rust platform sample driver

[PATCH v3] kbuild: rust: add PROCMACROLDFLAGS
 2024-12-06  1:48 UTC  (6+ messages)

[WIP RFC v2 00/35] Rust bindings for KMS + RVKMS
 2024-12-05 23:25 UTC  (20+ messages)
` [WIP RFC v2 02/35] WIP: rust: drm: Add traits for registering KMS devices
` [WIP RFC v2 05/35] rust: drm/kms: Add bindings for drm_connector
` [WIP RFC v2 13/35] WIP: rust: drm/kms: Add OpaqueConnector and OpaqueConnectorState
` [WIP RFC v2 33/35] WIP: rust: drm/kms: Add VblankSupport
` [WIP RFC v2 34/35] WIP: rust: drm/kms: Add Kms::atomic_commit_tail
` [WIP RFC v2 35/35] WIP: drm: Introduce RVKMS!

[PATCH v2] rust: alloc: Add doctest for `ArrayLayout`
 2024-12-05 23:04 UTC  (3+ messages)

[PATCH v4 0/3] rust: Add pr_*_once macros
 2024-12-05 19:22 UTC  (14+ messages)
` [PATCH v4 1/3] rust: Add `OnceLite` for executing code once
` [PATCH v4 3/3] rust: error: Replace pr_warn by pr_warn_once

[PATCH] rust: sync: document that Guard is not a stable lock guard
 2024-12-05 18:17 UTC  (2+ messages)

[PATCH v6 1/2] rust: error: Add EOVERFLOW
 2024-12-05 16:47 UTC  (6+ messages)
` [PATCH v6 2/2] rust: add dma coherent allocator abstraction

[PATCH v6 00/18] Implement DWARF modversions
 2024-12-05 15:51 UTC  (17+ messages)
` [PATCH v6 02/18] gendwarfksyms: Add address matching
` [PATCH v6 09/18] gendwarfksyms: Limit structure expansion
` [PATCH v6 11/18] gendwarfksyms: Add symtypes output
` [PATCH v6 12/18] gendwarfksyms: Add symbol versioning
  ` [PATCH v6 01/18] tools: Add gendwarfksyms

[PATCH] drm/panic: Better binary encoding in QR code
 2024-12-05 12:58 UTC 

[PATCH] rust: rust-analyzer: add proc_macro for macros crate
 2024-12-05 11:54 UTC 

[RFC 0/5] locking: Start watching Rust locking primitives
 2024-12-05 11:39 UTC  (6+ messages)
` [RFC 1/5] locking: MAINTAINERS: "

[PATCH] rust: use derive(CoercePointee) on rustc >= 1.83.0
 2024-12-05 11:06 UTC  (5+ messages)
  `  "
    ` [PATCH v2] "

[PATCH v10 0/8] Rust support for mm_struct, vm_area_struct, and mmap
 2024-12-05 10:48 UTC  (5+ messages)
` [PATCH v10 2/8] mm: rust: add vm_area_struct methods that require read access

[PATCH v5 0/2] Add dma coherent allocator abstraction
 2024-12-05 10:15 UTC  (5+ messages)
` [PATCH v5 1/2] rust: error: Add EOVERFLOW
` [PATCH v5 2/2] rust: add dma coherent allocator abstraction

[PATCH 1/2] samples: rust: Provide example using the new Rust MiscDevice abstraction
 2024-12-05 10:03 UTC  (15+ messages)
` [PATCH 2/2] sample: rust_misc_device: Demonstrate additional get/set value functionality

[PATCH v2 0/2] Untrusted Data Abstraction
 2024-12-05  9:06 UTC  (2+ messages)

[PATCH v2 00/11] kbuild: support building external modules in a separate build directory
 2024-12-05  6:27 UTC  (7+ messages)
` [PATCH v2 05/11] kbuild: change working directory to external module directory with M=

[PATCH v3 00/16] Device / Driver PCI / Platform Rust abstractions
 2024-12-04 19:30 UTC  (10+ messages)
` [PATCH v3 07/16] rust: add `Revocable` type
` [PATCH v3 15/16] rust: platform: add basic platform device / driver abstractions

Rust for Linux Open Meeting
 2024-12-04 18:55 UTC  (8+ messages)
  ` No Open Meeting at Nov 15
    ` Open Meeting at Jan 24
      ` Open Meeting at March 27
        ` Open Meeting at May 29
          ` Open Meeting at Aug 7
            ` Open Meeting at Dec 11

[PATCH] block: rnull: Initialize the module in place
 2024-12-04 16:33 UTC  (3+ messages)

[PATCH v3 00/13] hrtimer Rust API
 2024-12-04 13:41 UTC  (6+ messages)
` [PATCH v3 04/13] rust: hrtimer: implement `TimerPointer` for `Arc`

[PATCH v4 00/11] rust: bindings: Auto-generate inline static functions
 2024-12-04 13:13 UTC  (3+ messages)

[PATCH v11 0/2] rust: xarray: Add a minimal abstraction for XArray
 2024-12-04 13:04 UTC  (4+ messages)
` [PATCH v11 1/2] rust: types: add `ForeignOwnable::PointedTo`
` [PATCH v11 2/2] rust: xarray: Add an abstraction for XArray

[PATCH] rust: alloc: Add doctest for `ArrayLayout`
 2024-12-04 11:57 UTC  (6+ messages)

[PATCH v2] rust: add safety comment in workqueue traits
 2024-12-03 20:48 UTC  (2+ messages)

[PATCH v2] rust: sync: document `PhantomData` in `Arc`
 2024-12-03 17:05 UTC  (3+ messages)

[PATCH RESEND v6] rust: use host dylib naming convention
 2024-12-03 17:03 UTC  (2+ messages)

[PATCH v10 0/2] rust: xarray: Add a minimal abstraction for XArray
 2024-12-03 16:01 UTC  (12+ messages)
  ` [PATCH v10 1/2] rust: types: add `ForeignOwnable::PointedTo`
  ` [PATCH v10 2/2] rust: xarray: Add an abstraction for XArray

[PATCH] block: rnull: add missing MODULE_DESCRIPTION
 2024-12-03 13:42 UTC  (4+ messages)

[PATCH] rust: miscdevice: add fops->show_fdinfo() hook
 2024-12-03 12:34 UTC 

[PATCH] rust: miscdevice: access file in fops
 2024-12-03 12:32 UTC 

[PATCH v3 0/2] rust: page: Add support for existing struct page mappings
 2024-12-03  9:08 UTC  (3+ messages)

[PATCH] rust: introduce KVec::pop()
 2024-12-03  2:55 UTC  (8+ messages)

[PATCH v2] rust: add safety comment in rust_fmt_argument
 2024-12-01 15:37 UTC  (5+ messages)

[PATCH 00/23] kbuild: support building external modules in a separate build directory
 2024-11-30  9:19 UTC  (4+ messages)
` [PATCH 21/23] kbuild: use absolute path in the generated wrapper Makefile

[GIT PULL] tracing: More updates for 6.13
 2024-11-29 23:08 UTC  (8+ 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).