summaryrefslogtreecommitdiff
path: root/sys/sys
diff options
context:
space:
mode:
authorConrad Meyer <cem@FreeBSD.org>2020-11-17 19:51:47 +0000
committerConrad Meyer <cem@FreeBSD.org>2020-11-17 19:51:47 +0000
commitde774e422e7f8abf9d4c6084165c9de66f11b2de (patch)
treeff6397cf93c024779e9af0dbaec208c2b9098c82 /sys/sys
parent46a5f8837dff05f6581b908170aeecb811f1e95e (diff)
downloadsrc-test2-de774e422e7f8abf9d4c6084165c9de66f11b2de.tar.gz
src-test2-de774e422e7f8abf9d4c6084165c9de66f11b2de.zip
Notes
Diffstat (limited to 'sys/sys')
-rw-r--r--sys/sys/syscallsubr.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/sys/syscallsubr.h b/sys/sys/syscallsubr.h
index a226e98250b5..cc3134acce1f 100644
--- a/sys/sys/syscallsubr.h
+++ b/sys/sys/syscallsubr.h
@@ -140,6 +140,7 @@ int kern_fchownat(struct thread *td, int fd, const char *path,
enum uio_seg pathseg, int uid, int gid, int flag);
int kern_fcntl(struct thread *td, int fd, int cmd, intptr_t arg);
int kern_fcntl_freebsd(struct thread *td, int fd, int cmd, long arg);
+int kern_fhopen(struct thread *td, const struct fhandle *u_fhp, int flags);
int kern_fhstat(struct thread *td, fhandle_t fh, struct stat *buf);
int kern_fhstatfs(struct thread *td, fhandle_t fh, struct statfs *buf);
int kern_fpathconf(struct thread *td, int fd, int name, long *valuep);
@@ -153,6 +154,8 @@ int kern_futimens(struct thread *td, int fd, struct timespec *tptr,
enum uio_seg tptrseg);
int kern_getdirentries(struct thread *td, int fd, char *buf, size_t count,
off_t *basep, ssize_t *residp, enum uio_seg bufseg);
+int kern_getfhat(struct thread *td, int flags, int fd, const char *path,
+ enum uio_seg pathseg, fhandle_t *fhp, enum uio_seg fhseg);
int kern_getfsstat(struct thread *td, struct statfs **buf, size_t bufsize,
size_t *countp, enum uio_seg bufseg, int mode);
int kern_getitimer(struct thread *, u_int, struct itimerval *);