Lines Matching defs:start_lcn
200 * @start_lcn: starting lcn at which to allocate the clusters (or -1 if none)
203 * Allocate @count clusters preferably starting at cluster @start_lcn or at the
204 * current allocator position if @start_lcn is -1, on the mounted ntfs volume
236 LCN start_lcn, const NTFS_CLUSTER_ALLOCATION_ZONES zone)
251 ntfs_log_enter("Entering with count = 0x%llx, start_lcn = 0x%llx, "
253 start_lcn, zone == MFT_ZONE ? "MFT" : "DATA");
255 if (!vol || count < 0 || start_lcn < -1 || !vol->lcnbmp_na ||
260 (long long)count, (long long)start_lcn);
279 * If no @start_lcn was requested, use the current zone
280 * position otherwise use the requested @start_lcn.
283 zone_start = start_lcn;