Linux driver-core infrastructure
 help / color / mirror / Atom feed
 messages from 2026-05-17 00:02:45 to 2026-05-21 23:41:51 UTC [more...]

[PATCH v4 00/27] rust: device: Higher-Ranked Lifetime Types for device drivers
 2026-05-21 23:34 UTC  (23+ messages)
` [PATCH v4 01/27] rust: alloc: remove `'static` bound on `ForeignOwnable`
` [PATCH v4 02/27] rust: driver: move 'static bounds to constructor
` [PATCH v4 03/27] rust: driver: decouple driver private data from driver type
` [PATCH v4 04/27] rust: driver core: drop drvdata before devres release
` [PATCH v4 05/27] rust: pci: implement Sync for Device<Bound>
` [PATCH v4 06/27] rust: platform: "
` [PATCH v4 07/27] rust: auxiliary: "
` [PATCH v4 08/27] rust: usb: "
` [PATCH v4 09/27] rust: device: "
` [PATCH v4 10/27] rust: device: make Core and CoreInternal lifetime-parameterized
` [PATCH v4 11/27] rust: pci: make Driver trait lifetime-parameterized
` [PATCH v4 12/27] rust: platform: "
` [PATCH v4 13/27] rust: auxiliary: "
` [PATCH v4 14/27] rust: usb: "
` [PATCH v4 15/27] rust: i2c: "
` [PATCH v4 16/27] rust: driver: update module documentation for GAT-based Data type
` [PATCH v4 17/27] rust: pci: make Bar lifetime-parameterized
` [PATCH v4 18/27] rust: io: make IoMem and ExclusiveIoMem lifetime-parameterized
` [PATCH v4 19/27] samples: rust: rust_driver_pci: use HRT lifetime for Bar
` [PATCH v4 20/27] gpu: nova-core: separate driver type from driver data
` [PATCH v4 21/27] rust: types: add `ForLt` trait for higher-ranked lifetime support
` [PATCH v4 22/27] rust: auxiliary: generalize Registration over ForLt

[PATCH] sysfs: clamp show() return value in sysfs_kf_read()
 2026-05-21 21:42 UTC  (11+ messages)

[PATCH v4] PCI: hotplug: Add 'uevent' sysfs attribute to trigger slot events
 2026-05-21 14:48 UTC 

[RFC rtw-next 1/2] wifi: rtw89: usb: add hw_info sysfs attribute
 2026-05-21 13:11 UTC  (8+ messages)
          ` [External Mail] "

[PATCH] firmware_loader: Fix recursive lock in device_cache_fw_images()
 2026-05-21 11:46 UTC  (2+ messages)

[PATCH 00/23] driver core: count references of the platform device's fwnode, not OF node
 2026-05-21  9:44 UTC  (26+ messages)
` [PATCH 01/23] mfd: tps6586x: fix OF node refcount
` [PATCH 02/23] net: mv643xx: "
` [PATCH 03/23] slimbus: qcom-ngd-ctrl: "
` [PATCH 04/23] pmdomain: imx: "
` [PATCH 05/23] powerpc/powermac: "
` [PATCH 06/23] driver core: platform: provide platform_device_set_of_node()
` [PATCH 07/23] driver core: platform: provide platform_device_set_fwnode()
` [PATCH 08/23] driver core: platform: provide platform_device_set_of_node_from_dev()
` [PATCH 09/23] of: platform: use platform_device_set_of_node()
` [PATCH 10/23] powerpc/powermac: "
` [PATCH 11/23] i2c: pxa-pci: "
` [PATCH 12/23] iommu/fsl: "
` [PATCH 13/23] net: bcmgenet: "
` [PATCH 14/23] pmdomain: imx: "
` [PATCH 15/23] mfd: tps6586: "
` [PATCH 16/23] slimbus: qcom-ngd-ctrl: "
` [PATCH 17/23] net: mv643xx: "
` [PATCH 18/23] drm/xe/i2c: use platform_device_set_fwnode()
` [PATCH 19/23] platform/surface: gpe: "
` [PATCH 20/23] usb: chipidea: use platform_device_set_of_node_from_dev()
` [PATCH 21/23] usb: musb: "
` [PATCH 22/23] reset: rzg2l: "
` [PATCH 23/23] driver core: platform: count references to all kinds of firmware nodes

[PATCH 0/8] Fix missing fops.owner in Rust DRM/misc abstractions
 2026-05-21  7:59 UTC  (14+ messages)
` [PATCH 1/8] rust: module: add `MODULE_PTR` const to `ModuleMetadata` trait
` [PATCH 2/8] rust: driver: make `DriverModule` struct pub(crate) in `module_driver!`
` [PATCH 3/8] rust: drm: add `ThisModule` associated type to `Driver` trait
` [PATCH 4/8] gpu: nova: implement `ThisModule`
` [PATCH 5/8] gpu: tyr: "
` [PATCH 6/8] rust: drm: set fops.owner from driver module pointer
` [PATCH 7/8] rust: miscdevice: add `ThisModule` associated type to `MiscDevice` trait
` [PATCH 8/8] samples: rust: rust_misc_device: implement `ThisModule` for `RustMiscDevice`

[PATCH v2 0/7] Fix missing fops.owner in Rust DRM/misc abstractions
 2026-05-21  7:52 UTC  (8+ messages)
` [PATCH v2 1/7] rust: module: add `THIS_MODULE` const to `ModuleMetadata` trait
` [PATCH v2 2/7] rust: macros: auto-insert ThisModule in #[vtable]
` [PATCH v2 3/7] rust: doctest: add LocalModule fallback for #[vtable] ThisModule
` [PATCH v2 4/7] rust: drm: set fops.owner from driver module pointer
` [PATCH v2 5/7] rust: miscdevice: "
` [PATCH v2 6/7] rust: configfs: use `LocalModule` for `THIS_MODULE`
` [PATCH v2 7/7] block: rnull: "

[PATCH] sysfs: don't remove existing directory on update failure
 2026-05-20 14:45 UTC  (3+ messages)

[PATCH] sysfs: don't remove existing directory on update failure
 2026-05-20 13:12 UTC  (2+ messages)

[PATCH 0/6] rust: drm: Higher-Ranked Lifetime private data
 2026-05-20 11:25 UTC  (10+ messages)

[PATCH v3 00/27] rust: device: Higher-Ranked Lifetime Types for device drivers
 2026-05-20  9:34 UTC  (80+ messages)
` [PATCH v3 01/27] rust: alloc: remove `'static` bound on `ForeignOwnable`
` [PATCH v3 02/27] rust: driver: move 'static bounds to constructor
` [PATCH v3 03/27] rust: driver: decouple driver private data from driver type
` [PATCH v3 04/27] rust: driver core: drop drvdata before devres release
` [PATCH v3 05/27] rust: pci: implement Sync for Device<Bound>
` [PATCH v3 06/27] rust: platform: "
` [PATCH v3 07/27] rust: auxiliary: "
` [PATCH v3 08/27] rust: usb: "
` [PATCH v3 09/27] rust: device: "
` [PATCH v3 10/27] rust: pci: make Driver trait lifetime-parameterized
` [PATCH v3 11/27] rust: platform: "
` [PATCH v3 12/27] rust: auxiliary: "
` [PATCH v3 13/27] rust: usb: "
` [PATCH v3 14/27] rust: i2c: "
` [PATCH v3 15/27] rust: driver: update module documentation for GAT-based Data type
` [PATCH v3 16/27] rust: types: add `ForLt` trait for higher-ranked lifetime support
` [PATCH v3 17/27] rust: auxiliary: generalize Registration over ForLt
` [PATCH v3 18/27] samples: rust: rust_driver_auxiliary: showcase lifetime-bound registration data
` [PATCH v3 19/27] rust: pci: make Bar lifetime-parameterized
` [PATCH v3 20/27] rust: io: make IoMem and ExclusiveIoMem lifetime-parameterized
` [PATCH v3 21/27] samples: rust: rust_driver_pci: use HRT lifetime for Bar
` [PATCH v3 22/27] rust: driver-core: rename 'a lifetime to 'bound
` [PATCH REF v3 23/27] gpu: nova-core: "
` [PATCH REF v3 24/27] gpu: nova-core: use lifetime for Bar
` [PATCH REF v3 25/27] gpu: nova-core: unregister sysmem flush page from Drop
` [PATCH REF v3 26/27] gpu: nova-core: replace ARef<Device> with &'bound Device in SysmemFlush
` [PATCH REF v3 27/27] gpu: drm: tyr: use lifetime for IoMem

[PATCH v7 0/3] ARM: omap1: use real firmware node lookup for GPIOs on Nokia 770
 2026-05-20  7:05 UTC  (5+ messages)

[PATCH v11 0/5] drivers/base: Introduce revocable
 2026-05-19 23:55 UTC  (7+ messages)
` [PATCH v11 4/5] platform/chrome: Protect cros_ec_device lifecycle with revocable

[PATCH v2 0/5] treewide: Convert buses to use generic driver_override
 2026-05-19 11:09 UTC  (3+ messages)

[PATCH v7 0/3] lan966x pci device: Add support for SFPs, core part
 2026-05-19  9:22 UTC  (3+ messages)
` [PATCH v7 1/3] Revert "treewide: Fix probing of devices in DT overlays"

[PATCH] PM: Use LIST_HEAD() to initialize on stack list head
 2026-05-19  5:59 UTC 

[PATCH v16 0/5] shut down devices asynchronously
 2026-05-18 19:32 UTC  (6+ messages)
` [PATCH 1/5] driver core: separate function to shutdown one device
` [PATCH 2/5] driver core: do not always lock parent in shutdown
` [PATCH 3/5] driver core: async device shutdown infrastructure
` [PATCH 4/5] PCI: Enable async shutdown support
` [PATCH 5/5] scsi: "

[PATCH v4 0/4] Enable sysfs module symlink for more built-in drivers
 2026-05-18 10:49 UTC  (9+ messages)
` [PATCH v5 "
  ` [PATCH v5 1/4] soc/tegra: cbb: Move driver registration from pure_initcall to core_initcall
  ` [PATCH v5 2/4] kernel: param: initialize module_kset in a pure_initcall
  ` [PATCH v5 3/4] coresight: pass THIS_MODULE implicitly through a macro
  ` [PATCH v5 4/4] driver core: platform: set mod_name in driver registration

[PATCH] driver core: delete useless forward declaration of "struct class"
 2026-05-17 16:17 UTC 

[RFC PATCH 0/3] Rust: add runtime PM support
 2026-05-17  7:20 UTC  (4+ messages)
` [RFC PATCH 1/3] rust: Add "


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