mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-24 15:12:47 +00:00
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
@ -344,7 +344,7 @@ int write_and_map_eb(struct btrfs_trans_handle *trans,
|
|||||||
return 0;
|
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 btrfs_root *root,
|
||||||
struct extent_buffer *eb)
|
struct extent_buffer *eb)
|
||||||
{
|
{
|
||||||
|
6
qgroup.c
6
qgroup.c
@ -76,7 +76,7 @@ struct btrfs_qgroup_list {
|
|||||||
/*
|
/*
|
||||||
* qgroupid,rfer,excl default to set
|
* qgroupid,rfer,excl default to set
|
||||||
*/
|
*/
|
||||||
struct {
|
static struct {
|
||||||
char *name;
|
char *name;
|
||||||
char *column_name;
|
char *column_name;
|
||||||
int need_print;
|
int need_print;
|
||||||
@ -652,7 +652,7 @@ static int add_qgroup(struct qgroup_lookup *qgroup_lookup, u64 qgroupid,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void __free_btrfs_qgroup(struct btrfs_qgroup *bq)
|
static void __free_btrfs_qgroup(struct btrfs_qgroup *bq)
|
||||||
{
|
{
|
||||||
struct btrfs_qgroup_list *list;
|
struct btrfs_qgroup_list *list;
|
||||||
while (!list_empty(&bq->qgroups)) {
|
while (!list_empty(&bq->qgroups)) {
|
||||||
@ -674,7 +674,7 @@ void __free_btrfs_qgroup(struct btrfs_qgroup *bq)
|
|||||||
free(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 btrfs_qgroup *entry;
|
||||||
struct rb_node *n;
|
struct rb_node *n;
|
||||||
|
Loading…
Reference in New Issue
Block a user