Lines Matching refs:status

242 	int operand, status;  in _get_new_inode_no()  local
260 status = input & operand; in _get_new_inode_no()
261 if (status) { in _get_new_inode_no()
308 int i, remainder, status; in ext4fs_set_block_bmap() local
319 status = *ptr & operand; in ext4fs_set_block_bmap()
320 if (status) in ext4fs_set_block_bmap()
333 status = *ptr & operand; in ext4fs_set_block_bmap()
334 if (status) in ext4fs_set_block_bmap()
344 int i, remainder, status; in ext4fs_reset_block_bmap() local
355 status = *ptr & operand; in ext4fs_reset_block_bmap()
356 if (status) in ext4fs_reset_block_bmap()
366 status = *ptr & operand; in ext4fs_reset_block_bmap()
367 if (status) in ext4fs_reset_block_bmap()
374 int i, remainder, status; in ext4fs_set_inode_bmap() local
388 status = *ptr & operand; in ext4fs_set_inode_bmap()
389 if (status) in ext4fs_set_inode_bmap()
399 int i, remainder, status; in ext4fs_reset_inode_bmap() local
413 status = *ptr & operand; in ext4fs_reset_inode_bmap()
414 if (status) in ext4fs_reset_inode_bmap()
485 int status; in ext4fs_update_parent_dentry() local
519 status = ext4fs_devread((lbaint_t)first_block_no_of_root in ext4fs_update_parent_dentry()
522 if (status == 0) in ext4fs_update_parent_dentry()
631 int status; in search_dir() local
656 status = ext4fs_devread((lbaint_t)blknr * fs->sect_perblk, in search_dir()
658 if (status == 0) in search_dir()
866 int status; in unlink_filename() local
881 status = ext4fs_devread((lbaint_t)blknr * fs->sect_perblk, 0, in unlink_filename()
883 if (status == 0) in unlink_filename()
962 short status; in ext4fs_get_new_blk_no() local
999 status = ext4fs_devread(b_bitmap_blk * in ext4fs_get_new_blk_no()
1003 if (status == 0) in ext4fs_get_new_blk_no()
1063 status = ext4fs_devread(b_bitmap_blk * fs->sect_perblk, in ext4fs_get_new_blk_no()
1065 if (status == 0) in ext4fs_get_new_blk_no()
1091 short status; in ext4fs_get_new_inode_no() local
1135 status = ext4fs_devread(i_bitmap_blk * in ext4fs_get_new_inode_no()
1139 if (status == 0) in ext4fs_get_new_inode_no()
1178 status = ext4fs_devread(i_bitmap_blk * fs->sect_perblk, in ext4fs_get_new_inode_no()
1180 if (status == 0) in ext4fs_get_new_inode_no()
1213 short status; in alloc_single_indirect_block() local
1236 status = ext4fs_devread((lbaint_t)si_blockno * fs->sect_perblk, in alloc_single_indirect_block()
1239 if (status == 0) in alloc_single_indirect_block()
1273 short status; in alloc_double_indirect_block() local
1300 status = ext4fs_devread((lbaint_t)di_blockno_parent * in alloc_double_indirect_block()
1304 if (!status) { in alloc_double_indirect_block()
1331 status = ext4fs_devread((lbaint_t)di_blockno_child * in alloc_double_indirect_block()
1336 if (!status) { in alloc_double_indirect_block()
1593 int inodes_per_block, status; in ext4fs_read_inode() local
1599 status = ext4fs_blockgroup(data, ino / le32_to_cpu in ext4fs_read_inode()
1601 if (status == 0) in ext4fs_read_inode()
1609 status = ext4fs_devread((lbaint_t)blkno << (LOG2_BLOCK_SIZE(data) - in ext4fs_read_inode()
1612 if (status == 0) in ext4fs_read_inode()
1623 int status; in read_allocated_block() local
1707 status = in read_allocated_block()
1712 if (status == 0) { in read_allocated_block()
1756 status = in read_allocated_block()
1762 if (status == 0) { in read_allocated_block()
1797 status = ext4fs_devread((lbaint_t)le32_to_cpu in read_allocated_block()
1803 if (status == 0) { in read_allocated_block()
1848 status = ext4fs_devread in read_allocated_block()
1853 if (status == 0) { in read_allocated_block()
1890 status = ext4fs_devread((lbaint_t)le32_to_cpu in read_allocated_block()
1896 if (status == 0) { in read_allocated_block()
1934 status = in read_allocated_block()
1940 if (status == 0) { in read_allocated_block()
2012 int status; in ext4fs_iterate_dir() local
2021 status = ext4fs_read_inode(diro->data, diro->ino, &diro->inode); in ext4fs_iterate_dir()
2022 if (status == 0) in ext4fs_iterate_dir()
2029 status = ext4fs_read_file(diro, fpos, in ext4fs_iterate_dir()
2032 if (status < 0) in ext4fs_iterate_dir()
2045 status = ext4fs_read_file(diro, in ext4fs_iterate_dir()
2050 if (status < 0) in ext4fs_iterate_dir()
2072 status = ext4fs_read_inode(diro->data, in ext4fs_iterate_dir()
2076 if (status == 0) { in ext4fs_iterate_dir()
2108 status = ext4fs_read_inode(diro->data, in ext4fs_iterate_dir()
2112 if (status == 0) { in ext4fs_iterate_dir()
2147 int status; in ext4fs_read_symlink() local
2151 status = ext4fs_read_inode(diro->data, diro->ino, &diro->inode); in ext4fs_read_symlink()
2152 if (status == 0) in ext4fs_read_symlink()
2163 status = ext4fs_read_file(diro, 0, in ext4fs_read_symlink()
2166 if ((status < 0) || (actread == 0)) { in ext4fs_read_symlink()
2182 int status; in ext4fs_find_file1() local
2251 status = ext4fs_find_file1(symlink, oldnode, in ext4fs_find_file1()
2256 if (status == 0) { in ext4fs_find_file1()
2278 int status; in ext4fs_find_file() local
2285 status = ext4fs_find_file1(path, rootnode, foundnode, &foundtype); in ext4fs_find_file()
2286 if (status == 0) in ext4fs_find_file()
2302 int status; in ext4fs_open() local
2308 status = ext4fs_find_file(filename, &ext4fs_root->diropen, &fdiro, in ext4fs_open()
2310 if (status == 0) in ext4fs_open()
2314 status = ext4fs_read_inode(fdiro->data, fdiro->ino, in ext4fs_open()
2316 if (status == 0) in ext4fs_open()
2332 int status; in ext4fs_mount() local
2339 status = ext4_read_superblock((char *)&data->sblock); in ext4fs_mount()
2341 if (status == 0) in ext4fs_mount()
2373 status = ext4fs_read_inode(data, 2, data->inode); in ext4fs_mount()
2374 if (status == 0) in ext4fs_mount()