Lines Matching refs:status

244 	int operand, status;  in _get_new_inode_no()  local
262 status = input & operand; in _get_new_inode_no()
263 if (status) { in _get_new_inode_no()
310 int i, remainder, status; in ext4fs_set_block_bmap() local
321 status = *ptr & operand; in ext4fs_set_block_bmap()
322 if (status) in ext4fs_set_block_bmap()
335 status = *ptr & operand; in ext4fs_set_block_bmap()
336 if (status) in ext4fs_set_block_bmap()
346 int i, remainder, status; in ext4fs_reset_block_bmap() local
357 status = *ptr & operand; in ext4fs_reset_block_bmap()
358 if (status) in ext4fs_reset_block_bmap()
368 status = *ptr & operand; in ext4fs_reset_block_bmap()
369 if (status) in ext4fs_reset_block_bmap()
376 int i, remainder, status; in ext4fs_set_inode_bmap() local
390 status = *ptr & operand; in ext4fs_set_inode_bmap()
391 if (status) in ext4fs_set_inode_bmap()
401 int i, remainder, status; in ext4fs_reset_inode_bmap() local
415 status = *ptr & operand; in ext4fs_reset_inode_bmap()
416 if (status) in ext4fs_reset_inode_bmap()
487 int status; in ext4fs_update_parent_dentry() local
522 status = ext4fs_devread((lbaint_t)first_block_no_of_root in ext4fs_update_parent_dentry()
525 if (status == 0) in ext4fs_update_parent_dentry()
634 int status; in search_dir() local
659 status = ext4fs_devread((lbaint_t)blknr * fs->sect_perblk, in search_dir()
661 if (status == 0) in search_dir()
869 int status; in unlink_filename() local
884 status = ext4fs_devread((lbaint_t)blknr * fs->sect_perblk, 0, in unlink_filename()
886 if (status == 0) in unlink_filename()
965 short status; in ext4fs_get_new_blk_no() local
1002 status = ext4fs_devread(b_bitmap_blk * in ext4fs_get_new_blk_no()
1006 if (status == 0) in ext4fs_get_new_blk_no()
1066 status = ext4fs_devread(b_bitmap_blk * fs->sect_perblk, in ext4fs_get_new_blk_no()
1068 if (status == 0) in ext4fs_get_new_blk_no()
1094 short status; in ext4fs_get_new_inode_no() local
1138 status = ext4fs_devread(i_bitmap_blk * in ext4fs_get_new_inode_no()
1142 if (status == 0) in ext4fs_get_new_inode_no()
1181 status = ext4fs_devread(i_bitmap_blk * fs->sect_perblk, in ext4fs_get_new_inode_no()
1183 if (status == 0) in ext4fs_get_new_inode_no()
1215 short status; in alloc_single_indirect_block() local
1238 status = ext4fs_devread((lbaint_t)si_blockno * fs->sect_perblk, in alloc_single_indirect_block()
1241 if (status == 0) in alloc_single_indirect_block()
1275 short status; in alloc_double_indirect_block() local
1302 status = ext4fs_devread((lbaint_t)di_blockno_parent * in alloc_double_indirect_block()
1306 if (!status) { in alloc_double_indirect_block()
1333 status = ext4fs_devread((lbaint_t)di_blockno_child * in alloc_double_indirect_block()
1338 if (!status) { in alloc_double_indirect_block()
1601 int inodes_per_block, status; in ext4fs_read_inode() local
1616 status = ext4fs_blockgroup(data, ino / le32_to_cpu in ext4fs_read_inode()
1618 if (status == 0) { in ext4fs_read_inode()
1636 status = ext4fs_devread((lbaint_t)blkno << (LOG2_BLOCK_SIZE(data) - in ext4fs_read_inode()
1639 if (status == 0) in ext4fs_read_inode()
1651 int status; in read_allocated_block() local
1744 status = in read_allocated_block()
1749 if (status == 0) { in read_allocated_block()
1793 status = in read_allocated_block()
1799 if (status == 0) { in read_allocated_block()
1834 status = ext4fs_devread((lbaint_t)le32_to_cpu in read_allocated_block()
1840 if (status == 0) { in read_allocated_block()
1885 status = ext4fs_devread in read_allocated_block()
1890 if (status == 0) { in read_allocated_block()
1927 status = ext4fs_devread((lbaint_t)le32_to_cpu in read_allocated_block()
1933 if (status == 0) { in read_allocated_block()
1971 status = in read_allocated_block()
1977 if (status == 0) { in read_allocated_block()
2049 int status; in ext4fs_iterate_dir() local
2057 status = ext4fs_read_inode(dir->data, dir->ino, &dir->inode); in ext4fs_iterate_dir()
2058 if (status == 0) in ext4fs_iterate_dir()
2065 status = ext4fs_read_file(dir, fpos, in ext4fs_iterate_dir()
2068 if (status < 0) in ext4fs_iterate_dir()
2081 status = ext4fs_read_file(dir, in ext4fs_iterate_dir()
2086 if (status < 0) in ext4fs_iterate_dir()
2108 status = ext4fs_read_inode(dir->data, in ext4fs_iterate_dir()
2112 if (status == 0) { in ext4fs_iterate_dir()
2154 int status; in ext4fs_read_symlink() local
2159 status = ext4fs_read_inode(diro->data, diro->ino, &diro->inode); in ext4fs_read_symlink()
2160 if (status == 0) in ext4fs_read_symlink()
2175 status = ext4fs_read_file(diro, 0, in ext4fs_read_symlink()
2178 if ((status < 0) || (actread == 0)) { in ext4fs_read_symlink()
2193 int status; in ext4fs_find_file1() local
2262 status = ext4fs_find_file1(symlink, oldnode, in ext4fs_find_file1()
2267 if (status == 0) { in ext4fs_find_file1()
2289 int status; in ext4fs_find_file() local
2296 status = ext4fs_find_file1(path, rootnode, foundnode, &foundtype); in ext4fs_find_file()
2297 if (status == 0) in ext4fs_find_file()
2313 int status; in ext4fs_open() local
2319 status = ext4fs_find_file(filename, &ext4fs_root->diropen, &fdiro, in ext4fs_open()
2321 if (status == 0) in ext4fs_open()
2325 status = ext4fs_read_inode(fdiro->data, fdiro->ino, in ext4fs_open()
2327 if (status == 0) in ext4fs_open()
2343 int status; in ext4fs_mount() local
2350 status = ext4_read_superblock((char *)&data->sblock); in ext4fs_mount()
2352 if (status == 0) in ext4fs_mount()
2397 status = ext4fs_read_inode(data, 2, data->inode); in ext4fs_mount()
2398 if (status == 0) in ext4fs_mount()