summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_mount.c
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2002-12-14 02:07:32 +0000
committeralfred <alfred@FreeBSD.org>2002-12-14 02:07:32 +0000
commit7b7fa13344173b413419fb2b0a198f7a33638777 (patch)
treee60840241d81539a76f03860023feafacd9d6378 /sys/kern/vfs_mount.c
parentd070c0a52d25d76fe9298c4217dc07e9439decca (diff)
downloadFreeBSD-src-7b7fa13344173b413419fb2b0a198f7a33638777.zip
FreeBSD-src-7b7fa13344173b413419fb2b0a198f7a33638777.tar.gz
remove syscallarg().
Suggested by: peter
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 a98e1a4..166f05e 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;
OpenPOWER on IntegriCloud