Home
last modified time | relevance | path

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

/linux-4.19.296/fs/btrfs/
Dordered-data.c544 LIST_HEAD(splice); in btrfs_wait_ordered_extents()
553 list_splice_init(&root->ordered_extents, &splice); in btrfs_wait_ordered_extents()
554 while (!list_empty(&splice) && nr) { in btrfs_wait_ordered_extents()
555 ordered = list_first_entry(&splice, struct btrfs_ordered_extent, in btrfs_wait_ordered_extents()
583 list_splice_tail(&splice, &root->ordered_extents); in btrfs_wait_ordered_extents()
601 struct list_head splice; in btrfs_wait_ordered_roots() local
605 INIT_LIST_HEAD(&splice); in btrfs_wait_ordered_roots()
609 list_splice_init(&fs_info->ordered_roots, &splice); in btrfs_wait_ordered_roots()
610 while (!list_empty(&splice) && nr) { in btrfs_wait_ordered_roots()
611 root = list_first_entry(&splice, struct btrfs_root, in btrfs_wait_ordered_roots()
[all …]
Ddisk-io.c4227 struct list_head splice; in btrfs_destroy_all_ordered_extents() local
4229 INIT_LIST_HEAD(&splice); in btrfs_destroy_all_ordered_extents()
4232 list_splice_init(&fs_info->ordered_roots, &splice); in btrfs_destroy_all_ordered_extents()
4233 while (!list_empty(&splice)) { in btrfs_destroy_all_ordered_extents()
4234 root = list_first_entry(&splice, struct btrfs_root, in btrfs_destroy_all_ordered_extents()
4331 struct list_head splice; in btrfs_destroy_delalloc_inodes() local
4333 INIT_LIST_HEAD(&splice); in btrfs_destroy_delalloc_inodes()
4336 list_splice_init(&root->delalloc_inodes, &splice); in btrfs_destroy_delalloc_inodes()
4338 while (!list_empty(&splice)) { in btrfs_destroy_delalloc_inodes()
4340 btrfs_inode = list_first_entry(&splice, struct btrfs_inode, in btrfs_destroy_delalloc_inodes()
[all …]
Dinode.c10167 struct list_head splice; in start_delalloc_inodes() local
10171 INIT_LIST_HEAD(&splice); in start_delalloc_inodes()
10175 list_splice_init(&root->delalloc_inodes, &splice); in start_delalloc_inodes()
10176 while (!list_empty(&splice)) { in start_delalloc_inodes()
10177 binode = list_entry(splice.next, struct btrfs_inode, in start_delalloc_inodes()
10216 if (!list_empty(&splice)) { in start_delalloc_inodes()
10218 list_splice_tail(&splice, &root->delalloc_inodes); in start_delalloc_inodes()
10242 struct list_head splice; in btrfs_start_delalloc_roots() local
10248 INIT_LIST_HEAD(&splice); in btrfs_start_delalloc_roots()
10252 list_splice_init(&fs_info->delalloc_roots, &splice); in btrfs_start_delalloc_roots()
[all …]
/linux-4.19.296/fs/
DMakefile14 pnode.o splice.o sync.o utimes.o d_path.o \
Dsplice.c1408 SYSCALL_DEFINE6(splice, int, fd_in, loff_t __user *, off_in, in SYSCALL_DEFINE6() argument