From: Kent Overstreet Date: Tue, 24 Sep 2013 06:17:32 +0000 (-0700) Subject: bcache: Fix a flush/fua performance bug X-Git-Tag: v3.12-rc3~34^2~4 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=1394d6761b6e9e15ee7c632a6d48791188727b40;p=~emulex%2Finfiniband.git bcache: Fix a flush/fua performance bug bch_journal_meta() was missing the flush to make the journal write actually go down (instead of waiting up to journal_delay_ms)... Whoops 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 f5203dfc4cf..8435f81e5d8 100644 --- a/drivers/md/bcache/journal.c +++ b/drivers/md/bcache/journal.c @@ -695,6 +695,7 @@ void bch_journal_meta(struct cache_set *c, struct closure *cl) if (cl) BUG_ON(!closure_wait(&w->wait, cl)); + closure_flush(&c->journal.io); __journal_try_write(c, true); } }