On 7/17/23 23:38, Damien Le Moal wrote:
On 7/11/23 03:01, Bart Van Assche wrote:
diff --git a/block/blk-zoned.c b/block/blk-zoned.c
index 0f9f97cdddd9..59560d1657e3 100644
--- a/block/blk-zoned.c
+++ b/block/blk-zoned.c
@@ -504,7 +504,8 @@ static int blk_revalidate_zone_cb(struct blk_zone *zone, unsigned int idx,
break;
case BLK_ZONE_TYPE_SEQWRITE_REQ:
case BLK_ZONE_TYPE_SEQWRITE_PREF:
- if (!args->seq_zones_wlock) {
+ if (!blk_queue_pipeline_zoned_writes(q) &&
+ !args->seq_zones_wlock) {
I think that this change should go into the first patch, no ?
That's a good point. I will move this change into the first patch.
Thanks,
Bart.