btrfs-progs: make it static if function isn't called outside
Signed-off-by: Anand Jain <anand.jain@oracle.com> Signed-off-by: David Sterba <dsterba@suse.cz> Signed-off-by: Chris Mason <clm@fb.com>
This commit is contained in:
parent
90cad5f9e6
commit
72f1835ae4
3 changed files with 5 additions and 5 deletions
|
@ -344,7 +344,7 @@ int write_and_map_eb(struct btrfs_trans_handle *trans,
|
|||
return 0;
|
||||
}
|
||||
|
||||
int write_tree_block(struct btrfs_trans_handle *trans,
|
||||
static int write_tree_block(struct btrfs_trans_handle *trans,
|
||||
struct btrfs_root *root,
|
||||
struct extent_buffer *eb)
|
||||
{
|
||||
|
|
6
qgroup.c
6
qgroup.c
|
@ -76,7 +76,7 @@ struct btrfs_qgroup_list {
|
|||
/*
|
||||
* qgroupid,rfer,excl default to set
|
||||
*/
|
||||
struct {
|
||||
static struct {
|
||||
char *name;
|
||||
char *column_name;
|
||||
int need_print;
|
||||
|
@ -652,7 +652,7 @@ static int add_qgroup(struct qgroup_lookup *qgroup_lookup, u64 qgroupid,
|
|||
return ret;
|
||||
}
|
||||
|
||||
void __free_btrfs_qgroup(struct btrfs_qgroup *bq)
|
||||
static void __free_btrfs_qgroup(struct btrfs_qgroup *bq)
|
||||
{
|
||||
struct btrfs_qgroup_list *list;
|
||||
while (!list_empty(&bq->qgroups)) {
|
||||
|
@ -674,7 +674,7 @@ void __free_btrfs_qgroup(struct btrfs_qgroup *bq)
|
|||
free(bq);
|
||||
}
|
||||
|
||||
void __free_all_qgroups(struct qgroup_lookup *root_tree)
|
||||
static void __free_all_qgroups(struct qgroup_lookup *root_tree)
|
||||
{
|
||||
struct btrfs_qgroup *entry;
|
||||
struct rb_node *n;
|
||||
|
|
2
utils.c
2
utils.c
|
@ -1954,7 +1954,7 @@ int test_dev_for_mkfs(char *file, int force_overwrite, char *estr)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int test_skip_this_disk(char *path)
|
||||
static int test_skip_this_disk(char *path)
|
||||
{
|
||||
int fd;
|
||||
|
||||
|
|
Loading…
Reference in a new issue