Home
last modified time | relevance | path

Searched refs:bg_flags (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/kernel/fs/ext4/
H A Dresize.c228 __u16 *bg_flags; /* block group flags of groups member
258 flex_gd->bg_flags = kmalloc_array(flexbg_size, sizeof(__u16), in alloc_flex_gd()
260 if (flex_gd->bg_flags == NULL) in alloc_flex_gd()
275 kfree(flex_gd->bg_flags); in free_flex_gd()
346 flex_gd->bg_flags[group] &= uninit_mask; in ext4_alloc_group_tables()
357 flex_gd->bg_flags[group] &= uninit_mask; in ext4_alloc_group_tables()
373 flex_gd->bg_flags[group + 1] &= uninit_mask; in ext4_alloc_group_tables()
380 flex_gd->bg_flags[group] &= uninit_mask; in ext4_alloc_group_tables()
473 if (flex_gd->bg_flags[group] & EXT4_BG_BLOCK_UNINIT) { in set_flexbg_block_bitmap()
528 __u16 *bg_flags = flex_gd->bg_flags; in setup_new_flex_group_blocks() local
[all …]
H A Dialloc.c163 (desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT))) { in ext4_read_inode_bitmap()
798 gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) { in ext4_mark_inode_used()
814 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) { in ext4_mark_inode_used()
815 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT); in ext4_mark_inode_used()
838 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) { in ext4_mark_inode_used()
839 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_INODE_UNINIT); in ext4_mark_inode_used()
1140 gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) { in __ext4_new_inode()
1162 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) { in __ext4_new_inode()
1163 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT); in __ext4_new_inode()
1194 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) { in __ext4_new_inode()
[all …]
H A Dmballoc.c2205 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)))) in ext4_mb_good_group_nolock()
2249 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)))) { in ext4_mb_prefetch()
2292 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)))) { in ext4_mb_prefetch_fini()
2668 (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) { in ext4_mb_add_groupinfo()
3271 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) { in ext4_mb_mark_diskspace_used()
3272 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT); in ext4_mb_mark_diskspace_used()
3367 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) { in ext4_mb_mark_bb()
3368 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT); in ext4_mb_mark_bb()
H A Dballoc.c466 (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) { in ext4_read_block_bitmap_nowait()
H A Dsuper.c2906 !(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED))) in ext4_check_descriptors()
3478 if (!(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED))) in ext4_run_li_request()
3692 if (!(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED))) in ext4_has_uninit_itable()
H A Dext4.h331 __le16 bg_flags; /* EXT4_BG_flags (INODE_UNINIT, etc) */ member
/OK3568_Linux_fs/u-boot/fs/ext4/
H A Dext4_common.c144 return le16_to_cpu(bg->bg_flags); in ext4fs_bg_get_flags()
150 bg->bg_flags = cpu_to_le16(flags); in ext4fs_bg_set_flags()
978 uint16_t bg_flags = ext4fs_bg_get_flags(bgd); in ext4fs_get_new_blk_no() local
981 if (bg_flags & EXT4_BG_BLOCK_UNINIT) { in ext4fs_get_new_blk_no()
986 bg_flags &= ~EXT4_BG_BLOCK_UNINIT; in ext4fs_get_new_blk_no()
987 ext4fs_bg_set_flags(bgd, bg_flags); in ext4fs_get_new_blk_no()
1043 uint16_t bg_flags = ext4fs_bg_get_flags(bgd); in ext4fs_get_new_blk_no() local
1045 if (bg_flags & EXT4_BG_BLOCK_UNINIT) { in ext4fs_get_new_blk_no()
1049 bg_flags &= ~EXT4_BG_BLOCK_UNINIT; in ext4fs_get_new_blk_no()
1050 ext4fs_bg_set_flags(bgd, bg_flags); in ext4fs_get_new_blk_no()
[all …]
/OK3568_Linux_fs/u-boot/include/
H A Dext_common.h138 __le16 bg_flags; member
/OK3568_Linux_fs/kernel/fs/btrfs/
H A Dvolumes.c170 void btrfs_describe_block_groups(u64 bg_flags, char *buf, u32 size_buf) in btrfs_describe_block_groups() argument
175 u64 flags = bg_flags; in btrfs_describe_block_groups()