Lines Matching refs:vbo
552 static noinline int ntfs_get_block_vbo(struct inode *inode, u64 vbo, in ntfs_get_block_vbo() argument
583 vcn = vbo >> cluster_bits; in ntfs_get_block_vbo()
584 off = vbo & sbi->cluster_mask; in ntfs_get_block_vbo()
619 if (vbo >= valid) in ntfs_get_block_vbo()
626 if (vbo >= valid) in ntfs_get_block_vbo()
629 if (vbo + bytes > valid) { in ntfs_get_block_vbo()
630 ni->i_valid = vbo + bytes; in ntfs_get_block_vbo()
633 } else if (vbo >= valid) { in ntfs_get_block_vbo()
636 } else if (vbo + bytes <= valid) { in ntfs_get_block_vbo()
638 } else if (vbo + block_size <= valid) { in ntfs_get_block_vbo()
648 u32 voff = valid - vbo; in ntfs_get_block_vbo()
651 off = vbo & (PAGE_SIZE - 1); in ntfs_get_block_vbo()
777 loff_t vbo = iocb->ki_pos; in ntfs_direct_IO() local
795 end = vbo + ret; in ntfs_direct_IO()
797 end = vbo + iter_count; in ntfs_direct_IO()
807 } else if (vbo < valid && valid < end) { in ntfs_direct_IO()