Home | History | Annotate | Download | only in ext4_utils

Lines Matching refs:extent

415     struct ext4_extent *extent;
422 /* The extent entries immediately follow the header, so add 1 to the pointer
423 * and cast it to an extent pointer.
425 extent = (struct ext4_extent *)(ext_hdr + 1);
428 fs_block_num = ((off64_t)extent->ee_start_hi << 32) | extent->ee_start_lo;
429 for (j = 0; j < extent->ee_len; j++) {
430 block_list[extent->ee_block+j] = fs_block_num+j;
432 extent++;
451 /* The extent entries immediately follow the header, so add 1 to the pointer
452 * and cast it to an extent pointer.
478 critical_error("extent header has unexpected magic value 0x%4.4x\n",
565 critical_error("Non-extent based directory is too big!\n");