diff mbox series

[23/28] block: kill lld busy

Message ID 20181025211039.11559-24-axboe@kernel.dk
State Not Applicable
Delegated to: David Miller
Headers show
Series blk-mq driver conversions and legacy path removal | expand

Commit Message

Jens Axboe Oct. 25, 2018, 9:10 p.m. UTC
Nobody sets the helper, so we always return 0. Kill it.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
---
 block/blk-core.c       | 28 ----------------------------
 block/blk-settings.c   |  6 ------
 drivers/md/dm-mpath.c  |  4 +---
 include/linux/blkdev.h |  4 ----
 4 files changed, 1 insertion(+), 41 deletions(-)

Comments

Bart Van Assche Oct. 25, 2018, 9:42 p.m. UTC | #1
On Thu, 2018-10-25 at 15:10 -0600, Jens Axboe wrote:
> Nobody sets the helper, so we always return 0. Kill it.

How about changing the description of this patch into something
like "Now that the blk_lld_busy() and blk_queue_lld_busy() callers
have been removed, also remove the implementations of these functions."?

Thanks,

Bart.
Jens Axboe Oct. 25, 2018, 10:18 p.m. UTC | #2
On 10/25/18 3:42 PM, Bart Van Assche wrote:
> On Thu, 2018-10-25 at 15:10 -0600, Jens Axboe wrote:
>> Nobody sets the helper, so we always return 0. Kill it.
> 
> How about changing the description of this patch into something
> like "Now that the blk_lld_busy() and blk_queue_lld_busy() callers
> have been removed, also remove the implementations of these functions."?

Sure, I can improve the commit message.
Hannes Reinecke Oct. 29, 2018, 7:10 a.m. UTC | #3
On 10/25/18 11:10 PM, Jens Axboe wrote:
> Nobody sets the helper, so we always return 0. Kill it.
> 
> Signed-off-by: Jens Axboe <axboe@kernel.dk>
> ---
>   block/blk-core.c       | 28 ----------------------------
>   block/blk-settings.c   |  6 ------
>   drivers/md/dm-mpath.c  |  4 +---
>   include/linux/blkdev.h |  4 ----
>   4 files changed, 1 insertion(+), 41 deletions(-)
> 
> diff --git a/block/blk-core.c b/block/blk-core.c
> index 4c39c7865f9c..dd1328f4dc31 100644
> --- a/block/blk-core.c
> +++ b/block/blk-core.c
> @@ -1795,34 +1795,6 @@ void rq_flush_dcache_pages(struct request *rq)
>   EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
>   #endif
>   
> -/**
> - * blk_lld_busy - Check if underlying low-level drivers of a device are busy
> - * @q : the queue of the device being checked
> - *
> - * Description:
> - *    Check if underlying low-level drivers of a device are busy.
> - *    If the drivers want to export their busy state, they must set own
> - *    exporting function using blk_queue_lld_busy() first.
> - *
> - *    Basically, this function is used only by request stacking drivers
> - *    to stop dispatching requests to underlying devices when underlying
> - *    devices are busy.  This behavior helps more I/O merging on the queue
> - *    of the request stacking driver and prevents I/O throughput regression
> - *    on burst I/O load.
> - *
> - * Return:
> - *    0 - Not busy (The request stacking driver should dispatch request)
> - *    1 - Busy (The request stacking driver should stop dispatching request)
> - */
> -int blk_lld_busy(struct request_queue *q)
> -{
> -	if (q->lld_busy_fn)
> -		return q->lld_busy_fn(q);
> -
> -	return 0;
> -}
> -EXPORT_SYMBOL_GPL(blk_lld_busy);
> -
>   /**
>    * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
>    * @rq: the clone request to be cleaned up
> diff --git a/block/blk-settings.c b/block/blk-settings.c
> index 3c5da75c2def..1895f499bbe5 100644
> --- a/block/blk-settings.c
> +++ b/block/blk-settings.c
> @@ -32,12 +32,6 @@ void blk_queue_rq_timeout(struct request_queue *q, unsigned int timeout)
>   }
>   EXPORT_SYMBOL_GPL(blk_queue_rq_timeout);
>   
> -void blk_queue_lld_busy(struct request_queue *q, lld_busy_fn *fn)
> -{
> -	q->lld_busy_fn = fn;
> -}
> -EXPORT_SYMBOL_GPL(blk_queue_lld_busy);
> -
>   /**
>    * blk_set_default_limits - reset limits to default values
>    * @lim:  the queue_limits structure to reset
> diff --git a/drivers/md/dm-mpath.c b/drivers/md/dm-mpath.c
> index a24ed3973e7c..4d736e0fd67f 100644
> --- a/drivers/md/dm-mpath.c
> +++ b/drivers/md/dm-mpath.c
> @@ -1936,9 +1936,7 @@ static int multipath_iterate_devices(struct dm_target *ti,
>   
>   static int pgpath_busy(struct pgpath *pgpath)
>   {
> -	struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
> -
> -	return blk_lld_busy(q);
> +	return 0;
>   }
>   
>   /*
Actually, I'm not quite sure this is correct; dm-mpath needs to return a 
busy status (via the '->busy' callback) to allow for back-pressure on 
the upper layers.
Just disabling the callback will disable this.
Shouldn't we check if the tagmap is busy here?

Cheers,

Hannes
Jens Axboe Oct. 29, 2018, 2:25 p.m. UTC | #4
On 10/29/18 1:10 AM, Hannes Reinecke wrote:
> On 10/25/18 11:10 PM, Jens Axboe wrote:
>> Nobody sets the helper, so we always return 0. Kill it.
>>
>> Signed-off-by: Jens Axboe <axboe@kernel.dk>
>> ---
>>   block/blk-core.c       | 28 ----------------------------
>>   block/blk-settings.c   |  6 ------
>>   drivers/md/dm-mpath.c  |  4 +---
>>   include/linux/blkdev.h |  4 ----
>>   4 files changed, 1 insertion(+), 41 deletions(-)
>>
>> diff --git a/block/blk-core.c b/block/blk-core.c
>> index 4c39c7865f9c..dd1328f4dc31 100644
>> --- a/block/blk-core.c
>> +++ b/block/blk-core.c
>> @@ -1795,34 +1795,6 @@ void rq_flush_dcache_pages(struct request *rq)
>>   EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
>>   #endif
>>   
>> -/**
>> - * blk_lld_busy - Check if underlying low-level drivers of a device are busy
>> - * @q : the queue of the device being checked
>> - *
>> - * Description:
>> - *    Check if underlying low-level drivers of a device are busy.
>> - *    If the drivers want to export their busy state, they must set own
>> - *    exporting function using blk_queue_lld_busy() first.
>> - *
>> - *    Basically, this function is used only by request stacking drivers
>> - *    to stop dispatching requests to underlying devices when underlying
>> - *    devices are busy.  This behavior helps more I/O merging on the queue
>> - *    of the request stacking driver and prevents I/O throughput regression
>> - *    on burst I/O load.
>> - *
>> - * Return:
>> - *    0 - Not busy (The request stacking driver should dispatch request)
>> - *    1 - Busy (The request stacking driver should stop dispatching request)
>> - */
>> -int blk_lld_busy(struct request_queue *q)
>> -{
>> -	if (q->lld_busy_fn)
>> -		return q->lld_busy_fn(q);
>> -
>> -	return 0;
>> -}
>> -EXPORT_SYMBOL_GPL(blk_lld_busy);
>> -
>>   /**
>>    * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
>>    * @rq: the clone request to be cleaned up
>> diff --git a/block/blk-settings.c b/block/blk-settings.c
>> index 3c5da75c2def..1895f499bbe5 100644
>> --- a/block/blk-settings.c
>> +++ b/block/blk-settings.c
>> @@ -32,12 +32,6 @@ void blk_queue_rq_timeout(struct request_queue *q, unsigned int timeout)
>>   }
>>   EXPORT_SYMBOL_GPL(blk_queue_rq_timeout);
>>   
>> -void blk_queue_lld_busy(struct request_queue *q, lld_busy_fn *fn)
>> -{
>> -	q->lld_busy_fn = fn;
>> -}
>> -EXPORT_SYMBOL_GPL(blk_queue_lld_busy);
>> -
>>   /**
>>    * blk_set_default_limits - reset limits to default values
>>    * @lim:  the queue_limits structure to reset
>> diff --git a/drivers/md/dm-mpath.c b/drivers/md/dm-mpath.c
>> index a24ed3973e7c..4d736e0fd67f 100644
>> --- a/drivers/md/dm-mpath.c
>> +++ b/drivers/md/dm-mpath.c
>> @@ -1936,9 +1936,7 @@ static int multipath_iterate_devices(struct dm_target *ti,
>>   
>>   static int pgpath_busy(struct pgpath *pgpath)
>>   {
>> -	struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
>> -
>> -	return blk_lld_busy(q);
>> +	return 0;
>>   }
>>   
>>   /*
> Actually, I'm not quite sure this is correct; dm-mpath needs to return a 
> busy status (via the '->busy' callback) to allow for back-pressure on 
> the upper layers.
> Just disabling the callback will disable this.
> Shouldn't we check if the tagmap is busy here?

Mike? We can pretty easily make it just check for busy tags.
Mike Snitzer Oct. 29, 2018, 3:51 p.m. UTC | #5
On Mon, Oct 29 2018 at 10:25am -0400,
Jens Axboe <axboe@kernel.dk> wrote:

> On 10/29/18 1:10 AM, Hannes Reinecke wrote:
> > On 10/25/18 11:10 PM, Jens Axboe wrote:
> >> Nobody sets the helper, so we always return 0. Kill it.
> >>
> >> Signed-off-by: Jens Axboe <axboe@kernel.dk>
> >> ---
> >>   block/blk-core.c       | 28 ----------------------------
> >>   block/blk-settings.c   |  6 ------
> >>   drivers/md/dm-mpath.c  |  4 +---
> >>   include/linux/blkdev.h |  4 ----
> >>   4 files changed, 1 insertion(+), 41 deletions(-)
> >>
> >> diff --git a/block/blk-core.c b/block/blk-core.c
> >> index 4c39c7865f9c..dd1328f4dc31 100644
> >> --- a/block/blk-core.c
> >> +++ b/block/blk-core.c
> >> @@ -1795,34 +1795,6 @@ void rq_flush_dcache_pages(struct request *rq)
> >>   EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
> >>   #endif
> >>   
> >> -/**
> >> - * blk_lld_busy - Check if underlying low-level drivers of a device are busy
> >> - * @q : the queue of the device being checked
> >> - *
> >> - * Description:
> >> - *    Check if underlying low-level drivers of a device are busy.
> >> - *    If the drivers want to export their busy state, they must set own
> >> - *    exporting function using blk_queue_lld_busy() first.
> >> - *
> >> - *    Basically, this function is used only by request stacking drivers
> >> - *    to stop dispatching requests to underlying devices when underlying
> >> - *    devices are busy.  This behavior helps more I/O merging on the queue
> >> - *    of the request stacking driver and prevents I/O throughput regression
> >> - *    on burst I/O load.
> >> - *
> >> - * Return:
> >> - *    0 - Not busy (The request stacking driver should dispatch request)
> >> - *    1 - Busy (The request stacking driver should stop dispatching request)
> >> - */
> >> -int blk_lld_busy(struct request_queue *q)
> >> -{
> >> -	if (q->lld_busy_fn)
> >> -		return q->lld_busy_fn(q);
> >> -
> >> -	return 0;
> >> -}
> >> -EXPORT_SYMBOL_GPL(blk_lld_busy);
> >> -
> >>   /**
> >>    * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
> >>    * @rq: the clone request to be cleaned up
> >> diff --git a/block/blk-settings.c b/block/blk-settings.c
> >> index 3c5da75c2def..1895f499bbe5 100644
> >> --- a/block/blk-settings.c
> >> +++ b/block/blk-settings.c
> >> @@ -32,12 +32,6 @@ void blk_queue_rq_timeout(struct request_queue *q, unsigned int timeout)
> >>   }
> >>   EXPORT_SYMBOL_GPL(blk_queue_rq_timeout);
> >>   
> >> -void blk_queue_lld_busy(struct request_queue *q, lld_busy_fn *fn)
> >> -{
> >> -	q->lld_busy_fn = fn;
> >> -}
> >> -EXPORT_SYMBOL_GPL(blk_queue_lld_busy);
> >> -
> >>   /**
> >>    * blk_set_default_limits - reset limits to default values
> >>    * @lim:  the queue_limits structure to reset
> >> diff --git a/drivers/md/dm-mpath.c b/drivers/md/dm-mpath.c
> >> index a24ed3973e7c..4d736e0fd67f 100644
> >> --- a/drivers/md/dm-mpath.c
> >> +++ b/drivers/md/dm-mpath.c
> >> @@ -1936,9 +1936,7 @@ static int multipath_iterate_devices(struct dm_target *ti,
> >>   
> >>   static int pgpath_busy(struct pgpath *pgpath)
> >>   {
> >> -	struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
> >> -
> >> -	return blk_lld_busy(q);
> >> +	return 0;
> >>   }
> >>   
> >>   /*
> > Actually, I'm not quite sure this is correct; dm-mpath needs to return a 
> > busy status (via the '->busy' callback) to allow for back-pressure on 
> > the upper layers.
> > Just disabling the callback will disable this.
> > Shouldn't we check if the tagmap is busy here?
> 
> Mike? We can pretty easily make it just check for busy tags.

OK, please feel free to do so.

Happy to pick the patch up or provide review so you can stage it in your
4.21 oriented tree.

Thanks,
Mike
Jens Axboe Oct. 29, 2018, 4:26 p.m. UTC | #6
On 10/29/18 9:51 AM, Mike Snitzer wrote:
> On Mon, Oct 29 2018 at 10:25am -0400,
> Jens Axboe <axboe@kernel.dk> wrote:
> 
>> On 10/29/18 1:10 AM, Hannes Reinecke wrote:
>>> On 10/25/18 11:10 PM, Jens Axboe wrote:
>>>> Nobody sets the helper, so we always return 0. Kill it.
>>>>
>>>> Signed-off-by: Jens Axboe <axboe@kernel.dk>
>>>> ---
>>>>   block/blk-core.c       | 28 ----------------------------
>>>>   block/blk-settings.c   |  6 ------
>>>>   drivers/md/dm-mpath.c  |  4 +---
>>>>   include/linux/blkdev.h |  4 ----
>>>>   4 files changed, 1 insertion(+), 41 deletions(-)
>>>>
>>>> diff --git a/block/blk-core.c b/block/blk-core.c
>>>> index 4c39c7865f9c..dd1328f4dc31 100644
>>>> --- a/block/blk-core.c
>>>> +++ b/block/blk-core.c
>>>> @@ -1795,34 +1795,6 @@ void rq_flush_dcache_pages(struct request *rq)
>>>>   EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
>>>>   #endif
>>>>   
>>>> -/**
>>>> - * blk_lld_busy - Check if underlying low-level drivers of a device are busy
>>>> - * @q : the queue of the device being checked
>>>> - *
>>>> - * Description:
>>>> - *    Check if underlying low-level drivers of a device are busy.
>>>> - *    If the drivers want to export their busy state, they must set own
>>>> - *    exporting function using blk_queue_lld_busy() first.
>>>> - *
>>>> - *    Basically, this function is used only by request stacking drivers
>>>> - *    to stop dispatching requests to underlying devices when underlying
>>>> - *    devices are busy.  This behavior helps more I/O merging on the queue
>>>> - *    of the request stacking driver and prevents I/O throughput regression
>>>> - *    on burst I/O load.
>>>> - *
>>>> - * Return:
>>>> - *    0 - Not busy (The request stacking driver should dispatch request)
>>>> - *    1 - Busy (The request stacking driver should stop dispatching request)
>>>> - */
>>>> -int blk_lld_busy(struct request_queue *q)
>>>> -{
>>>> -	if (q->lld_busy_fn)
>>>> -		return q->lld_busy_fn(q);
>>>> -
>>>> -	return 0;
>>>> -}
>>>> -EXPORT_SYMBOL_GPL(blk_lld_busy);
>>>> -
>>>>   /**
>>>>    * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
>>>>    * @rq: the clone request to be cleaned up
>>>> diff --git a/block/blk-settings.c b/block/blk-settings.c
>>>> index 3c5da75c2def..1895f499bbe5 100644
>>>> --- a/block/blk-settings.c
>>>> +++ b/block/blk-settings.c
>>>> @@ -32,12 +32,6 @@ void blk_queue_rq_timeout(struct request_queue *q, unsigned int timeout)
>>>>   }
>>>>   EXPORT_SYMBOL_GPL(blk_queue_rq_timeout);
>>>>   
>>>> -void blk_queue_lld_busy(struct request_queue *q, lld_busy_fn *fn)
>>>> -{
>>>> -	q->lld_busy_fn = fn;
>>>> -}
>>>> -EXPORT_SYMBOL_GPL(blk_queue_lld_busy);
>>>> -
>>>>   /**
>>>>    * blk_set_default_limits - reset limits to default values
>>>>    * @lim:  the queue_limits structure to reset
>>>> diff --git a/drivers/md/dm-mpath.c b/drivers/md/dm-mpath.c
>>>> index a24ed3973e7c..4d736e0fd67f 100644
>>>> --- a/drivers/md/dm-mpath.c
>>>> +++ b/drivers/md/dm-mpath.c
>>>> @@ -1936,9 +1936,7 @@ static int multipath_iterate_devices(struct dm_target *ti,
>>>>   
>>>>   static int pgpath_busy(struct pgpath *pgpath)
>>>>   {
>>>> -	struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
>>>> -
>>>> -	return blk_lld_busy(q);
>>>> +	return 0;
>>>>   }
>>>>   
>>>>   /*
>>> Actually, I'm not quite sure this is correct; dm-mpath needs to return a 
>>> busy status (via the '->busy' callback) to allow for back-pressure on 
>>> the upper layers.
>>> Just disabling the callback will disable this.
>>> Shouldn't we check if the tagmap is busy here?
>>
>> Mike? We can pretty easily make it just check for busy tags.
> 
> OK, please feel free to do so.
> 
> Happy to pick the patch up or provide review so you can stage it in your
> 4.21 oriented tree.

I reshuffled a bit and made SCSI provide an mq variant of the target
busy. So blk_lld_busy() remains, just with an mq handler instead.
This means that dm-mpath won't need any changing, I think we're good.
diff mbox series

Patch

diff --git a/block/blk-core.c b/block/blk-core.c
index 4c39c7865f9c..dd1328f4dc31 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -1795,34 +1795,6 @@  void rq_flush_dcache_pages(struct request *rq)
 EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
 #endif
 
-/**
- * blk_lld_busy - Check if underlying low-level drivers of a device are busy
- * @q : the queue of the device being checked
- *
- * Description:
- *    Check if underlying low-level drivers of a device are busy.
- *    If the drivers want to export their busy state, they must set own
- *    exporting function using blk_queue_lld_busy() first.
- *
- *    Basically, this function is used only by request stacking drivers
- *    to stop dispatching requests to underlying devices when underlying
- *    devices are busy.  This behavior helps more I/O merging on the queue
- *    of the request stacking driver and prevents I/O throughput regression
- *    on burst I/O load.
- *
- * Return:
- *    0 - Not busy (The request stacking driver should dispatch request)
- *    1 - Busy (The request stacking driver should stop dispatching request)
- */
-int blk_lld_busy(struct request_queue *q)
-{
-	if (q->lld_busy_fn)
-		return q->lld_busy_fn(q);
-
-	return 0;
-}
-EXPORT_SYMBOL_GPL(blk_lld_busy);
-
 /**
  * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
  * @rq: the clone request to be cleaned up
diff --git a/block/blk-settings.c b/block/blk-settings.c
index 3c5da75c2def..1895f499bbe5 100644
--- a/block/blk-settings.c
+++ b/block/blk-settings.c
@@ -32,12 +32,6 @@  void blk_queue_rq_timeout(struct request_queue *q, unsigned int timeout)
 }
 EXPORT_SYMBOL_GPL(blk_queue_rq_timeout);
 
-void blk_queue_lld_busy(struct request_queue *q, lld_busy_fn *fn)
-{
-	q->lld_busy_fn = fn;
-}
-EXPORT_SYMBOL_GPL(blk_queue_lld_busy);
-
 /**
  * blk_set_default_limits - reset limits to default values
  * @lim:  the queue_limits structure to reset
diff --git a/drivers/md/dm-mpath.c b/drivers/md/dm-mpath.c
index a24ed3973e7c..4d736e0fd67f 100644
--- a/drivers/md/dm-mpath.c
+++ b/drivers/md/dm-mpath.c
@@ -1936,9 +1936,7 @@  static int multipath_iterate_devices(struct dm_target *ti,
 
 static int pgpath_busy(struct pgpath *pgpath)
 {
-	struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
-
-	return blk_lld_busy(q);
+	return 0;
 }
 
 /*
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
index bfe40de81c19..115199e7c581 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -312,7 +312,6 @@  typedef bool (poll_q_fn) (struct request_queue *q, blk_qc_t);
 struct bio_vec;
 typedef void (softirq_done_fn)(struct request *);
 typedef int (dma_drain_needed_fn)(struct request *);
-typedef int (lld_busy_fn) (struct request_queue *q);
 typedef int (bsg_job_fn) (struct bsg_job *);
 typedef int (init_rq_fn)(struct request_queue *, struct request *, gfp_t);
 typedef void (exit_rq_fn)(struct request_queue *, struct request *);
@@ -443,7 +442,6 @@  struct request_queue {
 	poll_q_fn		*poll_fn;
 	softirq_done_fn		*softirq_done_fn;
 	dma_drain_needed_fn	*dma_drain_needed;
-	lld_busy_fn		*lld_busy_fn;
 	/* Called just after a request is allocated */
 	init_rq_fn		*init_rq_fn;
 	/* Called just before a request is freed */
@@ -909,7 +907,6 @@  extern void blk_init_request_from_bio(struct request *req, struct bio *bio);
 extern void blk_put_request(struct request *);
 extern struct request *blk_get_request(struct request_queue *, unsigned int op,
 				       blk_mq_req_flags_t flags);
-extern int blk_lld_busy(struct request_queue *q);
 extern int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
 			     struct bio_set *bs, gfp_t gfp_mask,
 			     int (*bio_ctr)(struct bio *, struct bio *, void *),
@@ -1152,7 +1149,6 @@  extern void blk_queue_update_dma_pad(struct request_queue *, unsigned int);
 extern int blk_queue_dma_drain(struct request_queue *q,
 			       dma_drain_needed_fn *dma_drain_needed,
 			       void *buf, unsigned int size);
-extern void blk_queue_lld_busy(struct request_queue *q, lld_busy_fn *fn);
 extern void blk_queue_segment_boundary(struct request_queue *, unsigned long);
 extern void blk_queue_virt_boundary(struct request_queue *, unsigned long);
 extern void blk_queue_dma_alignment(struct request_queue *, int);