Lines Matching refs:extent
100 * @flags: FIEMAP_EXTENT flags that describe this extent
102 * Called from file system ->fiemap callback. Will populate extent
104 * success, extent count on fieinfo is incremented.
107 * extent that will fit in user array.
115 struct fiemap_extent extent;
134 memset(&extent, 0, sizeof(extent));
135 extent.fe_logical = logical;
136 extent.fe_physical = phys;
137 extent.fe_length = len;
138 extent.fe_flags = flags;
141 if (copy_to_user(dest, &extent, sizeof(extent)))
350 * to make sure that extent at the front gets properly
359 * last extent
378 * map, and it wasn't the entire file, so add the extent
388 * are good to go, just add the extent to the fieinfo
399 * if size != 0 then we know we already have an extent
419 * soon as we find a hole that the last extent we found
433 /* If ret is 1 then we just hit the end of the extent array */