Home
last modified time | relevance | path

Searched refs:g_parent_inode (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/u-boot/fs/ext4/
H A Dext4_write.c860 g_parent_inode = zalloc(fs->inodesz); in ext4fs_write()
861 if (!g_parent_inode) in ext4fs_write()
872 if (ext4fs_iget(parent_inodeno, g_parent_inode)) in ext4fs_write()
875 if (le32_to_cpu(g_parent_inode->flags) & EXT4_INDEX_FL) { in ext4fs_write()
966 memcpy(temp_ptr + blkoff, g_parent_inode, fs->inodesz); in ext4fs_write()
974 memcpy(temp_ptr + blkoff, g_parent_inode, fs->inodesz); in ext4fs_write()
987 free(g_parent_inode); in ext4fs_write()
989 g_parent_inode = NULL; in ext4fs_write()
995 free(g_parent_inode); in ext4fs_write()
997 g_parent_inode = NULL; in ext4fs_write()
H A Dext4_common.c46 struct ext2_inode *g_parent_inode; variable
509 directory_blocks = le32_to_cpu(g_parent_inode->size) >> in ext4fs_update_parent_dentry()
515 first_block_no_of_root = read_allocated_block(g_parent_inode, blk_idx); in ext4fs_update_parent_dentry()
550 if (le32_to_cpu(g_parent_inode->flags) & in ext4fs_update_parent_dentry()
565 g_parent_inode->b.blocks. in ext4fs_update_parent_dentry()
569 new_size = le32_to_cpu(g_parent_inode->size); in ext4fs_update_parent_dentry()
571 g_parent_inode->size = cpu_to_le32(new_size); in ext4fs_update_parent_dentry()
573 new_blockcnt = le32_to_cpu(g_parent_inode->blockcnt); in ext4fs_update_parent_dentry()
575 g_parent_inode->blockcnt = cpu_to_le32(new_blockcnt); in ext4fs_update_parent_dentry()
943 directory_blocks = le32_to_cpu(g_parent_inode->size) >> in ext4fs_filename_unlink()
[all …]
/OK3568_Linux_fs/u-boot/include/
H A Dext4fs.h123 extern struct ext2_inode *g_parent_inode;
/OK3568_Linux_fs/u-boot/
H A Du-boot.map