mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Paolo Valente <paolo.valente@linaro.org>
To: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Cc: Jens Axboe <axboe@kernel.dk>,
	linux-block <linux-block@vger.kernel.org>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	Arie van der Hoeven <arie.vanderhoeven@seagate.com>,
	Rory Chen <rory.c.chen@seagate.com>,
	Glen Valante <glen.valante@linaro.org>,
	Gabriele Felici <felicigb@gmail.com>,
	Carmine Zaccagnino <carmine@carminezacc.com>
Subject: Re: [PATCH V11 1/8] block, bfq: split sync bfq_queues on a per-actuator basis
Date: Wed, 21 Dec 2022 11:27:28 +0100	[thread overview]
Message-ID: <D429FA01-9510-41FF-AD85-F74EB8AD171F@linaro.org> (raw)
In-Reply-To: <8a49432d-642f-cd58-8e4d-2b320aef5edd@opensource.wdc.com>



> Il giorno 21 dic 2022, alle ore 01:46, Damien Le Moal <damien.lemoal@opensource.wdc.com> ha scritto:
> 
> 
> [...]
> 
>> -static void bfq_exit_icq_bfqq(struct bfq_io_cq *bic, bool is_sync)
>> +static void bfq_exit_icq_bfqq(struct bfq_io_cq *bic, bool is_sync,
>> +			      unsigned int actuator_idx)
>> {
>> -	struct bfq_queue *bfqq = bic_to_bfqq(bic, is_sync);
>> +	struct bfq_queue *bfqq = bic_to_bfqq(bic, is_sync, actuator_idx);
>> 	struct bfq_data *bfqd;
>> 
>> 	if (bfqq)
> 
> With your current bic_to_bfqq() implementation, you will *never* get NULL as a
> return value.

I'm afraid this is not true.  A bic is associated with a sync and an
async queue, or with both.  So, in the hunk above, bic_to_bfqq returns
NULL if:
- either the bic is associated with a sync queue, but is_sync happens to be false;
- or the bic is associate with an async queue, but is_sync happens to be true.

Of course, with these patches, the associations move from "with a
sync/async queue" to "with a set of sync/async queues, one per
actuator".

> So why is this if necessary ?
>> 		bfqd = bfqq->bfqd; /* NULL if scheduler already exited */
>> 
>> 	if (bfqq && bfqd) {
>> -		unsigned long flags;
>> -
>> -		spin_lock_irqsave(&bfqd->lock, flags);
>> 		bfqq->bic = NULL;
>> 		bfq_exit_bfqq(bfqd, bfqq);
>> -		bic_set_bfqq(bic, NULL, is_sync);
>> -		spin_unlock_irqrestore(&bfqd->lock, flags);
>> +		bic_set_bfqq(bic, NULL, is_sync, actuator_idx);
>> 	}
>> }
>> 
>> static void bfq_exit_icq(struct io_cq *icq)
>> {
>> 	struct bfq_io_cq *bic = icq_to_bic(icq);
>> +	struct bfq_data *bfqd = bic_to_bfqd(bic);
>> +	unsigned long flags;
>> +	unsigned int act_idx;
>> +	/*
>> +	 * If bfqd and thus bfqd->num_actuators is not available any
>> +	 * longer, then cycle over all possible per-actuator bfqqs in
>> +	 * next loop. We rely on bic being zeroed on creation, and
>> +	 * therefore on its unused per-actuator fields being NULL.
>> +	 */
>> +	unsigned int num_actuators = BFQ_MAX_ACTUATORS;
>> 
>> -	if (bic->stable_merge_bfqq) {
>> -		struct bfq_data *bfqd = bic->stable_merge_bfqq->bfqd;
>> +	/*
>> +	 * bfqd is NULL if scheduler already exited, and in that case
>> +	 * this is the last time these queues are accessed.
>> +	 */
>> +	if (bfqd) {
> 
> Same here. bfqd can never be NULL. Or I am really missing something... Lots of
> other places like this where checking bic_to_bfqd() seems unnecessary.

As written in the comment above, bfqd is NULL if the scheduler already
exited.  That is, bic->icq.q->elevator->elevator_data == NULL.  This
is an event I have checked several years ago, probably while porting
cfq to bfq.  If boundary conditions changed later, and nobody realized
that this was not true any longer, then bfqd would never be NULL as
you say.  At any rate, I guess that such a change would then belong to
a separate patch series.

Thanks,
Paolo

  reply	other threads:[~2022-12-21 10:31 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-20  9:50 [PATCH V11 0/8] block, bfq: extend bfq to support multi-actuator drives Paolo Valente
2022-12-20  9:50 ` [PATCH V11 1/8] block, bfq: split sync bfq_queues on a per-actuator basis Paolo Valente
2022-12-21  0:46   ` Damien Le Moal
2022-12-21 10:27     ` Paolo Valente [this message]
2022-12-21 12:27       ` Damien Le Moal
2022-12-22 14:37         ` Paolo Valente
2022-12-20  9:50 ` [PATCH V11 2/8] block, bfq: forbid stable merging of queues associated with different actuators Paolo Valente
2022-12-20  9:50 ` [PATCH V11 3/8] block, bfq: move io_cq-persistent bfqq data into a dedicated struct Paolo Valente
2022-12-20  9:50 ` [PATCH V11 4/8] block, bfq: turn bfqq_data into an array in bfq_io_cq Paolo Valente
2022-12-20  9:50 ` [PATCH V11 5/8] block, bfq: split also async bfq_queues on a per-actuator basis Paolo Valente
2022-12-20  9:50 ` [PATCH V11 6/8] block, bfq: retrieve independent access ranges from request queue Paolo Valente
2022-12-20  9:50 ` [PATCH V11 7/8] block, bfq: inject I/O to underutilized actuators Paolo Valente
2022-12-20  9:50 ` [PATCH V11 8/8] block, bfq: balance I/O injection among " Paolo Valente

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=D429FA01-9510-41FF-AD85-F74EB8AD171F@linaro.org \
    --to=paolo.valente@linaro.org \
    --cc=arie.vanderhoeven@seagate.com \
    --cc=axboe@kernel.dk \
    --cc=carmine@carminezacc.com \
    --cc=damien.lemoal@opensource.wdc.com \
    --cc=felicigb@gmail.com \
    --cc=glen.valante@linaro.org \
    --cc=linux-block@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rory.c.chen@seagate.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®