Lines Matching refs:vbo
557 static noinline int ntfs_get_block_vbo(struct inode *inode, u64 vbo, in ntfs_get_block_vbo() argument
593 vcn = vbo >> cluster_bits; in ntfs_get_block_vbo()
594 off = vbo & sbi->cluster_mask; in ntfs_get_block_vbo()
630 if (vbo >= valid) in ntfs_get_block_vbo()
637 if (vbo >= valid) in ntfs_get_block_vbo()
640 if (vbo + bytes > valid) { in ntfs_get_block_vbo()
641 ni->i_valid = vbo + bytes; in ntfs_get_block_vbo()
644 } else if (vbo >= valid) { in ntfs_get_block_vbo()
647 } else if (vbo + bytes <= valid) { in ntfs_get_block_vbo()
649 } else if (vbo + block_size <= valid) { in ntfs_get_block_vbo()
659 u32 voff = valid - vbo; in ntfs_get_block_vbo()
662 off = vbo & (PAGE_SIZE - 1); in ntfs_get_block_vbo()
788 loff_t vbo = iocb->ki_pos; in ntfs_direct_IO() local
806 end = vbo + ret; in ntfs_direct_IO()
808 end = vbo + iter_count; in ntfs_direct_IO()
818 } else if (vbo < valid && valid < end) { in ntfs_direct_IO()