^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 1) ================
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 2) splice and pipes
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 3) ================
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 4)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 5) splice API
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 6) ==========
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 7)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 8) splice is a method for moving blocks of data around inside the kernel,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 9) without continually transferring them between the kernel and user space.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) .. kernel-doc:: fs/splice.c
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) pipes API
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) =========
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) Pipe interfaces are all for in-kernel (builtin image) use. They are not
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) exported for use by modules.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) .. kernel-doc:: include/linux/pipe_fs_i.h
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) :internal:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) .. kernel-doc:: fs/pipe.c