• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ntfs/

Lines Matching refs:zone_start

77 	LCN zone_start, zone_end, bmp_pos, bmp_initial_pos, last_read_pos, lcn;
121 * zone_start and zone_end are the current search range. search_zone
126 zone_start = start_lcn;
127 if (zone_start < 0) {
129 zone_start = vol->data1_zone_pos;
131 zone_start = vol->mft_zone_pos;
132 if (!zone_start) {
139 } else if (zone == DATA_ZONE && zone_start >= vol->mft_zone_start &&
140 zone_start < vol->mft_zone_end) {
141 zone_start = vol->mft_zone_end;
147 } else if (zone == MFT_ZONE && (zone_start < vol->mft_zone_start ||
148 zone_start >= vol->mft_zone_end)) {
149 zone_start = vol->mft_lcn;
151 zone_start = 0;
164 if (zone_start >= vol->mft_zone_end) {
176 bmp_pos = bmp_initial_pos = zone_start;
185 "search_zone %i, pass %i, zone_start 0x%llx, "
189 (unsigned long long)zone_start,
442 zone_end = zone_start;
445 zone_start = vol->mft_zone_start;
448 zone_start = vol->mft_zone_end;
451 zone_start = 0;
457 if (zone_end < zone_start)
458 zone_end = zone_start;
459 bmp_pos = zone_start;
461 "zone_start 0x%llx, zone_end 0x%llx, "
463 (unsigned long long)zone_start,
511 zone_start = bmp_initial_pos =
514 if (zone_start == vol->mft_zone_end)
516 if (zone_start >= zone_end) {
517 vol->data1_zone_pos = zone_start =
552 zone_start = bmp_initial_pos =
555 if (!zone_start)
557 if (zone_start >= zone_end) {
558 vol->data2_zone_pos = zone_start =
596 "zone_start 0x%llx, zone_end 0x%llx.",
599 (unsigned long long)zone_start,
601 bmp_pos = zone_start;
602 if (zone_start == zone_end) {
641 bmp_pos = zone_start = bmp_initial_pos =
650 "pass 2, dones_zones 0x%x, zone_start 0x%llx, "
657 done_zones, (unsigned long long)zone_start,