From: Kent Overstreet Date: Tue, 24 Sep 2013 06:17:27 +0000 (-0700) Subject: bcache: Fix a dumb journal discard bug X-Git-Tag: v3.12-rc3~34^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6d9d21e35fbfa2934339e96934f862d118abac23;p=thirdparty%2Fkernel%2Flinux.git bcache: Fix a dumb journal discard bug That switch statement was obviously wrong, leading to some sort of weird spinning on rare occasion with discards enabled... Signed-off-by: Kent Overstreet Cc: linux-stable # >= v3.10 Signed-off-by: Linus Torvalds --- diff --git a/drivers/md/bcache/journal.c b/drivers/md/bcache/journal.c index ba95ab84b2be5..c0017ca32b766 100644 --- a/drivers/md/bcache/journal.c +++ b/drivers/md/bcache/journal.c @@ -428,7 +428,7 @@ static void do_journal_discard(struct cache *ca) return; } - switch (atomic_read(&ja->discard_in_flight) == DISCARD_IN_FLIGHT) { + switch (atomic_read(&ja->discard_in_flight)) { case DISCARD_IN_FLIGHT: return;