mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-17 02:06:51 +00:00
btrfs-progs: unexport local qgroup helpers
After merging the files, many functions can be made static, leaving only a few helpers that are used by subvolume. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
ae56c6a071
commit
353b55a5cf
@ -146,7 +146,7 @@ static struct {
|
|||||||
static btrfs_qgroup_filter_func all_filter_funcs[];
|
static btrfs_qgroup_filter_func all_filter_funcs[];
|
||||||
static btrfs_qgroup_comp_func all_comp_funcs[];
|
static btrfs_qgroup_comp_func all_comp_funcs[];
|
||||||
|
|
||||||
void btrfs_qgroup_setup_print_column(enum btrfs_qgroup_column_enum column)
|
static void btrfs_qgroup_setup_print_column(enum btrfs_qgroup_column_enum column)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@ -160,7 +160,7 @@ void btrfs_qgroup_setup_print_column(enum btrfs_qgroup_column_enum column)
|
|||||||
btrfs_qgroup_columns[i].need_print = 1;
|
btrfs_qgroup_columns[i].need_print = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void btrfs_qgroup_setup_units(unsigned unit_mode)
|
static void btrfs_qgroup_setup_units(unsigned unit_mode)
|
||||||
{
|
{
|
||||||
btrfs_qgroup_columns[BTRFS_QGROUP_RFER].unit_mode = unit_mode;
|
btrfs_qgroup_columns[BTRFS_QGROUP_RFER].unit_mode = unit_mode;
|
||||||
btrfs_qgroup_columns[BTRFS_QGROUP_EXCL].unit_mode = unit_mode;
|
btrfs_qgroup_columns[BTRFS_QGROUP_EXCL].unit_mode = unit_mode;
|
||||||
@ -439,7 +439,7 @@ static int btrfs_qgroup_get_sort_item(char *sort_name)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct btrfs_qgroup_comparer_set *btrfs_qgroup_alloc_comparer_set(void)
|
static struct btrfs_qgroup_comparer_set *btrfs_qgroup_alloc_comparer_set(void)
|
||||||
{
|
{
|
||||||
struct btrfs_qgroup_comparer_set *set;
|
struct btrfs_qgroup_comparer_set *set;
|
||||||
int size;
|
int size;
|
||||||
@ -457,7 +457,7 @@ struct btrfs_qgroup_comparer_set *btrfs_qgroup_alloc_comparer_set(void)
|
|||||||
return set;
|
return set;
|
||||||
}
|
}
|
||||||
|
|
||||||
int btrfs_qgroup_setup_comparer(struct btrfs_qgroup_comparer_set **comp_set,
|
static int btrfs_qgroup_setup_comparer(struct btrfs_qgroup_comparer_set **comp_set,
|
||||||
enum btrfs_qgroup_comp_enum comparer,
|
enum btrfs_qgroup_comp_enum comparer,
|
||||||
int is_descending)
|
int is_descending)
|
||||||
{
|
{
|
||||||
@ -819,7 +819,7 @@ static btrfs_qgroup_filter_func all_filter_funcs[] = {
|
|||||||
[BTRFS_QGROUP_FILTER_ALL_PARENT] = filter_by_all_parent,
|
[BTRFS_QGROUP_FILTER_ALL_PARENT] = filter_by_all_parent,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct btrfs_qgroup_filter_set *btrfs_qgroup_alloc_filter_set(void)
|
static struct btrfs_qgroup_filter_set *btrfs_qgroup_alloc_filter_set(void)
|
||||||
{
|
{
|
||||||
struct btrfs_qgroup_filter_set *set;
|
struct btrfs_qgroup_filter_set *set;
|
||||||
int size;
|
int size;
|
||||||
@ -837,7 +837,7 @@ struct btrfs_qgroup_filter_set *btrfs_qgroup_alloc_filter_set(void)
|
|||||||
return set;
|
return set;
|
||||||
}
|
}
|
||||||
|
|
||||||
int btrfs_qgroup_setup_filter(struct btrfs_qgroup_filter_set **filter_set,
|
static int btrfs_qgroup_setup_filter(struct btrfs_qgroup_filter_set **filter_set,
|
||||||
enum btrfs_qgroup_filter_enum filter, u64 data)
|
enum btrfs_qgroup_filter_enum filter, u64 data)
|
||||||
{
|
{
|
||||||
struct btrfs_qgroup_filter_set *set = *filter_set;
|
struct btrfs_qgroup_filter_set *set = *filter_set;
|
||||||
@ -1266,7 +1266,7 @@ static void print_all_qgroups(struct qgroup_lookup *qgroup_lookup)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int btrfs_show_qgroups(int fd,
|
static int btrfs_show_qgroups(int fd,
|
||||||
struct btrfs_qgroup_filter_set *filter_set,
|
struct btrfs_qgroup_filter_set *filter_set,
|
||||||
struct btrfs_qgroup_comparer_set *comp_set)
|
struct btrfs_qgroup_comparer_set *comp_set)
|
||||||
{
|
{
|
||||||
@ -1293,7 +1293,7 @@ int btrfs_show_qgroups(int fd,
|
|||||||
* 1 parse error
|
* 1 parse error
|
||||||
* <0 other errors
|
* <0 other errors
|
||||||
*/
|
*/
|
||||||
int btrfs_qgroup_parse_sort_string(const char *opt_arg,
|
static int btrfs_qgroup_parse_sort_string(const char *opt_arg,
|
||||||
struct btrfs_qgroup_comparer_set **comps)
|
struct btrfs_qgroup_comparer_set **comps)
|
||||||
{
|
{
|
||||||
int order;
|
int order;
|
||||||
|
@ -91,24 +91,10 @@ struct btrfs_qgroup_stats {
|
|||||||
struct btrfs_qgroup_limit limit;
|
struct btrfs_qgroup_limit limit;
|
||||||
};
|
};
|
||||||
|
|
||||||
int btrfs_qgroup_parse_sort_string(const char *opt_arg,
|
|
||||||
struct btrfs_qgroup_comparer_set **comps);
|
|
||||||
int btrfs_show_qgroups(int fd, struct btrfs_qgroup_filter_set *,
|
|
||||||
struct btrfs_qgroup_comparer_set *);
|
|
||||||
void btrfs_qgroup_setup_print_column(enum btrfs_qgroup_column_enum column);
|
|
||||||
void btrfs_qgroup_setup_units(unsigned unit_mode);
|
|
||||||
struct btrfs_qgroup_filter_set *btrfs_qgroup_alloc_filter_set(void);
|
|
||||||
int btrfs_qgroup_setup_filter(struct btrfs_qgroup_filter_set **filter_set,
|
|
||||||
enum btrfs_qgroup_filter_enum, u64 data);
|
|
||||||
struct btrfs_qgroup_comparer_set *btrfs_qgroup_alloc_comparer_set(void);
|
|
||||||
int btrfs_qgroup_setup_comparer(struct btrfs_qgroup_comparer_set **comp_set,
|
|
||||||
enum btrfs_qgroup_comp_enum comparer,
|
|
||||||
int is_descending);
|
|
||||||
int qgroup_inherit_size(struct btrfs_qgroup_inherit *p);
|
int qgroup_inherit_size(struct btrfs_qgroup_inherit *p);
|
||||||
int qgroup_inherit_add_group(struct btrfs_qgroup_inherit **inherit, char *arg);
|
int qgroup_inherit_add_group(struct btrfs_qgroup_inherit **inherit, char *arg);
|
||||||
int qgroup_inherit_add_copy(struct btrfs_qgroup_inherit **inherit, char *arg,
|
int qgroup_inherit_add_copy(struct btrfs_qgroup_inherit **inherit, char *arg,
|
||||||
int type);
|
int type);
|
||||||
|
|
||||||
int btrfs_qgroup_query(int fd, u64 qgroupid, struct btrfs_qgroup_stats *stats);
|
int btrfs_qgroup_query(int fd, u64 qgroupid, struct btrfs_qgroup_stats *stats);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user