| /linux/fs/xfs/ |
| H A D | xfs_discard.c | 84 struct xfs_busy_extents *extents = in xfs_discard_endio_work() local 87 xfs_extent_busy_clear(&extents->extent_list, false); in xfs_discard_endio_work() 88 kfree(extents->owner); in xfs_discard_endio_work() 99 struct xfs_busy_extents *extents = bio->bi_private; in xfs_discard_endio() local 101 INIT_WORK(&extents->endio_work, xfs_discard_endio_work); in xfs_discard_endio() 102 queue_work(xfs_discard_wq, &extents->endio_work); in xfs_discard_endio() 114 struct xfs_busy_extents *extents) in xfs_discard_extents() argument 121 list_for_each_entry(busyp, &extents->extent_list, list) { in xfs_discard_extents() 135 bio->bi_private = extents; in xfs_discard_extents() 139 xfs_discard_endio_work(&extents->endio_work); in xfs_discard_extents() [all …]
|
| H A D | Kconfig | 13 Btrees (directories, extents, free space) to aid both performance
|
| /linux/Documentation/filesystems/ |
| H A D | fiemap.rst | 9 returns a list of extents. 37 that can be used to return extents. If fm_extent_count is zero, then the 38 fm_extents[] array is ignored (no extents will be returned), and the 39 fm_mapped_extents count will hold the number of extents needed in 46 If this flag is set, the kernel will sync the file before mapping extents. 49 If this flag is set, the extents returned will describe the inodes 53 This flag requests caching of the extents. 61 fm_extent_count. The number of extents mapped by kernel will be 64 the maximum number of extents that can be mapped in the fm_extent[] 77 for an extents logical offset to start before the request or its logical [all …]
|
| H A D | omfs.rst | 49 and extents. Each sysblock has a header containing CRCs of the entire 100 __be32 e_extent_count; /* total # extents in this table */
|
| /linux/kernel/ |
| H A D | user_namespace.c | 282 map_id_range_down_max(unsigned extents, struct uid_gid_map *map, u32 id, u32 count) in map_id_range_down_max() argument 290 return bsearch(&key, map->forward, extents, in map_id_range_down_max() 300 map_id_range_down_base(unsigned extents, struct uid_gid_map *map, u32 id, u32 count) in map_id_range_down_base() argument 308 for (idx = 0; idx < extents; idx++) { in map_id_range_down_base() 321 unsigned extents = map->nr_extents; in map_id_range_down() local 324 if (extents <= UID_GID_MAP_MAX_BASE_EXTENTS) in map_id_range_down() 325 extent = map_id_range_down_base(extents, map, id, count); in map_id_range_down() 327 extent = map_id_range_down_max(extents, map, id, count); in map_id_range_down() 349 map_id_range_up_base(unsigned extents, struct uid_gid_map *map, u32 id, u32 count) in map_id_range_up_base() argument 357 for (idx = 0; idx < extents; idx++) { in map_id_range_up_base() [all …]
|
| /linux/Documentation/admin-guide/device-mapper/ |
| H A D | linear.rst | 51 my $extents = int($dev_size / $extent_size) - 54 while ($extents > 0) { 56 $extents--; 58 my $this_offset = $extents * $extent_size;
|
| /linux/fs/efs/ |
| H A D | inode.c | 133 extent_copy(&(efs_inode->di_u.di_extents[i]), &(in->extents[i])); in efs_iget() 134 if (i < in->numextents && in->extents[i].cooked.ex_magic != 0) { in efs_iget() 214 if ((result = efs_extent_check(&in->extents[last], block, sb))) in efs_map_block() 231 if ((result = efs_extent_check(&in->extents[cur], block, sb))) { in efs_map_block() 243 direxts = in->extents[0].cooked.ex_offset; in efs_map_block() 258 ibase += in->extents[dirext].cooked.ex_length * in efs_map_block() 271 iblock = sb->fs_start + in->extents[dirext].cooked.ex_bn + in efs_map_block()
|
| H A D | efs.h | 77 efs_extent extents[EFS_DIRECTEXTENTS]; member
|
| /linux/Documentation/filesystems/ext4/ |
| H A D | ifork.rst | 15 string is less than 60 bytes long. Otherwise, either extents or block 48 requires an indirect block to map all 1,000 entries; with extents, the 53 must have the extents flag (0x80000) flag set for this feature to be in 64 stored in ``inode.i_block``, which allows for the first four extents to 168 the 32-bit checksum is inserted into this space. The 4 extents in the
|
| H A D | blocks.rst | 141 Note: Files not using extents (i.e. files using block maps) must be 142 placed within the first 2^32 blocks of a filesystem. Files with extents
|
| H A D | verity.rst | 35 Verity inodes have EXT4_VERITY_FL set, and they must use extents, i.e.
|
| H A D | checksums.rst | 54 - UUID + inode number + inode generation + all valid extents + HTREE tail.
|
| /linux/fs/nfsd/ |
| H A D | blocklayout.c | 134 bl = kzalloc_flex(*bl, extents, nr_extents_max); in nfsd4_block_proc_layoutget() 141 struct pnfs_block_extent *bex = bl->extents + i; in nfsd4_block_proc_layoutget() 159 first_bex = bl->extents; in nfsd4_block_proc_layoutget() 160 last_bex = bl->extents + bl->nr_extents - 1; in nfsd4_block_proc_layoutget()
|
| H A D | blocklayoutxdr.h | 35 struct pnfs_block_extent extents[] __counted_by(nr_extents);
|
| H A D | blocklayoutxdr.c | 46 const struct pnfs_block_extent *bex = bl->extents + i; in nfsd4_block_encode_layoutget()
|
| /linux/drivers/md/bcache/ |
| H A D | Makefile | 5 bcache-y := alloc.o bset.o btree.o debug.o extents.o io.o\
|
| /linux/fs/nfs/blocklayout/ |
| H A D | blocklayout.c | 610 struct layout_verification *lv, struct list_head *extents, in bl_alloc_extent() argument 655 list_add_tail(&be->be_list, extents); in bl_alloc_extent() 683 LIST_HEAD(extents); in bl_alloc_lseg() 713 status = bl_alloc_extent(&xdr, lo, &lv, &extents, gfp_mask); in bl_alloc_lseg() 731 while (!list_empty(&extents)) { in bl_alloc_lseg() 733 list_first_entry(&extents, struct pnfs_block_extent, in bl_alloc_lseg()
|
| /linux/fs/ext4/ |
| H A D | Makefile | 8 ext4-y := balloc.o bitmap.o block_validity.o dir.o ext4_jbd2.o extents.o \
|
| /linux/fs/btrfs/ |
| H A D | Kconfig | 22 Btrfs is a general purpose copy-on-write filesystem with extents, 107 - raid-stripe-tree - additional mapping of extents to devices to
|
| H A D | tree-log.c | 5337 LIST_HEAD(extents); in btrfs_log_changed_extents() 5369 list_add_tail(&em->list, &extents); in btrfs_log_changed_extents() 5373 list_sort(NULL, &extents, extent_cmp); in btrfs_log_changed_extents() 5375 while (!list_empty(&extents)) { in btrfs_log_changed_extents() 5376 em = list_first_entry(&extents, struct extent_map, list); in btrfs_log_changed_extents() 5397 WARN_ON(!list_empty(&extents)); in btrfs_log_changed_extents()
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-fs-ext4 | 22 The maximum number of extents the multiblock allocator 29 The minimum number of extents the multiblock allocator
|
| /linux/fs/smb/client/ |
| H A D | smb2pdu.h | 178 struct smb3_extents extents[]; member
|
| /linux/Documentation/admin-guide/blockdev/ |
| H A D | zoned_loop.rst | 104 (extents), as when enabled, this can significantly reduce 105 the number of data extents needed to for a file data
|
| /linux/fs/hfsplus/ |
| H A D | extents.c | 405 blocks += be32_to_cpu(fork->extents[i].block_count); in hfsplus_free_fork() 407 res = hfsplus_free_extents(sb, fork->extents, blocks, blocks); in hfsplus_free_fork()
|
| /linux/Documentation/filesystems/iomap/ |
| H A D | operations.rst | 110 and no support for unwritten extents. 583 write covers multiple extents, meaning that it is not possible to issue
|