messages from 2026-06-08 15:50:55 to 2026-06-10 05:22:26 UTC [more...]
[PATCH 00/27] Enable lock context analysis in drivers/block/
2026-06-10 5:22 UTC (39+ messages)
` [PATCH 01/27] aoe: Enable lock context analysis
` [PATCH 02/27] drbd: Remove "extern" from function declarations
` [PATCH 03/27] drbd: Retain one _get_ldev_if_state() implementation
` [PATCH 04/27] drbd: Remove the get_ldev_if_state() macro
` [PATCH 05/27] drbd: Remove the 'local' lock context
` [PATCH 06/27] drbd: Simplify the bitmap locking functions
` [PATCH 07/27] drbd: Move two declarations
` [PATCH 08/27] drbd: Pass 'resource' directly to complete_conflicting_writes()
` [PATCH 09/27] drbd: Split drbd_nl_get_connections_dumpit()
` [PATCH 10/27] drbd: Make a mutex_unlock() call unconditional
` [PATCH 11/27] drbd: Split drbd_req_state()
` [PATCH 12/27] drbd: Convert drbd_req_state() to unconditional locking
` [PATCH 13/27] drbd: Annotate drbd_bm_{lock,unlock}()
` [PATCH 14/27] drbd: Enable lock context analysis
` [PATCH 15/27] loop: Split loop_change_fd()
` [PATCH 16/27] loop: Split loop_configure()
` [PATCH 17/27] loop: Remove the "bool global" function argument
` [PATCH 18/27] loop: Add lock context annotations
` [PATCH 19/27] mtip32: Enable lock context analysis
` [PATCH 20/27] nbd: "
` [PATCH 21/27] null_blk: "
` [PATCH 22/27] rbd: "
` [PATCH 23/27] ublk: "
` [PATCH 24/27] xen-blkback: "
` [PATCH 25/27] zram: "
` [PATCH 26/27] rnbd: "
` [PATCH 27/27] block: Enable lock context analysis for all block drivers
configurable block error injection v4
2026-06-10 5:08 UTC (5+ messages)
` [PATCH 1/4] block: add a macro to initialize the status table
` [PATCH 2/4] block: add a "tag" for block status codes
` [PATCH 3/4] block: add a str_to_blk_op helper
` [PATCH 4/4] block: add configurable error injection
[linus:master] [block] 3179a5f7f8: blktests.loop/010.fail
2026-06-10 2:57 UTC
[PATCH] block: Fix blk_sync_queue() to properly stop timeout timer
2026-06-09 23:11 UTC (5+ messages)
[REPORT] nvmet-rdma: integer overflow in inline-data SGL bounds check -> pre-auth kernel-memory read + remote crash (candidate patch inline)
2026-06-09 22:00 UTC (6+ messages)
` [PATCH] nvmet-rdma: reject inline data with a nonzero offset
` [PATCH v2] nvmet-rdma: handle "
[PATCH v2 00/83] block: rnull: complete the rust null block driver
2026-06-09 21:45 UTC (85+ messages)
` [PATCH v2 01/83] block: rust: fix `Send` bound for `GenDisk`
` [PATCH v2 02/83] rust: block: rename `SECTOR_MASK` to `PAGE_SECTOR_MASK`
` [PATCH v2 03/83] block: rnull: adopt new formatting guidelines
` [PATCH v2 04/83] block: rnull: add module parameters
` [PATCH v2 05/83] block: rnull: add macros to define configfs attributes
` [PATCH v2 06/83] block: rust: fix generation of bindings to `BLK_STS_.*`
` [PATCH v2 07/83] block: rust: change `queue_rq` request type to `Owned`
` [PATCH v2 08/83] block: rust: add `Request` private data support
` [PATCH v2 09/83] block: rust: document the lifetime of `Request`
` [PATCH v2 10/83] block: rust: allow `hrtimer::Timer` in `RequestData`
` [PATCH v2 11/83] block: rnull: add timer completion mode
` [PATCH v2 12/83] block: rust: introduce `kernel::block::bio` module
` [PATCH v2 13/83] block: rust: add `command` getter to `Request`
` [PATCH v2 14/83] block: rust: mq: use GFP_KERNEL from prelude
` [PATCH v2 15/83] block: rust: add `TagSet` flags
` [PATCH v2 16/83] block: rnull: add memory backing
` [PATCH v2 17/83] block: rnull: add submit queue count config option
` [PATCH v2 18/83] block: rnull: add `use_per_node_hctx` "
` [PATCH v2 19/83] block: rust: allow specifying home node when constructing `TagSet`
` [PATCH v2 20/83] block: rnull: allow specifying the home numa node
` [PATCH v2 21/83] block: rust: add Request::sectors() method
` [PATCH v2 22/83] block: rust: mq: add max_hw_discard_sectors support to GenDiskBuilder
` [PATCH v2 23/83] block: rnull: add discard support
` [PATCH v2 24/83] block: rust: add `NoDefaultScheduler` flag for `TagSet`
` [PATCH v2 25/83] block: rnull: add no_sched module parameter and configfs attribute
` [PATCH v2 26/83] block: rust: change sector type from usize to u64
` [PATCH v2 27/83] block: rust: add `BadBlocks` for bad block tracking
` [PATCH v2 28/83] block: rust: mq: add Request::end() method for custom status codes
` [PATCH v2 29/83] block: rnull: add badblocks support
` [PATCH v2 30/83] block: rnull: add badblocks_once support
` [PATCH v2 31/83] block: rust: add `Segment::truncate`
` [PATCH v2 32/83] block: rnull: add partial I/O support for bad blocks
` [PATCH v2 33/83] block: rust: add `TagSet` private data support
` [PATCH v2 34/83] block: rust: add `hctx` "
` [PATCH v2 35/83] block: rnull: add volatile cache emulation
` [PATCH v2 36/83] block: rust: implement `Sync` for `GenDisk`
` [PATCH v2 37/83] block: rust: add a back reference feature to `GenDisk`
` [PATCH v2 38/83] block: rust: introduce an idle type state for `Request`
` [PATCH v2 39/83] block: rust: add a request queue abstraction
` [PATCH v2 40/83] block: rust: add a method to get the request queue for a request
` [PATCH v2 41/83] block: rust: introduce `kernel::block::error`
` [PATCH v2 42/83] block: rust: require `queue_rq` to return a `BlkResult`
` [PATCH v2 43/83] block: rust: add `GenDisk::queue_data`
` [PATCH v2 44/83] block: rnull: add bandwidth limiting
` [PATCH v2 45/83] block: rnull: add blocking queue mode
` [PATCH v2 46/83] block: rnull: add shared tags
` [PATCH v2 47/83] block: rnull: add queue depth config option
` [PATCH v2 48/83] block: rust: add an abstraction for `bindings::req_op`
` [PATCH v2 49/83] block: rust: add a method to set the target sector of a request
` [PATCH v2 50/83] block: rust: move gendisk vtable construction to separate function
` [PATCH v2 51/83] block: rust: add zoned block device support
` [PATCH v2 52/83] block: rust: add `TagSet::flags`
` [PATCH v2 53/83] block: rnull: add zoned storage support
` [PATCH v2 54/83] block: rust: add `map_queues` support
` [PATCH v2 55/83] block: rust: add an abstraction for `struct blk_mq_queue_map`
` [PATCH v2 56/83] block: rust: add polled completion support
` [PATCH v2 57/83] block: rust: add accessors to `TagSet`
` [PATCH v2 58/83] block: rnull: add polled completion support
` [PATCH v2 59/83] block: rnull: add REQ_OP_FLUSH support
` [PATCH v2 60/83] block: rust: add request flags abstraction
` [PATCH v2 61/83] block: rust: add abstraction for block queue feature flags
` [PATCH v2 62/83] block: rust: allow setting write cache and FUA flags for `GenDisk`
` [PATCH v2 63/83] block: rust: add `Segment::copy_to_page_limit`
` [PATCH v2 64/83] block: rnull: add fua support
` [PATCH v2 65/83] block: rust: add `GenDisk::tag_set`
` [PATCH v2 66/83] block: rust: add `TagSet::update_hw_queue_count`
` [PATCH v2 67/83] block: rnull: add an option to change the number of hardware queues
` [PATCH v2 68/83] block: rust: add an abstraction for `struct rq_list`
` [PATCH v2 69/83] block: rust: add `queue_rqs` vtable hook
` [PATCH v2 70/83] block: rnull: support queue_rqs
` [PATCH v2 71/83] block: rust: remove the `is_poll` parameter from `queue_rq`
` [PATCH v2 72/83] block: rust: add a debug assert for refcounts
` [PATCH v2 73/83] block: rust: add `TagSet::tag_to_rq`
` [PATCH v2 74/83] block: rust: add `Request::queue_index`
` [PATCH v2 75/83] block: rust: add `Request::requeue`
` [PATCH v2 76/83] block: rust: add `request_timeout` hook
` [PATCH v2 77/83] block: rnull: add fault injection support
` [PATCH v2 78/83] block: rust: add max_sectors option to `GenDiskBuilder`
` [PATCH v2 79/83] block: rnull: allow configuration of the maximum IO size
` [PATCH v2 80/83] block: rust: add `virt_boundary_mask` option to `GenDiskBuilder`
` [PATCH v2 81/83] block: rnull: add `virt_boundary` option
` [PATCH v2 82/83] block: rnull: add `shared_tag_bitmap` config option
` [PATCH v2 83/83] block: rnull: add zone offline and readonly configfs files
[PATCH v3] loop: Fix NULL pointer dereference in lo_rw_aio()
2026-06-09 17:50 UTC (4+ messages)
` [PATCH v4] "
[PATCH v7] block: propagate in_flight to whole disk on partition I/O
2026-06-09 16:13 UTC (4+ messages)
[PATCH v2] virtio-blk: clamp zone report to the report buffer capacity
2026-06-09 16:02 UTC (4+ messages)
[PATCH 0/5] blk-cgroup: fix blkg list and policy data races
2026-06-09 15:15 UTC (2+ messages)
[PATCH] block: fix arg type in `blk_mq_update_nr_hw_queues`
2026-06-09 15:05 UTC (4+ messages)
[PATCH] rust: block: require `Sync` for `Operations::QueueData`
2026-06-09 14:20 UTC (2+ messages)
[PATCH v17 00/10] rust: add `Ownable` trait and `Owned` type
2026-06-09 14:11 UTC (2+ messages)
[PATCH v3 0/4] scsi/block: NUMA-local scan allocations, shared-tag path cleanup, and SCSI I/O counters
2026-06-09 13:49 UTC (7+ messages)
` [PATCH v3 1/4] scsi: scan: allocate sdev and starget on the NUMA node of the host adapter
` [PATCH v3 2/4] scsi: host: allocate struct Scsi_Host "
` [PATCH v3 3/4] block: drop shared-tag fairness throttling
` [PATCH v3 4/4] scsi: use percpu counters for iostat counters in struct scsi_device
[Kernel Bug] INFO: rcu detected stall in disk_check_events
2026-06-09 12:41 UTC (2+ messages)
[PATCH v4 0/8] Support for block device NVMEM providers
2026-06-09 11:05 UTC (12+ messages)
` [PATCH v4 1/8] dt-bindings: mmc: Document support for nvmem-layout
` [PATCH v4 2/8] dt-bindings: net: wireless: qcom,ath10k: Document NVMEM cells
` [PATCH v4 3/8] dt-bindings: bluetooth: qcom: Add NVMEM BD address cell
` [PATCH v4 4/8] block: implement NVMEM provider
` [PATCH v4 5/8] net: of_net: Add of_get_nvmem_eui48() helper for EUI-48 lookup
` [PATCH v4 6/8] Bluetooth: hci_sync: Add NVMEM-backed BD address retrieval
` [PATCH v4 7/8] Bluetooth: qca: Set NVMEM BD address quirks when address is invalid
` [PATCH v4 8/8] arm64: dts: qcom: arduino-imola: Describe NVMEM layout for WiFi/BT addresses
[PATCH v2 00/14] list: Prepare entry iterators to cache cursor state
2026-06-09 10:33 UTC (20+ messages)
` [PATCH v2 01/14] drbd: Open-code transfer log list walk
` [PATCH v2 02/14] firewire: core: Open-code topology "
` [PATCH v2 03/14] drm/bridge: Open-code bridge chain list walks
` [PATCH v2 04/14] drm/i915/gt: Open-code active timeline walk
` [PATCH v2 05/14] drm/i915: Open-code DFS dependency list walk
` [PATCH v2 06/14] drm/ttm: Open-code reservation "
` [PATCH v2 07/14] spi: fsi: Open-code message transfer walk
` [PATCH v2 08/14] spi: stm32-ospi: "
` [PATCH v2 09/14] spi: stm32-qspi: "
` [PATCH v2 10/14] spi: tegra210-quad: "
` [PATCH v2 11/14] locking/locktorture: Open-code ww mutex list walk
` [PATCH v2 12/14] locking/ww_mutex: Open-code stress reorder "
` [PATCH v2 13/14] ASoC: dapm: Open-code widget invalidation walk
` [PATCH v2 14/14] list: Cache cursors in entry iterators
[LSF/MM/BPF TOPIC] Memory fragmentation with large block sizes
2026-06-09 9:37 UTC (4+ messages)
` [Lsf-pc] "
[PATCH] block: optimize I/O merge hot path with unlikely() hints
2026-06-09 8:24 UTC
configurable block error injection v3
2026-06-09 7:47 UTC (14+ messages)
` [PATCH 1/4] block: add a macro to initialize the status table
` [PATCH 2/4] block: add a "tag" for block status codes
` [PATCH 3/4] block: add a str_to_blk_op helper
` [PATCH 4/4] block: add configurable error injection
[PATCH] block: optimize I/O merge hot path with unlikely() hints
2026-06-09 7:38 UTC (2+ messages)
[PATCH] block: clear zone write plugging flag before failing rejected BIOs
2026-06-09 0:36 UTC (3+ messages)
[PATCH] brd: normalize non-positive max_part before rounding it up
2026-06-08 23:59 UTC
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox