mirror of
https://github.com/kdave/btrfs-progs
synced 2025-04-25 12:37:55 +00:00
btrfs-progs: treewide: Fix missing declarations
Found using -Wmissing-prototypes in GCC. This should improve LTO behavior. Note that set_free_space_tree_thresholds is an unused function. Adding inline seems to remove the unused function warning. Reviewed-by: Nikolay Borisov <nborisov@suse.com> Signed-off-by: Rosen Penev <rosenp@gmail.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
803c916907
commit
01e35d9f53
2
btrfs.c
2
btrfs.c
@ -210,7 +210,7 @@ static int handle_global_options(int argc, char **argv)
|
|||||||
return shift;
|
return shift;
|
||||||
}
|
}
|
||||||
|
|
||||||
void handle_special_globals(int shift, int argc, char **argv)
|
static void handle_special_globals(int shift, int argc, char **argv)
|
||||||
{
|
{
|
||||||
int has_help = 0;
|
int has_help = 0;
|
||||||
int has_full = 0;
|
int has_full = 0;
|
||||||
|
@ -953,7 +953,7 @@ out:
|
|||||||
* returns 0 means success.
|
* returns 0 means success.
|
||||||
* returns not 0 means on error;
|
* returns not 0 means on error;
|
||||||
*/
|
*/
|
||||||
int repair_ternary_lowmem(struct btrfs_root *root, u64 dir_ino, u64 ino,
|
static int repair_ternary_lowmem(struct btrfs_root *root, u64 dir_ino, u64 ino,
|
||||||
u64 index, char *name, int name_len, u8 filetype,
|
u64 index, char *name, int name_len, u8 filetype,
|
||||||
int err)
|
int err)
|
||||||
{
|
{
|
||||||
|
@ -3749,7 +3749,7 @@ static void __get_extent_size(struct btrfs_root *root, struct btrfs_path *path,
|
|||||||
* Return >0 for not found.
|
* Return >0 for not found.
|
||||||
* Return <0 for err
|
* Return <0 for err
|
||||||
*/
|
*/
|
||||||
int btrfs_search_overlap_extent(struct btrfs_root *root,
|
static int btrfs_search_overlap_extent(struct btrfs_root *root,
|
||||||
struct btrfs_path *path, u64 bytenr, u64 len)
|
struct btrfs_path *path, u64 bytenr, u64 len)
|
||||||
{
|
{
|
||||||
struct btrfs_key key;
|
struct btrfs_key key;
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
#include "bitops.h"
|
#include "bitops.h"
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
|
|
||||||
void set_free_space_tree_thresholds(struct btrfs_block_group_cache *cache,
|
static inline void set_free_space_tree_thresholds(struct btrfs_block_group_cache *cache,
|
||||||
u64 sectorsize)
|
u64 sectorsize)
|
||||||
{
|
{
|
||||||
u32 bitmap_range;
|
u32 bitmap_range;
|
||||||
@ -202,7 +202,7 @@ static void le_bitmap_set(unsigned long *map, unsigned int start, int len)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int convert_free_space_to_bitmaps(struct btrfs_trans_handle *trans,
|
static int convert_free_space_to_bitmaps(struct btrfs_trans_handle *trans,
|
||||||
struct btrfs_block_group_cache *block_group,
|
struct btrfs_block_group_cache *block_group,
|
||||||
struct btrfs_path *path)
|
struct btrfs_path *path)
|
||||||
{
|
{
|
||||||
@ -341,7 +341,7 @@ out:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int convert_free_space_to_extents(struct btrfs_trans_handle *trans,
|
static int convert_free_space_to_extents(struct btrfs_trans_handle *trans,
|
||||||
struct btrfs_block_group_cache *block_group,
|
struct btrfs_block_group_cache *block_group,
|
||||||
struct btrfs_path *path)
|
struct btrfs_path *path)
|
||||||
{
|
{
|
||||||
@ -780,7 +780,7 @@ out:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int __remove_from_free_space_tree(struct btrfs_trans_handle *trans,
|
static int __remove_from_free_space_tree(struct btrfs_trans_handle *trans,
|
||||||
struct btrfs_block_group_cache *block_group,
|
struct btrfs_block_group_cache *block_group,
|
||||||
struct btrfs_path *path, u64 start, u64 size)
|
struct btrfs_path *path, u64 start, u64 size)
|
||||||
{
|
{
|
||||||
@ -960,7 +960,7 @@ out:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int __add_to_free_space_tree(struct btrfs_trans_handle *trans,
|
static int __add_to_free_space_tree(struct btrfs_trans_handle *trans,
|
||||||
struct btrfs_block_group_cache *block_group,
|
struct btrfs_block_group_cache *block_group,
|
||||||
struct btrfs_path *path, u64 start, u64 size)
|
struct btrfs_path *path, u64 start, u64 size)
|
||||||
{
|
{
|
||||||
@ -1420,7 +1420,7 @@ out:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct btrfs_root *btrfs_create_tree(struct btrfs_trans_handle *trans,
|
static struct btrfs_root *btrfs_create_tree(struct btrfs_trans_handle *trans,
|
||||||
struct btrfs_fs_info *fs_info,
|
struct btrfs_fs_info *fs_info,
|
||||||
u64 objectid)
|
u64 objectid)
|
||||||
{
|
{
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include "stubs.h"
|
||||||
|
|
||||||
void *reallocarray(void *ptr, size_t nmemb, size_t size)
|
void *reallocarray(void *ptr, size_t nmemb, size_t size)
|
||||||
{
|
{
|
||||||
|
@ -5,6 +5,8 @@
|
|||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <ioctl.h>
|
#include <ioctl.h>
|
||||||
|
|
||||||
|
#include "utils.h"
|
||||||
|
|
||||||
#if BTRFS_FLAT_INCLUDES
|
#if BTRFS_FLAT_INCLUDES
|
||||||
#include "ctree.h"
|
#include "ctree.h"
|
||||||
#else
|
#else
|
||||||
|
1
utils.h
1
utils.h
@ -29,6 +29,7 @@
|
|||||||
#include "sizes.h"
|
#include "sizes.h"
|
||||||
#include "messages.h"
|
#include "messages.h"
|
||||||
#include "ioctl.h"
|
#include "ioctl.h"
|
||||||
|
#include "fsfeatures.h"
|
||||||
|
|
||||||
#define BTRFS_SCAN_MOUNTED (1ULL << 0)
|
#define BTRFS_SCAN_MOUNTED (1ULL << 0)
|
||||||
#define BTRFS_SCAN_LBLKID (1ULL << 1)
|
#define BTRFS_SCAN_LBLKID (1ULL << 1)
|
||||||
|
Loading…
Reference in New Issue
Block a user