Lines Matching refs:start_vcn
198 * @start_vcn: vcn to use for the first allocated cluster
235 runlist *ntfs_cluster_alloc(ntfs_volume *vol, VCN start_vcn, s64 count,
259 __FUNCTION__, (long long)start_vcn,
268 rl[0].vcn = start_vcn;
397 rl[rlpos].vcn = start_vcn;
399 (long long)start_vcn);
655 * @start_vcn: vcn in @rl at which to start freeing clusters
658 * Free @count clusters starting at the cluster @start_vcn in the runlist
661 * If @count is -1, all clusters from @start_vcn to the end of the runlist
667 int ntfs_cluster_free(ntfs_volume *vol, ntfs_attr *na, VCN start_vcn, s64 count)
673 if (!vol || !vol->lcnbmp_na || !na || start_vcn < 0 ||
682 le32_to_cpu(na->type), (long long)count, (long long)start_vcn);
684 rl = ntfs_attr_find_vcn(na, start_vcn);
699 delta = start_vcn - rl->vcn;