Home
last modified time | relevance | path

Searched refs:splice (Results 1 – 6 of 6) sorted by relevance

/fs/btrfs/
Dordered-data.c629 LIST_HEAD(splice); in btrfs_wait_ordered_extents()
638 list_splice_init(&root->ordered_extents, &splice); in btrfs_wait_ordered_extents()
639 while (!list_empty(&splice) && nr) { in btrfs_wait_ordered_extents()
640 ordered = list_first_entry(&splice, struct btrfs_ordered_extent, in btrfs_wait_ordered_extents()
667 list_splice_tail(&splice, &root->ordered_extents); in btrfs_wait_ordered_extents()
685 struct list_head splice; in btrfs_wait_ordered_roots() local
688 INIT_LIST_HEAD(&splice); in btrfs_wait_ordered_roots()
692 list_splice_init(&fs_info->ordered_roots, &splice); in btrfs_wait_ordered_roots()
693 while (!list_empty(&splice) && nr) { in btrfs_wait_ordered_roots()
694 root = list_first_entry(&splice, struct btrfs_root, in btrfs_wait_ordered_roots()
[all …]
Ddisk-io.c4677 struct list_head splice; in btrfs_destroy_all_ordered_extents() local
4679 INIT_LIST_HEAD(&splice); in btrfs_destroy_all_ordered_extents()
4682 list_splice_init(&fs_info->ordered_roots, &splice); in btrfs_destroy_all_ordered_extents()
4683 while (!list_empty(&splice)) { in btrfs_destroy_all_ordered_extents()
4684 root = list_first_entry(&splice, struct btrfs_root, in btrfs_destroy_all_ordered_extents()
4789 struct list_head splice; in btrfs_destroy_delalloc_inodes() local
4791 INIT_LIST_HEAD(&splice); in btrfs_destroy_delalloc_inodes()
4794 list_splice_init(&root->delalloc_inodes, &splice); in btrfs_destroy_delalloc_inodes()
4796 while (!list_empty(&splice)) { in btrfs_destroy_delalloc_inodes()
4798 btrfs_inode = list_first_entry(&splice, struct btrfs_inode, in btrfs_destroy_delalloc_inodes()
[all …]
Dinode.c10077 struct list_head splice; in start_delalloc_inodes() local
10082 INIT_LIST_HEAD(&splice); in start_delalloc_inodes()
10086 list_splice_init(&root->delalloc_inodes, &splice); in start_delalloc_inodes()
10087 while (!list_empty(&splice)) { in start_delalloc_inodes()
10088 binode = list_entry(splice.next, struct btrfs_inode, in start_delalloc_inodes()
10136 if (!list_empty(&splice)) { in start_delalloc_inodes()
10138 list_splice_tail(&splice, &root->delalloc_inodes); in start_delalloc_inodes()
10171 struct list_head splice; in btrfs_start_delalloc_roots() local
10177 INIT_LIST_HEAD(&splice); in btrfs_start_delalloc_roots()
10181 list_splice_init(&fs_info->delalloc_roots, &splice); in btrfs_start_delalloc_roots()
[all …]
/fs/
DMakefile16 pnode.o splice.o sync.o utimes.o d_path.o \
Dread_write.c1473 bool splice = flags & COPY_FILE_SPLICE; in vfs_copy_file_range() local
1501 if (!splice && file_out->f_op->copy_file_range) { in vfs_copy_file_range()
1508 if (!splice && file_in->f_op->remap_file_range && in vfs_copy_file_range()
Dsplice.c1332 SYSCALL_DEFINE6(splice, int, fd_in, loff_t __user *, off_in, in SYSCALL_DEFINE6() argument