Browse Source

btrfs: make function update_share_count static

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

Cleans up sparse warning:
fs/btrfs/backref.c:219:6: warning: symbol 'update_share_count' was not
declared. Should it be static?

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Colin Ian King 7 years ago
parent
commit
ccc8dc758d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      fs/btrfs/backref.c

+ 2 - 1
fs/btrfs/backref.c

@@ -216,7 +216,8 @@ static int prelim_ref_compare(struct prelim_ref *ref1,
 	return 0;
 	return 0;
 }
 }
 
 
-void update_share_count(struct share_check *sc, int oldcount, int newcount)
+static void update_share_count(struct share_check *sc, int oldcount,
+			       int newcount)
 {
 {
 	if ((!sc) || (oldcount == 0 && newcount < 1))
 	if ((!sc) || (oldcount == 0 && newcount < 1))
 		return;
 		return;