From 24b73dff7bd682b78cae945db88254b47b9939a0 Mon Sep 17 00:00:00 2001 From: Byongho Lee Date: Mon, 4 Jan 2016 10:01:31 +0900 Subject: btrfs-progs: make private symbols to static Signed-off-by: Byongho Lee Signed-off-by: David Sterba --- qgroup-verify.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'qgroup-verify.c') diff --git a/qgroup-verify.c b/qgroup-verify.c index f7a94bfb..0ee52ff5 100644 --- a/qgroup-verify.c +++ b/qgroup-verify.c @@ -49,12 +49,12 @@ struct qgroup_count { struct rb_node rb_node; }; -struct counts_tree { +static struct counts_tree { struct rb_root root; unsigned int num_groups; } counts = { .root = RB_ROOT }; -struct rb_root by_bytenr = RB_ROOT; +static struct rb_root by_bytenr = RB_ROOT; /* * List of interior tree blocks. We walk this list after loading the @@ -68,8 +68,8 @@ struct rb_root by_bytenr = RB_ROOT; * exist further down the tree, the fact that our interior node has a * ref means we need to account anything below it to all its roots. */ -struct ulist *tree_blocks = NULL; /* unode->val = bytenr, ->aux - * = tree_block pointer */ +static struct ulist *tree_blocks = NULL; /* unode->val = bytenr, ->aux + * = tree_block pointer */ struct tree_block { int level; u64 num_bytes; -- cgit v1.2.3