Home
last modified time | relevance | path

Searched refs:lbcount (Results 1 – 2 of 2) sorted by relevance

/linux-3.4.99/fs/udf/
Dtruncate.c73 uint64_t lbcount = 0; in udf_truncate_tail_extent() local
95 lbcount += elen; in udf_truncate_tail_extent()
96 if (lbcount > inode->i_size) { in udf_truncate_tail_extent()
97 if (lbcount - inode->i_size >= inode->i_sb->s_blocksize) in udf_truncate_tail_extent()
102 (long long)lbcount, in udf_truncate_tail_extent()
105 nelen = elen - (lbcount - inode->i_size); in udf_truncate_tail_extent()
127 uint64_t lbcount = 0; in udf_discard_prealloc() local
148 lbcount += elen; in udf_discard_prealloc()
152 lbcount -= elen; in udf_discard_prealloc()
176 iinfo->i_lenExtents = lbcount; in udf_discard_prealloc()
Dinode.c570 loff_t lbcount = 0, b_off = 0; in inode_getblk() local
602 lbcount += elen; in inode_getblk()
625 } while (lbcount + elen <= b_off); in inode_getblk()
627 b_off -= lbcount; in inode_getblk()
2130 loff_t lbcount = 0, bcount = in inode_bmap() local
2144 *offset = (bcount - lbcount) >> blocksize_bits; in inode_bmap()
2145 iinfo->i_lenExtents = lbcount; in inode_bmap()
2148 lbcount += *elen; in inode_bmap()
2149 } while (lbcount <= bcount); in inode_bmap()
2151 *offset = (bcount + *elen - lbcount) >> blocksize_bits; in inode_bmap()