summaryrefslogtreecommitdiff
path: root/sys/miscfs
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1998-02-08 22:41:53 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1998-02-08 22:41:53 +0000
commit7be79d1dabf4aa2c866b352e2a4ab286a403e5d6 (patch)
treed445472670515452a4a239cef652c9f1b617f841 /sys/miscfs
parent5f824803e29da9efcd793a89ec59fe8a8297a269 (diff)
Updates to match type changes in syscall tables
Diffstat (limited to 'sys/miscfs')
-rw-r--r--sys/miscfs/fdesc/fdesc_vfsops.c6
-rw-r--r--sys/miscfs/kernfs/kernfs_vfsops.c6
-rw-r--r--sys/miscfs/nullfs/null_vfsops.c6
-rw-r--r--sys/miscfs/portal/portal_vfsops.c6
-rw-r--r--sys/miscfs/procfs/procfs_vfsops.c6
-rw-r--r--sys/miscfs/umapfs/umap_vfsops.c6
-rw-r--r--sys/miscfs/union/union_vfsops.c6
7 files changed, 21 insertions, 21 deletions
diff --git a/sys/miscfs/fdesc/fdesc_vfsops.c b/sys/miscfs/fdesc/fdesc_vfsops.c
index 34801f8edb6..358ad6892ee 100644
--- a/sys/miscfs/fdesc/fdesc_vfsops.c
+++ b/sys/miscfs/fdesc/fdesc_vfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fdesc_vfsops.c,v 1.5 1997/11/06 05:58:32 csapuntz Exp $ */
+/* $OpenBSD: fdesc_vfsops.c,v 1.6 1998/02/08 22:41:37 tholo Exp $ */
/* $NetBSD: fdesc_vfsops.c,v 1.21 1996/02/09 22:40:07 christos Exp $ */
/*
@@ -58,7 +58,7 @@
#include <sys/malloc.h>
#include <miscfs/fdesc/fdesc.h>
-int fdesc_mount __P((struct mount *, char *, caddr_t,
+int fdesc_mount __P((struct mount *, const char *, caddr_t,
struct nameidata *, struct proc *));
int fdesc_start __P((struct mount *, int, struct proc *));
int fdesc_unmount __P((struct mount *, int, struct proc *));
@@ -78,7 +78,7 @@ int fdesc_vptofh __P((struct vnode *, struct fid *));
int
fdesc_mount(mp, path, data, ndp, p)
struct mount *mp;
- char *path;
+ const char *path;
caddr_t data;
struct nameidata *ndp;
struct proc *p;
diff --git a/sys/miscfs/kernfs/kernfs_vfsops.c b/sys/miscfs/kernfs/kernfs_vfsops.c
index 62a3225db50..639e0059001 100644
--- a/sys/miscfs/kernfs/kernfs_vfsops.c
+++ b/sys/miscfs/kernfs/kernfs_vfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kernfs_vfsops.c,v 1.8 1997/11/06 05:58:35 csapuntz Exp $ */
+/* $OpenBSD: kernfs_vfsops.c,v 1.9 1998/02/08 22:41:38 tholo Exp $ */
/* $NetBSD: kernfs_vfsops.c,v 1.26 1996/04/22 01:42:27 christos Exp $ */
/*
@@ -61,7 +61,7 @@ dev_t rrootdev = NODEV;
int kernfs_init __P((struct vfsconf *));
void kernfs_get_rrootdev __P((void));
-int kernfs_mount __P((struct mount *, char *, caddr_t, struct nameidata *,
+int kernfs_mount __P((struct mount *, const char *, caddr_t, struct nameidata *,
struct proc *));
int kernfs_start __P((struct mount *, int, struct proc *));
int kernfs_unmount __P((struct mount *, int, struct proc *));
@@ -105,7 +105,7 @@ kernfs_get_rrootdev()
int
kernfs_mount(mp, path, data, ndp, p)
struct mount *mp;
- char *path;
+ const char *path;
caddr_t data;
struct nameidata *ndp;
struct proc *p;
diff --git a/sys/miscfs/nullfs/null_vfsops.c b/sys/miscfs/nullfs/null_vfsops.c
index 9b9c3459cab..6b852d03915 100644
--- a/sys/miscfs/nullfs/null_vfsops.c
+++ b/sys/miscfs/nullfs/null_vfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: null_vfsops.c,v 1.7 1997/11/06 05:58:40 csapuntz Exp $ */
+/* $OpenBSD: null_vfsops.c,v 1.8 1998/02/08 22:41:38 tholo Exp $ */
/* $NetBSD: null_vfsops.c,v 1.11 1996/05/10 22:50:56 jtk Exp $ */
/*
@@ -57,7 +57,7 @@
#include <sys/malloc.h>
#include <miscfs/nullfs/null.h>
-int nullfs_mount __P((struct mount *, char *, caddr_t,
+int nullfs_mount __P((struct mount *, const char *, caddr_t,
struct nameidata *, struct proc *));
int nullfs_start __P((struct mount *, int, struct proc *));
int nullfs_unmount __P((struct mount *, int, struct proc *));
@@ -76,7 +76,7 @@ int nullfs_vptofh __P((struct vnode *, struct fid *));
int
nullfs_mount(mp, path, data, ndp, p)
struct mount *mp;
- char *path;
+ const char *path;
caddr_t data;
struct nameidata *ndp;
struct proc *p;
diff --git a/sys/miscfs/portal/portal_vfsops.c b/sys/miscfs/portal/portal_vfsops.c
index b883d8dc06d..5e6cb876637 100644
--- a/sys/miscfs/portal/portal_vfsops.c
+++ b/sys/miscfs/portal/portal_vfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: portal_vfsops.c,v 1.5 1997/11/06 05:58:41 csapuntz Exp $ */
+/* $OpenBSD: portal_vfsops.c,v 1.6 1998/02/08 22:41:39 tholo Exp $ */
/* $NetBSD: portal_vfsops.c,v 1.14 1996/02/09 22:40:41 christos Exp $ */
/*
@@ -65,7 +65,7 @@
#define portal_init ((int (*) __P((struct vfsconf *)))nullop)
-int portal_mount __P((struct mount *, char *, caddr_t,
+int portal_mount __P((struct mount *, const char *, caddr_t,
struct nameidata *, struct proc *));
int portal_start __P((struct mount *, int, struct proc *));
int portal_unmount __P((struct mount *, int, struct proc *));
@@ -79,7 +79,7 @@ int portal_statfs __P((struct mount *, struct statfs *, struct proc *));
int
portal_mount(mp, path, data, ndp, p)
struct mount *mp;
- char *path;
+ const char *path;
caddr_t data;
struct nameidata *ndp;
struct proc *p;
diff --git a/sys/miscfs/procfs/procfs_vfsops.c b/sys/miscfs/procfs/procfs_vfsops.c
index 297323b8d94..c9bbc2751d8 100644
--- a/sys/miscfs/procfs/procfs_vfsops.c
+++ b/sys/miscfs/procfs/procfs_vfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: procfs_vfsops.c,v 1.7 1997/11/06 05:58:43 csapuntz Exp $ */
+/* $OpenBSD: procfs_vfsops.c,v 1.8 1998/02/08 22:41:40 tholo Exp $ */
/* $NetBSD: procfs_vfsops.c,v 1.25 1996/02/09 22:40:53 christos Exp $ */
/*
@@ -57,7 +57,7 @@
#include <miscfs/procfs/procfs.h>
#include <vm/vm.h> /* for PAGE_SIZE */
-int procfs_mount __P((struct mount *, char *, caddr_t,
+int procfs_mount __P((struct mount *, const char *, caddr_t,
struct nameidata *, struct proc *));
int procfs_start __P((struct mount *, int, struct proc *));
int procfs_unmount __P((struct mount *, int, struct proc *));
@@ -71,7 +71,7 @@ int procfs_statfs __P((struct mount *, struct statfs *, struct proc *));
int
procfs_mount(mp, path, data, ndp, p)
struct mount *mp;
- char *path;
+ const char *path;
caddr_t data;
struct nameidata *ndp;
struct proc *p;
diff --git a/sys/miscfs/umapfs/umap_vfsops.c b/sys/miscfs/umapfs/umap_vfsops.c
index 67cf09a0a70..584e27e0e3c 100644
--- a/sys/miscfs/umapfs/umap_vfsops.c
+++ b/sys/miscfs/umapfs/umap_vfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: umap_vfsops.c,v 1.11 1997/11/06 05:58:48 csapuntz Exp $ */
+/* $OpenBSD: umap_vfsops.c,v 1.12 1998/02/08 22:41:41 tholo Exp $ */
/* $NetBSD: umap_vfsops.c,v 1.9 1996/02/09 22:41:05 christos Exp $ */
/*
@@ -56,7 +56,7 @@
#include <sys/malloc.h>
#include <miscfs/umapfs/umap.h>
-int umapfs_mount __P((struct mount *, char *, caddr_t,
+int umapfs_mount __P((struct mount *, const char *, caddr_t,
struct nameidata *, struct proc *));
int umapfs_start __P((struct mount *, int, struct proc *));
int umapfs_unmount __P((struct mount *, int, struct proc *));
@@ -76,7 +76,7 @@ int umapfs_vptofh __P((struct vnode *, struct fid *));
int
umapfs_mount(mp, path, data, ndp, p)
struct mount *mp;
- char *path;
+ const char *path;
caddr_t data;
struct nameidata *ndp;
struct proc *p;
diff --git a/sys/miscfs/union/union_vfsops.c b/sys/miscfs/union/union_vfsops.c
index c92d96be7cd..8032397c2d0 100644
--- a/sys/miscfs/union/union_vfsops.c
+++ b/sys/miscfs/union/union_vfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: union_vfsops.c,v 1.7 1997/11/06 05:58:52 csapuntz Exp $ */
+/* $OpenBSD: union_vfsops.c,v 1.8 1998/02/08 22:41:42 tholo Exp $ */
/* $NetBSD: union_vfsops.c,v 1.10 1995/06/18 14:47:47 cgd Exp $ */
/*
@@ -59,7 +59,7 @@
#include <miscfs/union/union.h>
-int union_mount __P((struct mount *, char *, caddr_t, struct nameidata *,
+int union_mount __P((struct mount *, const char *, caddr_t, struct nameidata *,
struct proc *));
int union_start __P((struct mount *, int, struct proc *));
int union_unmount __P((struct mount *, int, struct proc *));
@@ -72,7 +72,7 @@ int union_statfs __P((struct mount *, struct statfs *, struct proc *));
int
union_mount(mp, path, data, ndp, p)
struct mount *mp;
- char *path;
+ const char *path;
caddr_t data;
struct nameidata *ndp;
struct proc *p;