diff mbox series

s390/dcssblk:: don't call bio_split_to_limits

Message ID 20230123075356.60847-1-hch@lst.de (mailing list archive)
State New, archived
Headers show
Series s390/dcssblk:: don't call bio_split_to_limits | expand

Commit Message

Christoph Hellwig Jan. 23, 2023, 7:53 a.m. UTC
s390 iterates over the bio using bio_for_each_segment and doesn't need
any bio splitting.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/s390/block/dcssblk.c | 4 ----
 1 file changed, 4 deletions(-)

Comments

Alexander Gordeev Jan. 24, 2023, 1:41 p.m. UTC | #1
On Mon, Jan 23, 2023 at 08:53:56AM +0100, Christoph Hellwig wrote:

Hi Christoph,

> s390 iterates over the bio using bio_for_each_segment and doesn't need
> any bio splitting.
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
>  drivers/s390/block/dcssblk.c | 4 ----
>  1 file changed, 4 deletions(-)
> 
> diff --git a/drivers/s390/block/dcssblk.c b/drivers/s390/block/dcssblk.c
> index c0f85ffb2b62de..c09f2e053bf863 100644
> --- a/drivers/s390/block/dcssblk.c
> +++ b/drivers/s390/block/dcssblk.c
> @@ -864,10 +864,6 @@ dcssblk_submit_bio(struct bio *bio)
>  	unsigned long source_addr;
>  	unsigned long bytes_done;
>  
> -	bio = bio_split_to_limits(bio);
> -	if (!bio)
> -		return;
> -
>  	bytes_done = 0;
>  	dev_info = bio->bi_bdev->bd_disk->private_data;
>  	if (dev_info == NULL)

If my understanding is correct that this change was as good as
early as commit 54efd50bfd87 ("block: make generic_make_request
handle arbitrarily sized bios") took place and simply fell into
the second category?

	...
	Some make_request_fn() callbacks were simple enough to audit and verify     
	they don't need blk_queue_split() calls. The skipped ones are:              
	...
	Some others are almost certainly safe to remove now, but will be left       
	for future patches.                                                         
	...

Thanks!
Christoph Hellwig Jan. 24, 2023, 1:45 p.m. UTC | #2
On Tue, Jan 24, 2023 at 02:41:34PM +0100, Alexander Gordeev wrote:
> If my understanding is correct that this change was as good as
> early as commit 54efd50bfd87 ("block: make generic_make_request
> handle arbitrarily sized bios") took place and simply fell into
> the second category?

Yes.
Alexander Gordeev Jan. 24, 2023, 6:22 p.m. UTC | #3
On Mon, Jan 23, 2023 at 08:53:56AM +0100, Christoph Hellwig wrote:
> s390 iterates over the bio using bio_for_each_segment and doesn't need
> any bio splitting.
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
>  drivers/s390/block/dcssblk.c | 4 ----
>  1 file changed, 4 deletions(-)
> 
> diff --git a/drivers/s390/block/dcssblk.c b/drivers/s390/block/dcssblk.c
> index c0f85ffb2b62de..c09f2e053bf863 100644
> --- a/drivers/s390/block/dcssblk.c
> +++ b/drivers/s390/block/dcssblk.c
> @@ -864,10 +864,6 @@ dcssblk_submit_bio(struct bio *bio)
>  	unsigned long source_addr;
>  	unsigned long bytes_done;
>  
> -	bio = bio_split_to_limits(bio);
> -	if (!bio)
> -		return;
> -
>  	bytes_done = 0;
>  	dev_info = bio->bi_bdev->bd_disk->private_data;
>  	if (dev_info == NULL)

Acked-by: Alexander Gordeev <agordeev@linux.ibm.com>
Jens Axboe Jan. 24, 2023, 6:27 p.m. UTC | #4
On Mon, 23 Jan 2023 08:53:56 +0100, Christoph Hellwig wrote:
> s390 iterates over the bio using bio_for_each_segment and doesn't need
> any bio splitting.
> 
> 

Applied, thanks!

[1/1] s390/dcssblk:: don't call bio_split_to_limits
      commit: a2aea8f56f9ee995aeabeb633b708024a3be5281

Best regards,
diff mbox series

Patch

diff --git a/drivers/s390/block/dcssblk.c b/drivers/s390/block/dcssblk.c
index c0f85ffb2b62de..c09f2e053bf863 100644
--- a/drivers/s390/block/dcssblk.c
+++ b/drivers/s390/block/dcssblk.c
@@ -864,10 +864,6 @@  dcssblk_submit_bio(struct bio *bio)
 	unsigned long source_addr;
 	unsigned long bytes_done;
 
-	bio = bio_split_to_limits(bio);
-	if (!bio)
-		return;
-
 	bytes_done = 0;
 	dev_info = bio->bi_bdev->bd_disk->private_data;
 	if (dev_info == NULL)