summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_mount.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/vfs_mount.c')
-rw-r--r--sys/kern/vfs_mount.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c
index a98e1a4e563e..166f05e28546 100644
--- a/sys/kern/vfs_mount.c
+++ b/sys/kern/vfs_mount.c
@@ -311,9 +311,9 @@ int
nmount(td, uap)
struct thread *td;
struct nmount_args /* {
- syscallarg(struct iovec *) iovp;
- syscallarg(unsigned int) iovcnt;
- syscallarg(int) flags;
+ struct iovec *iovp;
+ unsigned int iovcnt;
+ int flags;
} */ *uap;
{
struct uio auio;
@@ -794,10 +794,10 @@ int
mount(td, uap)
struct thread *td;
struct mount_args /* {
- syscallarg(char *) type;
- syscallarg(char *) path;
- syscallarg(int) flags;
- syscallarg(caddr_t) data;
+ char *type;
+ char *path;
+ int flags;
+ caddr_t data;
} */ *uap;
{
char *fstype;
@@ -1189,8 +1189,8 @@ int
unmount(td, uap)
struct thread *td;
register struct unmount_args /* {
- syscallarg(char *) path;
- syscallarg(int) flags;
+ char *path;
+ int flags;
} */ *uap;
{
register struct vnode *vp;