2008-01-04 15:38:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 Oracle. All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public
|
|
|
|
* License v2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 021110-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTILS__
|
|
|
|
#define __UTILS__
|
2008-03-24 19:03:18 +00:00
|
|
|
|
2013-01-28 05:22:30 +00:00
|
|
|
#include "ctree.h"
|
|
|
|
|
2008-03-24 19:03:18 +00:00
|
|
|
#define BTRFS_MKFS_SYSTEM_GROUP_SIZE (4 * 1024 * 1024)
|
|
|
|
|
2008-04-22 18:06:56 +00:00
|
|
|
int make_btrfs(int fd, const char *device, const char *label,
|
2008-03-24 19:03:18 +00:00
|
|
|
u64 blocks[6], u64 num_bytes, u32 nodesize,
|
|
|
|
u32 leafsize, u32 sectorsize, u32 stripesize);
|
2008-01-04 15:38:22 +00:00
|
|
|
int btrfs_make_root_dir(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root, u64 objectid);
|
2012-07-27 12:37:55 +00:00
|
|
|
int btrfs_prepare_device(int fd, char *file, int zero_end, u64 *block_count_ret,
|
|
|
|
u64 max_block_count, int *mixed, int nodiscard);
|
2008-03-24 19:04:49 +00:00
|
|
|
int btrfs_add_to_fsid(struct btrfs_trans_handle *trans,
|
2008-04-18 14:31:42 +00:00
|
|
|
struct btrfs_root *root, int fd, char *path,
|
|
|
|
u64 block_count, u32 io_width, u32 io_align,
|
|
|
|
u32 sectorsize);
|
2008-03-24 19:05:44 +00:00
|
|
|
int btrfs_scan_for_fsid(struct btrfs_fs_devices *fs_devices, u64 total_devs,
|
|
|
|
int run_ioctls);
|
2009-01-07 19:57:11 +00:00
|
|
|
void btrfs_register_one_device(char *fname);
|
2008-03-24 19:05:44 +00:00
|
|
|
int btrfs_scan_one_dir(char *dirname, int run_ioctl);
|
2010-09-09 02:57:02 +00:00
|
|
|
int check_mounted(const char *devicename);
|
2011-07-18 12:37:23 +00:00
|
|
|
int check_mounted_where(int fd, const char *file, char *where, int size,
|
|
|
|
struct btrfs_fs_devices **fs_devices_mnt);
|
2008-04-18 14:45:17 +00:00
|
|
|
int btrfs_device_already_in_root(struct btrfs_root *root, int fd,
|
|
|
|
int super_offset);
|
2008-04-22 18:06:31 +00:00
|
|
|
char *pretty_sizes(u64 size);
|
2010-12-05 17:46:44 +00:00
|
|
|
int get_mountpt(char *dev, char *mntpt, size_t size);
|
2011-06-15 19:55:25 +00:00
|
|
|
int btrfs_scan_block_devices(int run_ioctl);
|
2012-10-29 17:53:17 +00:00
|
|
|
u64 parse_size(char *s);
|
2013-01-28 05:22:30 +00:00
|
|
|
int open_file_or_dir(const char *fname);
|
2012-05-15 10:05:44 +00:00
|
|
|
int get_device_info(int fd, u64 devid,
|
|
|
|
struct btrfs_ioctl_dev_info_args *di_args);
|
|
|
|
int get_fs_info(int fd, char *path, struct btrfs_ioctl_fs_info_args *fi_args,
|
|
|
|
struct btrfs_ioctl_dev_info_args **di_ret);
|
2013-01-25 19:27:47 +00:00
|
|
|
|
|
|
|
char *__strncpy__null(char *dest, const char *src, size_t n);
|
2013-02-14 07:53:04 +00:00
|
|
|
int is_swap_device(const char *file);
|
2013-01-25 19:27:47 +00:00
|
|
|
/* Helper to always get proper size of the destination string */
|
|
|
|
#define strncpy_null(dest, src) __strncpy__null(dest, src, sizeof(dest))
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
#endif
|