Re: [PATCH v3] loop: Limit the number of requests in the bio list

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> @@ -489,6 +491,12 @@ static void loop_make_request(struct request_queue *q, struct bio *old_bio)
>  		goto out;
>  	if (unlikely(rw == WRITE && (lo->lo_flags & LO_FLAGS_READ_ONLY)))
>  		goto out;
> +	if (lo->lo_bio_count >= q->nr_congestion_on) {
> +		spin_unlock_irq(&lo->lo_lock);
> +		wait_event(lo->lo_req_wait, lo->lo_bio_count <
> +			   q->nr_congestion_off);
> +		spin_lock_irq(&lo->lo_lock);
> +	}

This makes me nervous. You are reading lo_bio_count outside the lock. If
you race with the prepare_to_wait() and condition check in
__wait_event(), then you will sleep forever.

md has private helpers for this, seems it would be a good idea to move
these into the regular wait includes and use them here too.

-- 
Jens Axboe

--
To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Ext4 Filesystem]     [Union Filesystem]     [Filesystem Testing]     [Ceph Users]     [Ecryptfs]     [AutoFS]     [Kernel Newbies]     [Share Photos]     [Security]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux Cachefs]     [Reiser Filesystem]     [Linux RAID]     [Samba]     [Device Mapper]     [CEPH Development]
  Powered by Linux