aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_extattr.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2001-11-02 17:59:23 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2001-11-02 17:59:23 +0000
commit06d133c4752d14f8fd058311f52ff3d13a5f4105 (patch)
tree65362f327c41767a3dc98a313cc916c71d862469 /sys/kern/vfs_extattr.c
parentc60693dbd3b03accf0e29a21b705d25265024a7d (diff)
downloadsrc-06d133c4752d14f8fd058311f52ff3d13a5f4105.tar.gz
src-06d133c4752d14f8fd058311f52ff3d13a5f4105.zip
Add nmount() stub function and regenerate the syscall-glue which should
not need to check in generated files.
Notes
Notes: svn path=/head/; revision=85891
Diffstat (limited to 'sys/kern/vfs_extattr.c')
-rw-r--r--sys/kern/vfs_extattr.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/sys/kern/vfs_extattr.c b/sys/kern/vfs_extattr.c
index f8397ab59bfb..21f2b1fff8b4 100644
--- a/sys/kern/vfs_extattr.c
+++ b/sys/kern/vfs_extattr.c
@@ -4164,3 +4164,24 @@ extattr_delete_fd(td, uap)
return (error);
}
+
+#ifndef _SYS_SYSPROTO_H_
+struct nmount_args {
+ struct iovec *iovp;
+ unsigned int iovcnt;
+ int flags;
+ };
+#endif
+/* ARGSUSED */
+int
+nmount(td, uap)
+ struct thread *td;
+ struct nmount_args /* {
+ syscallarg(struct iovec *) iovp;
+ syscallarg(unsigned int) iovcnt;
+ syscallarg(int) flags;
+ } */ *uap;
+{
+
+ return(EOPNOTSUPP);
+}