Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'block-6.19-20251226' of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux

Pull block fixes from Jens Axboe:

- Fix for a signedness issue introduced in this kernel release for rnbd

- Fix up user copy references for ublk when the server exits

* tag 'block-6.19-20251226' of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux:
block: rnbd-clt: Fix signedness bug in init_dev()
ublk: clean up user copy references on ublk server exit

+2 -3
+1 -1
drivers/block/rnbd/rnbd-clt.h
··· 112 112 struct rnbd_queue *hw_queues; 113 113 u32 device_id; 114 114 /* local Idr index - used to track minor number allocations. */ 115 - u32 clt_device_id; 115 + int clt_device_id; 116 116 struct mutex lock; 117 117 enum rnbd_clt_dev_state dev_state; 118 118 refcount_t refcount;
+1 -2
drivers/block/ublk_drv.c
··· 1607 1607 { 1608 1608 int i, j; 1609 1609 1610 - if (!(ub->dev_info.flags & (UBLK_F_SUPPORT_ZERO_COPY | 1611 - UBLK_F_AUTO_BUF_REG))) 1610 + if (!ublk_dev_need_req_ref(ub)) 1612 1611 return false; 1613 1612 1614 1613 for (i = 0; i < ub->dev_info.nr_hw_queues; i++) {