On 14/09/2020 04:08, Ming Lei wrote: > void blk_mq_unquiesce_queue(struct request_queue *q) > { > - blk_queue_flag_clear(QUEUE_FLAG_QUIESCED, q); > + blk_queue_flag_test_and_clear(QUEUE_FLAG_QUIESCED, q); I don't really understand that change, why do we need the _test_and_clear version if we don't care about the result?