• Home
  • Raw
  • Download

Lines Matching refs:k

635 	int k, l = path->p_depth;  in ext4_ext_show_path()  local
638 for (k = 0; k <= l; k++, path++) { in ext4_ext_show_path()
764 int k; in ext4_ext_binsearch_idx() local
767 for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ix++) { in ext4_ext_binsearch_idx()
768 if (k != 0 && in ext4_ext_binsearch_idx()
771 "first=0x%p\n", k, in ext4_ext_binsearch_idx()
777 BUG_ON(k && le32_to_cpu(ix->ei_block) in ext4_ext_binsearch_idx()
835 int k; in ext4_ext_binsearch() local
838 for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ex++) { in ext4_ext_binsearch()
839 BUG_ON(k && le32_to_cpu(ex->ee_block) in ext4_ext_binsearch()
1037 int i = at, k, m, a; in ext4_ext_split() local
1161 k = depth - at - 1; in ext4_ext_split()
1162 if (unlikely(k < 0)) { in ext4_ext_split()
1163 EXT4_ERROR_INODE(inode, "k %d < 0!", k); in ext4_ext_split()
1167 if (k) in ext4_ext_split()
1168 ext_debug("create %d intermediate indices\n", k); in ext4_ext_split()
1172 while (k--) { in ext4_ext_split()
1683 int k, err = 0; in ext4_ext_correct_indexes() local
1707 k = depth - 1; in ext4_ext_correct_indexes()
1709 err = ext4_ext_get_access(handle, inode, path + k); in ext4_ext_correct_indexes()
1712 path[k].p_idx->ei_block = border; in ext4_ext_correct_indexes()
1713 err = ext4_ext_dirty(handle, inode, path + k); in ext4_ext_correct_indexes()
1717 while (k--) { in ext4_ext_correct_indexes()
1719 if (path[k+1].p_idx != EXT_FIRST_INDEX(path[k+1].p_hdr)) in ext4_ext_correct_indexes()
1721 err = ext4_ext_get_access(handle, inode, path + k); in ext4_ext_correct_indexes()
1724 path[k].p_idx->ei_block = border; in ext4_ext_correct_indexes()
1725 err = ext4_ext_dirty(handle, inode, path + k); in ext4_ext_correct_indexes()
3051 int k = i = depth; in ext4_ext_remove_space() local
3052 while (--k > 0) in ext4_ext_remove_space()
3053 path[k].p_block = in ext4_ext_remove_space()
3054 le16_to_cpu(path[k].p_hdr->eh_entries)+1; in ext4_ext_remove_space()