From: kbuild test robot Date: Fri, 27 Feb 2015 23:04:37 +0000 (+0800) Subject: md: recover_bitmaps() can be static X-Git-Tag: v4.13~5304^2~21^2~8 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=6dc69c9c460b0cf05b5b3f323a8b944a2e52e76d;p=mirror_ubuntu-bionic-kernel.git md: recover_bitmaps() can be static drivers/md/md-cluster.c:190:6: sparse: symbol 'recover_bitmaps' was not declared. Should it be static? Signed-off-by: Fengguang Wu Signed-off-by: NeilBrown --- diff --git a/drivers/md/md-cluster.c b/drivers/md/md-cluster.c index 96679b22cfc0..5062bd1929be 100644 --- a/drivers/md/md-cluster.c +++ b/drivers/md/md-cluster.c @@ -217,7 +217,7 @@ out: return s; } -void recover_bitmaps(struct md_thread *thread) +static void recover_bitmaps(struct md_thread *thread) { struct mddev *mddev = thread->mddev; struct md_cluster_info *cinfo = mddev->cluster_info;