Lines Matching refs:vbo
517 static noinline int ntfs_get_block_vbo(struct inode *inode, u64 vbo, in ntfs_get_block_vbo() argument
538 if (!create && vbo >= ni->i_valid) { in ntfs_get_block_vbo()
543 if (vbo >= inode->i_size) { in ntfs_get_block_vbo()
559 vcn = vbo >> cluster_bits; in ntfs_get_block_vbo()
560 off = vbo & sbi->cluster_mask; in ntfs_get_block_vbo()
597 if (vbo >= valid) in ntfs_get_block_vbo()
604 if (vbo >= valid) in ntfs_get_block_vbo()
607 if (vbo + bytes > valid) { in ntfs_get_block_vbo()
608 ni->i_valid = vbo + bytes; in ntfs_get_block_vbo()
611 } else if (vbo >= valid) { in ntfs_get_block_vbo()
615 } else if (vbo + bytes <= valid) { in ntfs_get_block_vbo()
617 } else if (vbo + block_size <= valid) { in ntfs_get_block_vbo()
627 u32 voff = valid - vbo; in ntfs_get_block_vbo()
630 off = vbo & (PAGE_SIZE - 1); in ntfs_get_block_vbo()
757 loff_t vbo = iocb->ki_pos; in ntfs_direct_IO() local
776 end = vbo + ret; in ntfs_direct_IO()
783 } else if (vbo < valid && valid < end) { in ntfs_direct_IO()