Home
last modified time | relevance | path

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

/linux-2.6.39/fs/btrfs/
Dordered-data.c469 struct list_head splice; in btrfs_wait_ordered_extents() local
474 INIT_LIST_HEAD(&splice); in btrfs_wait_ordered_extents()
477 list_splice_init(&root->fs_info->ordered_extents, &splice); in btrfs_wait_ordered_extents()
478 while (!list_empty(&splice)) { in btrfs_wait_ordered_extents()
479 cur = splice.next; in btrfs_wait_ordered_extents()
532 struct list_head splice; in btrfs_run_ordered_operations() local
534 INIT_LIST_HEAD(&splice); in btrfs_run_ordered_operations()
539 list_splice_init(&root->fs_info->ordered_operations, &splice); in btrfs_run_ordered_operations()
541 while (!list_empty(&splice)) { in btrfs_run_ordered_operations()
542 btrfs_inode = list_entry(splice.next, struct btrfs_inode, in btrfs_run_ordered_operations()
Ddisk-io.c2756 struct list_head splice; in btrfs_destroy_ordered_operations() local
2758 INIT_LIST_HEAD(&splice); in btrfs_destroy_ordered_operations()
2763 list_splice_init(&root->fs_info->ordered_operations, &splice); in btrfs_destroy_ordered_operations()
2764 while (!list_empty(&splice)) { in btrfs_destroy_ordered_operations()
2765 btrfs_inode = list_entry(splice.next, struct btrfs_inode, in btrfs_destroy_ordered_operations()
2781 struct list_head splice; in btrfs_destroy_ordered_extents() local
2785 INIT_LIST_HEAD(&splice); in btrfs_destroy_ordered_extents()
2789 list_splice_init(&root->fs_info->ordered_extents, &splice); in btrfs_destroy_ordered_extents()
2790 while (!list_empty(&splice)) { in btrfs_destroy_ordered_extents()
2791 ordered = list_entry(splice.next, struct btrfs_ordered_extent, in btrfs_destroy_ordered_extents()
[all …]
/linux-2.6.39/net/rds/
Dib_rdma.c537 struct xlist_head splice; in xlist_append_to_list() local
541 splice.next = NULL; in xlist_append_to_list()
542 xlist_splice(xlist, &splice); in xlist_append_to_list()
543 cur = splice.next; in xlist_append_to_list()
/linux-2.6.39/fs/
DMakefile13 pnode.o drop_caches.o splice.o sync.o utimes.o \
Dsplice.c1679 SYSCALL_DEFINE6(splice, int, fd_in, loff_t __user *, off_in, in SYSCALL_DEFINE6() argument
/linux-2.6.39/arch/powerpc/include/asm/
Dsystbl.h289 SYSCALL_SPU(splice)
/linux-2.6.39/arch/parisc/kernel/
Dsyscall_table.S392 ENTRY_SAME(splice)
/linux-2.6.39/Documentation/filesystems/
Dvfs.txt833 splice_write: called by the VFS to splice data from a pipe to a file. This
834 method is used by the splice(2) system call
836 splice_read: called by the VFS to splice data from file to a pipe. This
837 method is used by the splice(2) system call
/linux-2.6.39/tools/perf/
Ddesign.txt405 Future work will include a splice() interface to the ring-buffer.