Lines Matching defs:start_vcn
61 * @start_vcn: vcn to use for the first allocated cluster
73 * @start_vcn specifies the vcn of the first allocated cluster. This makes
132 runlist_element *ntfs_cluster_alloc(ntfs_volume *vol, const VCN start_vcn,
149 ntfs_debug("Entering for start_vcn 0x%llx, count 0x%llx, start_lcn "
150 "0x%llx, zone %s_ZONE.", (unsigned long long)start_vcn,
157 BUG_ON(start_vcn < 0);
393 rl[rlpos].vcn = start_vcn;
778 * @start_vcn: vcn in the runlist of @ni at which to start freeing clusters
783 * Free @count clusters starting at the cluster @start_vcn in the runlist
786 * If @count is -1, all clusters from @start_vcn to the end of the runlist are
788 * @start_vcn = 0 and @count = -1.
835 s64 __ntfs_cluster_free(ntfs_inode *ni, const VCN start_vcn, s64 count,
845 ntfs_debug("Entering for i_ino 0x%lx, start_vcn 0x%llx, count "
846 "0x%llx.%s", ni->mft_no, (unsigned long long)start_vcn,
852 BUG_ON(start_vcn < 0);
866 rl = ntfs_attr_find_vcn_nolock(ni, start_vcn, ctx);
883 delta = start_vcn - rl->vcn;
988 delta = __ntfs_cluster_free(ni, start_vcn, total_freed, ctx, true);