summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2007-08-23 02:13:17 +0200
committerAdrian Bunk <bunk@stusta.de>2007-08-23 02:13:17 +0200
commit646edb4b5b9c472944af7d6016722fa4895f3bca (patch)
treee49c1e9a944febe6b445651233adc70b20731168 /include
parent4d5eb09cab94fac8cfb767617a4799220f1874ab (diff)
md: avoid possible BUG_ON in md bitmap handling
md/bitmap tracks how many active write requests are pending on blocks associated with each bit in the bitmap, so that it knows when it can clear the bit (when count hits zero). The counter has 14 bits of space, so if there are ever more than 16383, we cannot cope. Currently the code just calles BUG_ON as "all" drivers have request queue limits much smaller than this. However is seems that some don't. Apparently some multipath configurations can allow more than 16383 concurrent write requests. So, in this unlikely situation, instead of calling BUG_ON we now wait for the count to drop down a bit. This requires a new wait_queue_head, some waiting code, and a wakeup call. Tested by limiting the counter to 20 instead of 16383 (writes go a lot slower in that case...). Signed-off-by: Neil Brown <neilb@suse.de> Signed-off-by: Adrian Bunk <bunk@kernel.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/raid/bitmap.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/raid/bitmap.h b/include/linux/raid/bitmap.h
index 48e2d93d23fb..a9b7629b0e23 100644
--- a/include/linux/raid/bitmap.h
+++ b/include/linux/raid/bitmap.h
@@ -253,6 +253,8 @@ struct bitmap {
wait_queue_head_t write_wait;
struct list_head complete_pages;
mempool_t *write_pool;
+
+ wait_queue_head_t overflow_wait;
};
/* the bitmap API */