Lines Matching refs:vbo
538 static noinline int ntfs_get_block_vbo(struct inode *inode, u64 vbo, in ntfs_get_block_vbo() argument
569 vcn = vbo >> cluster_bits; in ntfs_get_block_vbo()
570 off = vbo & sbi->cluster_mask; in ntfs_get_block_vbo()
605 if (vbo >= valid) in ntfs_get_block_vbo()
612 if (vbo >= valid) in ntfs_get_block_vbo()
615 if (vbo + bytes > valid) { in ntfs_get_block_vbo()
616 ni->i_valid = vbo + bytes; in ntfs_get_block_vbo()
619 } else if (vbo >= valid) { in ntfs_get_block_vbo()
622 } else if (vbo + bytes <= valid) { in ntfs_get_block_vbo()
624 } else if (vbo + block_size <= valid) { in ntfs_get_block_vbo()
634 u32 voff = valid - vbo; in ntfs_get_block_vbo()
637 off = vbo & (PAGE_SIZE - 1); in ntfs_get_block_vbo()
762 loff_t vbo = iocb->ki_pos; in ntfs_direct_IO() local
780 end = vbo + ret; in ntfs_direct_IO()
782 end = vbo + iter_count; in ntfs_direct_IO()
792 } else if (vbo < valid && valid < end) { in ntfs_direct_IO()