public inbox for rust-for-linux@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2026-04-09 17:52:31 to 2026-04-14 11:54:45 UTC [more...]

[PATCH v2 00/11] gpu: nova-core: vbios: harden various array accesses and refactor
 2026-04-14 11:54 UTC  (7+ messages)
` [PATCH v2 01/11] gpu: nova-core: vbios: fix various cases of reading past `BIOS_MAX_SCAN_LEN`
` [PATCH v2 02/11] gpu: nova-core: vbios: limit `BitToken` entry reads
` [PATCH v2 03/11] gpu: nova-core: vbios: use checked ops and accesses in `FwSecBiosImage::ucode`
` [PATCH v2 04/11] gpu: nova-core: vbios: use checked access in `FwSecBiosImage::header`
` [PATCH v2 05/11] gpu: nova-core: vbios: use checked accesses in `setup_falcon_data`
` [PATCH v2 06/11] gpu: nova-core: vbios: drop unused falcon_data_offset from FwSecBiosBuilder

[PATCH] perf build: Add clang and rust target flags for loongarch
 2026-04-14 10:03 UTC  (3+ messages)

[PATCH 0/3] rust: add `num` module
 2026-04-14  9:45 UTC  (12+ messages)
` [PATCH 1/3] rust: add `num` module with `PowerOfTwo` type

[PATCH 0/6] gpu: nova-core: add GA100 support
 2026-04-14  6:03 UTC  (17+ messages)
` [PATCH 1/6] gpu: nova-core: use correct fwsignature for GA100
` [PATCH 2/6] gpu: nova-core: do not consider 0xBB77 as a valid PCI ROM header signature
` [PATCH 3/6] gpu: nova-core: only boot FRTS if it actually exists
` [PATCH 4/6] gpu: nova-core: add FbHal::frts_size() for GA100 support
` [PATCH 5/6] gpu: nova-core: skip the IFR header if present
` [PATCH 6/6] gpu: nova-core: enable GA100

[PATCH 0/5] gpu: nova-core: vbios: harden various array accesses
 2026-04-14  3:13 UTC  (16+ messages)
` [PATCH 1/5] gpu: nova-core: vbios: fix various cases of reading past `BIOS_MAX_SCAN_LEN`
` [PATCH 2/5] gpu: nova-core: vbios: limit `BitToken` entry reads
` [PATCH 3/5] gpu: nova-core: vbios: use checked accesses in `setup_falcon_data`
` [PATCH 4/5] gpu: nova-core: vbios: use checked access in `FwSecBiosImage::header`
` [PATCH 5/5] gpu: nova-core: vbios: use checked ops and accesses in `FwSecBiosImage::ucode`

[GIT PULL] Driver core changes for 7.1-rc1
 2026-04-14  3:09 UTC  (2+ messages)

[PATCH v10 12/21] gpu: nova-core: mm: Add unified page table entry wrapper enums
 2026-04-13 22:50 UTC  (7+ messages)

[PATCH v3 00/13] drm/tyr: firmware loading and MCU boot support
 2026-04-13 22:31 UTC  (14+ messages)
` [PATCH v3 01/13] drm/tyr: remove unused device from platform data
` [PATCH v3 02/13] drm/tyr: select required dependencies in Kconfig
` [PATCH v3 03/13] drm/tyr: move clock cleanup into Clocks Drop impl
` [PATCH v3 04/13] drm/tyr: rename TyrObject to BoData
` [PATCH v3 05/13] drm/tyr: use shmem GEM object type in TyrDrmDriver
` [PATCH v3 06/13] drm/tyr: set DMA mask using GPU physical address
` [PATCH v3 07/13] drm/tyr: add shmem backing for GEM objects
` [PATCH v3 08/13] drm/tyr: Add generic slot manager
` [PATCH v3 09/13] drm/tyr: add MMU module
` [PATCH v3 10/13] drm/tyr: add GPU virtual memory module
` [PATCH v3 11/13] drm/tyr: add a kernel buffer object
` [PATCH v3 12/13] drm/tyr: add parser for firmware binary
` [PATCH v3 13/13] drm/tyr: add firmware loading and MCU boot support

[PATCH v10 00/28] gpu: nova-core: firmware: Hopper/Blackwell support
 2026-04-13 21:29 UTC  (33+ messages)
` [PATCH v10 01/28] gpu: nova-core: factor .fwsignature* selection into a new find_gsp_sigs_section()
` [PATCH v10 02/28] gpu: nova-core: use GPU Architecture to simplify HAL selections
` [PATCH v10 03/28] gpu: nova-core: Hopper/Blackwell: basic GPU identification
` [PATCH v10 04/28] gpu: nova-core: add Copy/Clone to Spec and Revision
` [PATCH v10 05/28] gpu: nova-core: set DMA mask width based on GPU architecture
` [PATCH v10 06/28] gpu: nova-core: move GFW boot wait into a GPU HAL
` [PATCH v10 07/28] gpu: nova-core: Hopper/Blackwell: skip GFW boot waiting
` [PATCH v10 08/28] gpu: nova-core: Blackwell: calculate reserved FB heap size
` [PATCH v10 09/28] gpu: nova-core: Hopper/Blackwell: new location for PCI config mirror
` [PATCH v10 10/28] gpu: nova-core: refactor SEC2 booter loading into BooterFirmware::run()
` [PATCH v10 11/28] gpu: nova-core: Hopper/Blackwell: integrate FSP boot path into boot()
` [PATCH v10 12/28] gpu: nova-core: don't assume 64-bit firmware images
` [PATCH v10 13/28] gpu: nova-core: add support for 32-bit "
` [PATCH v10 14/28] gpu: nova-core: add auto-detection of 32-bit, 64-bit "
` [PATCH v10 15/28] gpu: nova-core: Hopper/Blackwell: add FSP falcon engine stub
` [PATCH v10 16/28] gpu: nova-core: Hopper/Blackwell: add FMC firmware image, in support of FSP
` [PATCH v10 17/28] gpu: nova-core: Hopper/Blackwell: add FSP secure boot completion waiting
` [PATCH v10 18/28] gpu: nova-core: Hopper/Blackwell: add FMC signature extraction
` [PATCH v10 19/28] gpu: nova-core: Hopper/Blackwell: add FSP falcon EMEM operations
` [PATCH v10 20/28] gpu: nova-core: Hopper/Blackwell: add FSP message infrastructure
` [PATCH v10 21/28] gpu: nova-core: add MCTP/NVDM protocol types for firmware communication
` [PATCH v10 22/28] gpu: nova-core: Hopper/Blackwell: add FSP send/receive messaging
` [PATCH v10 23/28] gpu: nova-core: Hopper/Blackwell: add FspCotVersion type
` [PATCH v10 24/28] gpu: nova-core: Hopper/Blackwell: larger non-WPR heap
` [PATCH v10 25/28] gpu: nova-core: Hopper/Blackwell: add FSP Chain of Trust boot
` [PATCH v10 26/28] gpu: nova-core: Blackwell: use correct sysmem flush registers
` [PATCH v10 27/28] gpu: nova-core: Hopper/Blackwell: larger WPR2 (GSP) heap
` [PATCH v10 28/28] gpu: nova-core: Hopper/Blackwell: add GSP lockdown release polling

[PATCH v9 00/23] gpu: nova-core: Add memory management support
 2026-04-13 20:25 UTC  (13+ messages)
` [PATCH v10 00/21] "
  ` [PATCH v10 12/21] gpu: nova-core: mm: Add unified page table entry wrapper enums

[GIT PULL] Rust for v7.1
 2026-04-13 17:00 UTC  (2+ messages)

[RFC PATCH v3 0/6] Rust goldfish_address_space driver (ioctl-only subset)
 2026-04-13 16:28 UTC  (3+ messages)
  ` [RFC PATCH v3 1/6] uapi: add goldfish_address_space userspace ABI header

[PATCH] gpu: nova-core: fb: make sure to unregister SysmemFlush on boot failure
 2026-04-13 14:00 UTC  (6+ messages)

[PATCH 0/1] rust: module_param: support bool parameters
 2026-04-13 12:25 UTC  (5+ messages)
` [PATCH 1/1] "

[PATCH 0/3] rust: more memory barriers bindings
 2026-04-13 11:13 UTC  (6+ messages)
` [PATCH 1/3] rust: sync: add helpers for mb, dma_mb and friends
` [PATCH 3/3] gpu: nova-core: fix wrong use of barriers in GSP code

[PATCH 0/1] Rust PCI capability infrastructure and SR-IOV support
 2026-04-13  6:52 UTC  (3+ messages)
` [PATCH v3 1/1] rust: pci: add extended capability "

[RFC v3 00/27] lib: Rust implementation of SPDM
 2026-04-13  5:42 UTC  (4+ messages)

[PATCH v4 0/4] rust: add basic serial device bus abstractions
 2026-04-13  3:58 UTC  (6+ messages)
` [PATCH v4 1/4] rust: devres: return reference in `devres::register`
` [PATCH v4 2/4] serdev: add rust private data to serdev_device
` [PATCH v4 3/4] rust: add basic serial device bus abstractions
` [PATCH v4 4/4] samples: rust: add Rust serial device bus sample device driver

[PATCH v2 0/3] rust: add `bitfield!` macro
 2026-04-13  2:29 UTC  (7+ messages)
` [PATCH v2 1/3] rust: extract `bitfield!` macro from `register!`
` [PATCH v2 2/3] rust: bitfield: Add KUNIT tests for bitfield
` [PATCH v2 3/3] gpu: nova-core: switch to kernel bitfield macro

[PATCH v6] kbuild: host: use single executable for rustc -C linker
 2026-04-12 14:19 UTC  (3+ messages)

[PATCH v7 0/2] Introduce Synology Microp driver
 2026-04-12 13:22 UTC  (7+ messages)
` [PATCH v7 1/2] platform: Add initial synology microp driver
` [PATCH v7 2/2] dt-bindings: embedded-controller: Add synology microp devices

[PATCH v2 1/1] rust: seq_file: add puts, putc, write, and hex_dump methods
 2026-04-12  0:45 UTC  (2+ messages)

[RFC PATCH 0/2] rust: block: add a borrowed blk-mq timeout callback
 2026-04-11 22:47 UTC  (6+ messages)
  ` [RFC PATCH 1/2] rust: block: mq: safely abstract the "
  ` [RFC PATCH 2/2] block: rnull: implement dummy "
    ` Re:Re: [RFC PATCH 0/2] rust: block: add a borrowed blk-mq "
      `  "

[BUG] android: rust binder: sleeping function called from invalid context in deferred_release()
 2026-04-11 15:24 UTC  (2+ messages)

[PATCH RESEND v13 0/3] rust: leds: add led classdev abstractions
 2026-04-11 15:07 UTC  (4+ messages)
` [PATCH RESEND v13 1/3] rust: leds: add basic "
` [PATCH RESEND v13 2/3] rust: leds: add Mode trait
` [PATCH RESEND v13 3/3] rust: leds: add multicolor classdev abstractions

[PATCH v10 0/5] Rust bindings for gem shmem
 2026-04-11 13:32 UTC  (12+ messages)
` [PATCH v10 1/5] rust: drm: gem: s/device::Device/Device/ for shmem.rs
` [PATCH v10 2/5] drm/gem/shmem: Introduce __drm_gem_shmem_free_sgt_locked()
` [PATCH v10 3/5] drm/gem/shmem: Export drm_gem_shmem_get_pages_sgt_locked()
` [PATCH v10 4/5] rust: drm: gem: Introduce shmem::SGTable
` [PATCH v10 5/5] rust: drm: gem: Add vmap functions to shmem bindings

[RFC 00/16] bus1: Capability-based IPC for Linux
 2026-04-11 12:46 UTC  (4+ messages)
` [RFC 07/16] bus1: add man-page

[PATCH v4 0/5] Rust io_uring command abstraction for miscdevice
 2026-04-11 12:27 UTC  (7+ messages)
` [PATCH v4 2/5] io_uring/cmd: zero-init pdu in io_uring_cmd_prep() to avoid UB

[RFC PATCH 0/2] rust: block: safely abstract the blk-mq poll callback
 2026-04-11 10:33 UTC  (4+ messages)
  ` [RFC PATCH 1/2] rust: block: mq: safely abstract the "
    ` [RFC PATCH 2/2] block: rnull: wire up poll queues dummy callback

[PATCH v1 RESEND 0/4] drm/tyr: implement GPU reset API
 2026-04-11  6:02 UTC  (11+ messages)
` [PATCH v1 RESEND 4/4] drm/tyr: add GPU reset handling

[PATCH v5 0/8] rust: Add Per-CPU Variable API
 2026-04-11  3:06 UTC  (10+ messages)
` [PATCH v5 1/8] rust: cpumask: Add a `Cpumask` iterator
` [PATCH v5 2/8] rust: cpumask: Add getters for globally defined cpumasks
` [PATCH v5 3/8] rust: percpu: Add C bindings for per-CPU variable API
` [PATCH v5 4/8] rust: percpu: introduce a rust API for static per-CPU variables
` [PATCH v5 5/8] rust: percpu: introduce a rust API for dynamic "
` [PATCH v5 6/8] rust: percpu: add a rust per-CPU variable sample
` [PATCH v5 7/8] rust: percpu: Add pin-hole optimizations for numerics
` [PATCH v5 8/8] rust: percpu: cache per-CPU pointers in the dynamic case

[PATCH v6 0/2] rust, nova-core: add SizeConstants trait for SZ_* constants
 2026-04-11  2:41 UTC  (3+ messages)
` [PATCH v6 1/2] gpu: nova-core: use SizeConstants trait for u64 size constants
` [PATCH v6 2/2] gpu: nova-core: add task for device address type wrappers

Re:Re: [RFC PATCH 0/2] rust block-mq TagSet flags plumbing and rnull blocking wiring
 2026-04-10 16:35 UTC  (2+ messages)
`  "

[PATCH v3] rust: ACPI: fix missing match data for PRP0001
 2026-04-10 15:53 UTC  (8+ messages)

[RFC PATCH 0/2] rust block-mq TagSet flags plumbing and rnull blocking wiring
 2026-04-10 12:39 UTC  (4+ messages)
  ` [RFC PATCH 1/2] rust: block: mq: safely expose TagSet flags
  ` [RFC PATCH 2/2] block: rnull: support BLK_MQ_F_BLOCKING via configfs

[PATCH v2 0/4] docs/zh_CN: update rust/ subsystem translations
 2026-04-10 12:11 UTC  (6+ messages)
` [PATCH v2 1/4] docs/zh_CN: update rust/arch-support.rst translation
` [PATCH v2 2/4] docs/zh_CN: update rust/coding-guidelines.rst translation
` [PATCH v2 3/4] docs/zh_CN: update rust/quick-start.rst translation
` [PATCH v2 4/4] docs/zh_CN: update rust/index.rst translation

[PATCH v2 0/4] Rust netlink support + use in Rust Binder
 2026-04-10  5:42 UTC  (4+ messages)
` [PATCH v2 1/4] rust: netlink: add raw netlink abstraction

[PATCH 0/4] docs/zh_CN: update rust/ subsystem translations
 2026-04-10  1:09 UTC  (4+ messages)

[GIT PULL] rust-i2c-next for v8.0
 2026-04-09 19:11 UTC 

[PATCH v5 0/6] drm/tyr: Use register! macro
 2026-04-09 17:51 UTC  (2+ messages)
` [PATCH v5 6/6] drm/tyr: Add DOORBELL_BLOCK registers


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox