Commit 7a57157a authored by Colin Ian King's avatar Colin Ian King Committed by Shaohua Li

md-cluster: make function cluster_check_sync_size static

The function cluster_check_sync_size is local to the source and does
not need to be in global scope, so make it static.

Cleans up sparse warning:
symbol 'cluster_check_sync_size' was not declared. Should it be static?
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarShaohua Li <shli@fb.com>
parent 07719ff7
...@@ -1094,7 +1094,7 @@ static void metadata_update_cancel(struct mddev *mddev) ...@@ -1094,7 +1094,7 @@ static void metadata_update_cancel(struct mddev *mddev)
/* /*
* return 0 if all the bitmaps have the same sync_size * return 0 if all the bitmaps have the same sync_size
*/ */
int cluster_check_sync_size(struct mddev *mddev) static int cluster_check_sync_size(struct mddev *mddev)
{ {
int i, rv; int i, rv;
bitmap_super_t *sb; bitmap_super_t *sb;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment