Home
last modified time | relevance | path

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

/fs/btrfs/
Dordered-data.c665 struct list_head splice, works; in btrfs_wait_ordered_extents() local
669 INIT_LIST_HEAD(&splice); in btrfs_wait_ordered_extents()
674 list_splice_init(&root->ordered_extents, &splice); in btrfs_wait_ordered_extents()
675 while (!list_empty(&splice) && nr) { in btrfs_wait_ordered_extents()
676 ordered = list_first_entry(&splice, struct btrfs_ordered_extent, in btrfs_wait_ordered_extents()
696 list_splice_tail(&splice, &root->ordered_extents); in btrfs_wait_ordered_extents()
713 struct list_head splice; in btrfs_wait_ordered_roots() local
716 INIT_LIST_HEAD(&splice); in btrfs_wait_ordered_roots()
720 list_splice_init(&fs_info->ordered_roots, &splice); in btrfs_wait_ordered_roots()
721 while (!list_empty(&splice) && nr) { in btrfs_wait_ordered_roots()
[all …]
Ddisk-io.c4108 struct list_head splice; in btrfs_destroy_all_ordered_extents() local
4110 INIT_LIST_HEAD(&splice); in btrfs_destroy_all_ordered_extents()
4113 list_splice_init(&fs_info->ordered_roots, &splice); in btrfs_destroy_all_ordered_extents()
4114 while (!list_empty(&splice)) { in btrfs_destroy_all_ordered_extents()
4115 root = list_first_entry(&splice, struct btrfs_root, in btrfs_destroy_all_ordered_extents()
4208 struct list_head splice; in btrfs_destroy_delalloc_inodes() local
4210 INIT_LIST_HEAD(&splice); in btrfs_destroy_delalloc_inodes()
4213 list_splice_init(&root->delalloc_inodes, &splice); in btrfs_destroy_delalloc_inodes()
4215 while (!list_empty(&splice)) { in btrfs_destroy_delalloc_inodes()
4216 btrfs_inode = list_first_entry(&splice, struct btrfs_inode, in btrfs_destroy_delalloc_inodes()
[all …]
Dinode.c9609 struct list_head splice; in __start_delalloc_inodes() local
9613 INIT_LIST_HEAD(&splice); in __start_delalloc_inodes()
9617 list_splice_init(&root->delalloc_inodes, &splice); in __start_delalloc_inodes()
9618 while (!list_empty(&splice)) { in __start_delalloc_inodes()
9619 binode = list_entry(splice.next, struct btrfs_inode, in __start_delalloc_inodes()
9657 if (!list_empty_careful(&splice)) { in __start_delalloc_inodes()
9659 list_splice_tail(&splice, &root->delalloc_inodes); in __start_delalloc_inodes()
9696 struct list_head splice; in btrfs_start_delalloc_roots() local
9702 INIT_LIST_HEAD(&splice); in btrfs_start_delalloc_roots()
9706 list_splice_init(&fs_info->delalloc_roots, &splice); in btrfs_start_delalloc_roots()
[all …]
/fs/
DMakefile13 pnode.o splice.o sync.o utimes.o \
Dsplice.c1690 SYSCALL_DEFINE6(splice, int, fd_in, loff_t __user *, off_in, in SYSCALL_DEFINE6() argument