btrfs-progs/cmds/filesystem-usage.h
Josef Bacik a754fe29d9 btrfs-progs: sync uapi/btrfs.h into btrfs-progs
We want to keep this file locally as we want to be uptodate with
upstream, so we can build btrfs-progs regardless of which kernel is
currently installed.  Sync this with the upstream version and put it in
kernel-shared/uapi to maintain some semblance of where this file comes
from.

There are some changes that need to be synced back to kernel. A local
definition of static_assert is used to avoid compilation problems on gcc
(< 9) due to mandatory 2nd parameter.

Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2023-05-26 18:02:28 +02:00

56 lines
1.7 KiB
C

/*
* 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 __CMDS_FI_USAGE_H__
#define __CMDS_FI_USAGE_H__
#include "kerncompat.h"
#include "kernel-shared/uapi/btrfs.h"
struct device_info {
u64 devid;
char path[BTRFS_DEVICE_PATH_NAME_MAX];
/* Size of the block device */
u64 device_size;
/* Size that's occupied by the filesystem, can be changed via resize */
u64 size;
};
/*
* To store the size information about the chunks:
* the chunks info are grouped by the tuple (type, devid, num_stripes),
* i.e. if two chunks are of the same type (RAID1, DUP...), are on the
* same disk, have the same stripes then their sizes are grouped
*/
struct chunk_info {
u64 type;
u64 size;
u64 devid;
u64 num_stripes;
};
int load_chunk_and_device_info(int fd, struct chunk_info **chunkinfo_ret,
int *chunkcount_ret, struct device_info **devinfo_ret,
int *devcount_ret);
void print_device_chunks(struct device_info *devinfo,
struct chunk_info *chunk_info, int chunkcount, unsigned unit_mode);
void print_device_sizes(struct device_info *devinfo, unsigned unit_mode);
int dev_to_fsid(const char *dev, u8 *fsid);
#endif