Lines Matching refs:vbo
518 static noinline int ntfs_get_block_vbo(struct inode *inode, u64 vbo, in ntfs_get_block_vbo() argument
539 if (!create && vbo >= ni->i_valid) { in ntfs_get_block_vbo()
544 if (vbo >= inode->i_size) { in ntfs_get_block_vbo()
560 vcn = vbo >> cluster_bits; in ntfs_get_block_vbo()
561 off = vbo & sbi->cluster_mask; in ntfs_get_block_vbo()
598 if (vbo >= valid) in ntfs_get_block_vbo()
605 if (vbo >= valid) in ntfs_get_block_vbo()
608 if (vbo + bytes > valid) { in ntfs_get_block_vbo()
609 ni->i_valid = vbo + bytes; in ntfs_get_block_vbo()
612 } else if (vbo >= valid) { in ntfs_get_block_vbo()
616 } else if (vbo + bytes <= valid) { in ntfs_get_block_vbo()
618 } else if (vbo + block_size <= valid) { in ntfs_get_block_vbo()
628 u32 voff = valid - vbo; in ntfs_get_block_vbo()
631 off = vbo & (PAGE_SIZE - 1); in ntfs_get_block_vbo()
756 loff_t vbo = iocb->ki_pos; in ntfs_direct_IO() local
774 end = vbo + ret; in ntfs_direct_IO()
776 end = vbo + iter_count; in ntfs_direct_IO()
786 } else if (vbo < valid && valid < end) { in ntfs_direct_IO()