diff options
| author | Rick Macklem <rmacklem@FreeBSD.org> | 2019-07-25 05:46:16 +0000 |
|---|---|---|
| committer | Rick Macklem <rmacklem@FreeBSD.org> | 2019-07-25 05:46:16 +0000 |
| commit | bbbbeca3e9a31483f5a24b81cd9426a36085e75e (patch) | |
| tree | c3a2167140c061b34660089301d37a4b0586b854 /sys/kern/vnode_if.src | |
| parent | ab8cabb1ca9dbff39da55b17d8810a3bcefc6c80 (diff) | |
Notes
Diffstat (limited to 'sys/kern/vnode_if.src')
| -rw-r--r-- | sys/kern/vnode_if.src | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sys/kern/vnode_if.src b/sys/kern/vnode_if.src index 68fa84079af6..dc0c08424ca9 100644 --- a/sys/kern/vnode_if.src +++ b/sys/kern/vnode_if.src @@ -718,6 +718,22 @@ vop_fdatasync { }; +%% copy_file_range invp U U U +%% copy_file_range outvp U U U + +vop_copy_file_range { + IN struct vnode *invp; + INOUT off_t *inoffp; + IN struct vnode *outvp; + INOUT off_t *outoffp; + INOUT size_t *lenp; + IN unsigned int flags; + IN struct ucred *incred; + IN struct ucred *outcred; + IN struct thread *fsizetd; +}; + + # The VOPs below are spares at the end of the table to allow new VOPs to be # added in stable branches without breaking the KBI. New VOPs in HEAD should # be added above these spares. When merging a new VOP to a stable branch, |
