Home
last modified time | relevance | path

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

/fs/btrfs/
Dordered-data.c523 LIST_HEAD(splice); in btrfs_wait_ordered_extents()
532 list_splice_init(&root->ordered_extents, &splice); in btrfs_wait_ordered_extents()
533 while (!list_empty(&splice) && nr) { in btrfs_wait_ordered_extents()
534 ordered = list_first_entry(&splice, struct btrfs_ordered_extent, in btrfs_wait_ordered_extents()
561 list_splice_tail(&splice, &root->ordered_extents); in btrfs_wait_ordered_extents()
579 struct list_head splice; in btrfs_wait_ordered_roots() local
583 INIT_LIST_HEAD(&splice); in btrfs_wait_ordered_roots()
587 list_splice_init(&fs_info->ordered_roots, &splice); in btrfs_wait_ordered_roots()
588 while (!list_empty(&splice) && nr) { in btrfs_wait_ordered_roots()
589 root = list_first_entry(&splice, struct btrfs_root, in btrfs_wait_ordered_roots()
[all …]
Ddisk-io.c4205 struct list_head splice; in btrfs_destroy_all_ordered_extents() local
4207 INIT_LIST_HEAD(&splice); in btrfs_destroy_all_ordered_extents()
4210 list_splice_init(&fs_info->ordered_roots, &splice); in btrfs_destroy_all_ordered_extents()
4211 while (!list_empty(&splice)) { in btrfs_destroy_all_ordered_extents()
4212 root = list_first_entry(&splice, struct btrfs_root, in btrfs_destroy_all_ordered_extents()
4298 struct list_head splice; in btrfs_destroy_delalloc_inodes() local
4300 INIT_LIST_HEAD(&splice); in btrfs_destroy_delalloc_inodes()
4303 list_splice_init(&root->delalloc_inodes, &splice); in btrfs_destroy_delalloc_inodes()
4305 while (!list_empty(&splice)) { in btrfs_destroy_delalloc_inodes()
4307 btrfs_inode = list_first_entry(&splice, struct btrfs_inode, in btrfs_destroy_delalloc_inodes()
[all …]
Dinode.c10146 struct list_head splice; in start_delalloc_inodes() local
10150 INIT_LIST_HEAD(&splice); in start_delalloc_inodes()
10154 list_splice_init(&root->delalloc_inodes, &splice); in start_delalloc_inodes()
10155 while (!list_empty(&splice)) { in start_delalloc_inodes()
10156 binode = list_entry(splice.next, struct btrfs_inode, in start_delalloc_inodes()
10195 if (!list_empty(&splice)) { in start_delalloc_inodes()
10197 list_splice_tail(&splice, &root->delalloc_inodes); in start_delalloc_inodes()
10221 struct list_head splice; in btrfs_start_delalloc_roots() local
10227 INIT_LIST_HEAD(&splice); in btrfs_start_delalloc_roots()
10231 list_splice_init(&fs_info->delalloc_roots, &splice); in btrfs_start_delalloc_roots()
[all …]
/fs/
DMakefile14 pnode.o splice.o sync.o utimes.o d_path.o \
Dsplice.c1413 SYSCALL_DEFINE6(splice, int, fd_in, loff_t __user *, off_in, in SYSCALL_DEFINE6() argument