dm cache policy mq: protect residency method with existing mutex
authorJoe Thornber <ejt@redhat.com>
Mon, 21 Oct 2013 10:44:57 +0000 (11:44 +0100)
committerMike Snitzer <snitzer@redhat.com>
Sat, 9 Nov 2013 22:54:34 +0000 (17:54 -0500)
It is safe to use a mutex in mq_residency() at this point since it is
only called from ioctl context.  But future-proof mq_residency() by
using might_sleep() to catch new contexts that cannot sleep.

Signed-off-by: Joe Thornber <ejt@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
drivers/md/dm-cache-policy-mq.c

index 4296155..db490f7 100644 (file)
@@ -1001,10 +1001,14 @@ static void mq_force_mapping(struct dm_cache_policy *p,
 
 static dm_cblock_t mq_residency(struct dm_cache_policy *p)
 {
+       dm_cblock_t r;
        struct mq_policy *mq = to_mq_policy(p);
 
-       /* FIXME: lock mutex, not sure we can block here */
-       return to_cblock(mq->nr_cblocks_allocated);
+       mutex_lock(&mq->lock);
+       r = to_cblock(mq->nr_cblocks_allocated);
+       mutex_unlock(&mq->lock);
+
+       return r;
 }
 
 static void mq_tick(struct dm_cache_policy *p)