]> git.baikalelectronics.ru Git - kernel.git/commit
bcache: return 0 from bch_debug_init() if CONFIG_DEBUG_FS=n
authorColy Li <colyli@suse.de>
Thu, 17 May 2018 15:33:26 +0000 (23:33 +0800)
committerJens Axboe <axboe@kernel.dk>
Thu, 17 May 2018 15:43:40 +0000 (09:43 -0600)
commitcfb0dc767ca7961b1583c0c2f776aa1ee14c9b89
tree4a2b82959256114041c471c0b2dc453740d5aca9
parent6c850a9e8f4b63604544744cf6f896b40bc94b93
bcache: return 0 from bch_debug_init() if CONFIG_DEBUG_FS=n

Commit d3509159b229 ("bcache: fix wrong return value in bch_debug_init()")
returns the return value of debugfs_create_dir() to bcache_init(). When
CONFIG_DEBUG_FS=n, bch_debug_init() always returns 1 and makes
bcache_init() failedi.

This patch makes bch_debug_init() always returns 0 if CONFIG_DEBUG_FS=n,
so bcache can continue to work for the kernels which don't have debugfs
enanbled.

Changelog:
v4: Add Acked-by from Kent Overstreet.
v3: Use IS_ENABLED(CONFIG_DEBUG_FS) to replace #ifdef DEBUG_FS.
v2: Remove a warning information
v1: Initial version.

Fixes: Commit d3509159b229 ("bcache: fix wrong return value in bch_debug_init()")
Cc: stable@vger.kernel.org
Signed-off-by: Coly Li <colyli@suse.de>
Reported-by: Massimo B. <massimo.b@gmx.net>
Reported-by: Kai Krakow <kai@kaishome.de>
Tested-by: Kai Krakow <kai@kaishome.de>
Acked-by: Kent Overstreet <kent.overstreet@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/md/bcache/debug.c