mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-25 23:52:17 +00:00
Count space allocated to file in bytes
This patch updates btrfs-progs for counting space allocated to file in bytes. Signed-off-by: Yan Zheng <zheng.yan@oracle.com>
This commit is contained in:
parent
5986faaf47
commit
9559e0b09e
8
ctree.h
8
ctree.h
@ -387,7 +387,7 @@ struct btrfs_inode_item {
|
||||
/* transid that last touched this inode */
|
||||
__le64 transid;
|
||||
__le64 size;
|
||||
__le64 nblocks;
|
||||
__le64 nbytes;
|
||||
__le64 block_group;
|
||||
__le32 nlink;
|
||||
__le32 uid;
|
||||
@ -828,7 +828,7 @@ BTRFS_SETGET_FUNCS(inode_ref_index, struct btrfs_inode_ref, index, 64);
|
||||
BTRFS_SETGET_FUNCS(inode_generation, struct btrfs_inode_item, generation, 64);
|
||||
BTRFS_SETGET_FUNCS(inode_transid, struct btrfs_inode_item, transid, 64);
|
||||
BTRFS_SETGET_FUNCS(inode_size, struct btrfs_inode_item, size, 64);
|
||||
BTRFS_SETGET_FUNCS(inode_nblocks, struct btrfs_inode_item, nblocks, 64);
|
||||
BTRFS_SETGET_FUNCS(inode_nbytes, struct btrfs_inode_item, nbytes, 64);
|
||||
BTRFS_SETGET_FUNCS(inode_block_group, struct btrfs_inode_item, block_group, 64);
|
||||
BTRFS_SETGET_FUNCS(inode_nlink, struct btrfs_inode_item, nlink, 32);
|
||||
BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32);
|
||||
@ -843,8 +843,8 @@ BTRFS_SETGET_STACK_FUNCS(stack_inode_generation,
|
||||
struct btrfs_inode_item, generation, 64);
|
||||
BTRFS_SETGET_STACK_FUNCS(stack_inode_size,
|
||||
struct btrfs_inode_item, size, 64);
|
||||
BTRFS_SETGET_STACK_FUNCS(stack_inode_nblocks,
|
||||
struct btrfs_inode_item, nblocks, 64);
|
||||
BTRFS_SETGET_STACK_FUNCS(stack_inode_nbytes,
|
||||
struct btrfs_inode_item, nbytes, 64);
|
||||
BTRFS_SETGET_STACK_FUNCS(stack_inode_block_group,
|
||||
struct btrfs_inode_item, block_group, 64);
|
||||
BTRFS_SETGET_STACK_FUNCS(stack_inode_nlink,
|
||||
|
4
utils.c
4
utils.c
@ -126,7 +126,7 @@ int make_btrfs(int fd, const char *device, const char *label,
|
||||
btrfs_set_stack_inode_generation(inode_item, 1);
|
||||
btrfs_set_stack_inode_size(inode_item, 3);
|
||||
btrfs_set_stack_inode_nlink(inode_item, 1);
|
||||
btrfs_set_stack_inode_nblocks(inode_item, 1);
|
||||
btrfs_set_stack_inode_nbytes(inode_item, leafsize);
|
||||
btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
|
||||
btrfs_set_root_refs(&root_item, 1);
|
||||
btrfs_set_root_used(&root_item, leafsize);
|
||||
@ -543,7 +543,7 @@ int btrfs_make_root_dir(struct btrfs_trans_handle *trans,
|
||||
btrfs_set_stack_inode_generation(&inode_item, trans->transid);
|
||||
btrfs_set_stack_inode_size(&inode_item, 0);
|
||||
btrfs_set_stack_inode_nlink(&inode_item, 1);
|
||||
btrfs_set_stack_inode_nblocks(&inode_item, 1);
|
||||
btrfs_set_stack_inode_nbytes(&inode_item, root->leafsize);
|
||||
btrfs_set_stack_inode_mode(&inode_item, S_IFDIR | 0555);
|
||||
|
||||
if (root->fs_info->tree_root == root)
|
||||
|
Loading…
Reference in New Issue
Block a user