From: Jens Axboe Date: Wed, 1 May 2019 12:34:09 +0000 (-0600) Subject: bcache: make is_discard_enabled() static X-Git-Tag: for-5.2/block-20190507~10 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=2d5abb9a1e8e92b25e781f0c3537a5b3b4b2f033;p=linux-2.6-block.git bcache: make is_discard_enabled() static It's not used outside this file. Fixes: 631207314d88 ("bcache: fix failure in journal relplay") Signed-off-by: Jens Axboe --- diff --git a/drivers/md/bcache/journal.c b/drivers/md/bcache/journal.c index f9afb164b887..12dae9348147 100644 --- a/drivers/md/bcache/journal.c +++ b/drivers/md/bcache/journal.c @@ -318,7 +318,7 @@ void bch_journal_mark(struct cache_set *c, struct list_head *list) } } -bool is_discard_enabled(struct cache_set *s) +static bool is_discard_enabled(struct cache_set *s) { struct cache *ca; unsigned int i;