-
Notifications
You must be signed in to change notification settings - Fork 0
blk-throttle: Set BIO_THROTTLED when bio has been throttled #472
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
blktests-ci
wants to merge
22
commits into
for-next_base
Choose a base branch
from
series/1041155=>for-next
base: for-next_base
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+312
−162
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* block-6.19: selftests/ublk: fix Makefile to rebuild on header changes selftests/ublk: add test for async partition scan ublk: scan partition in async way block,bfq: fix aux stat accumulation destination
* for-7.0/block: brd: replace simple_strtol with kstrtoul in ramdisk_size rnull: replace `kernel::c_str!` with C-Strings
* for-7.0/io_uring: io_uring: IOPOLL polling improvements
* for-7.0/block: null_blk: Constify struct configfs_item_operations and configfs_group_operations
* block-6.19: blk-mq: skip CPU offline notify on unmapped hctx
* io_uring-6.19: io_uring: use GFP_NOWAIT for overflow CQEs on legacy rings
* block-6.19: md: Fix forward incompatibility from configurable logical block size md: Fix logical_block_size configuration being overwritten md: suspend array while updating raid_disks via sysfs md/raid5: fix possible null-pointer dereferences in raid5_store_group_thread_cnt() md: Fix static checker warning in analyze_sbs
* io_uring-6.19: io_uring/memmap: drop unused sz param in io_uring_validate_mmap_request() io_uring/tctx: add separate lock for list of tctx's in ctx
* block-6.19: block, bfq: update outdated comment
* io_uring-6.19: io_uring/io-wq: remove io_wq_for_each_worker() return value io_uring/io-wq: fix incorrect io_wq_for_each_worker() termination logic
* for-7.0/io_uring: io_uring: Trim out unused includes
* for-7.0/block: rnbd-srv: Zero the rsp buffer before using it rnbd-srv: Fix server side setting of bi_size for special IOs rnbd-srv: fix the trace format for flags block/rnbd-proto: Check and retain the NOUNMAP flag for requests block: rnbd: add .release to rnbd_dev_ktype block/rnbd-proto: Handle PREFLUSH flag properly for IOs
* block-6.19: loop: don't change loop device under exclusive opener in loop_set_status
This patch changes the length variables from unsigned int to size_t. Using size_t ensures that we can handle larger sizes, as size_t is always equal to or larger than the previously used u32 type. Originally, u32 was used because blk-mq-dma code evolved from scatter-gather implementation, which uses unsigned int to describe length. This change will also allow us to reuse the existing struct phys_vec in places that don't need scatter-gather. Signed-off-by: Leon Romanovsky <leonro@nvidia.com> Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Move the struct phys_vec definition from block/blk-mq-dma.c to include/linux/types.h to make it available for use across the kernel. The phys_vec structure represents a physical address range with a length, which is used by the new physical address-based DMA mapping API. This structure is already used by the block layer and will be needed for DMA phys API users. Moving this definition to types.h provides a centralized location for this common data structure and eliminates code duplication across subsystems that need to work with physical address ranges. Signed-off-by: Leon Romanovsky <leonro@nvidia.com> Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
* for-7.0/blk-pvec: types: move phys_vec definition to common header nvme-pci: Use size_t for length fields to handle larger sizes
* block-6.19: blk-rq-qos: Remove unlikely() hints from QoS checks
* block-6.19: block: don't merge bios with different app_tags
* block-6.19: loop: add missing bd_abort_claiming in loop_set_status
* for-7.0/block: io_uring: remove nr_segs recalculation in io_import_kbuf() block: don't initialize bi_vcnt for cloned bio in bio_iov_bvec_set() block: use bvec iterator helper for bio_may_need_split()
* block-6.19: blk-mq: avoid stall during boot due to synchronize_rcu_expedited
Author
|
Upstream branch: 28fd54b Pull request is NOT updated. Failed to apply https://patchwork.kernel.org/project/linux-block/list/?series=1041155 conflict: |
2b94c1f to
94a5548
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull request for series with
subject: blk-throttle: Set BIO_THROTTLED when bio has been throttled
version: 1
url: https://patchwork.kernel.org/project/linux-block/list/?series=1041155