diff options
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/cd9660/cd9660_vfsops.c | 8 | ||||
-rw-r--r-- | sys/fs/cd9660/cd9660_vnops.c | 6 | ||||
-rw-r--r-- | sys/fs/deadfs/dead_vnops.c | 2 | ||||
-rw-r--r-- | sys/fs/fifofs/fifo_vnops.c | 2 | ||||
-rw-r--r-- | sys/fs/specfs/spec_vnops.c | 2 |
5 files changed, 10 insertions, 10 deletions
diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c index 4ec27d6..74608a6 100644 --- a/sys/fs/cd9660/cd9660_vfsops.c +++ b/sys/fs/cd9660/cd9660_vfsops.c @@ -588,7 +588,7 @@ cd9660_root(mp, vpp) /* * Get filesystem statistics. */ -int +static int cd9660_statfs(mp, sbp, td) struct mount *mp; register struct statfs *sbp; @@ -631,7 +631,7 @@ struct ifid { }; /* ARGSUSED */ -int +static int cd9660_fhtovp(mp, fhp, vpp) register struct mount *mp; struct fid *fhp; @@ -661,7 +661,7 @@ cd9660_fhtovp(mp, fhp, vpp) return (0); } -int +static int cd9660_vget(mp, ino, flags, vpp) struct mount *mp; ino_t ino; @@ -882,7 +882,7 @@ cd9660_vget_internal(mp, ino, flags, vpp, relocated, isodir) * Vnode pointer to File handle */ /* ARGSUSED */ -int +static int cd9660_vptofh(vp, fhp) struct vnode *vp; struct fid *fhp; diff --git a/sys/fs/cd9660/cd9660_vnops.c b/sys/fs/cd9660/cd9660_vnops.c index 6899db7..dfa9486 100644 --- a/sys/fs/cd9660/cd9660_vnops.c +++ b/sys/fs/cd9660/cd9660_vnops.c @@ -78,7 +78,7 @@ static int cd9660_strategy(struct vop_strategy_args *); /* * Setattr call. Only allowed for block and character special devices. */ -int +static int cd9660_setattr(ap) struct vop_setattr_args /* { struct vnodeop_desc *a_desc; @@ -335,7 +335,7 @@ struct isoreaddir { int ncookies; }; -int +static int iso_uiodir(idp,dp,off) struct isoreaddir *idp; struct dirent *dp; @@ -367,7 +367,7 @@ iso_uiodir(idp,dp,off) return (0); } -int +static int iso_shipdir(idp) struct isoreaddir *idp; { diff --git a/sys/fs/deadfs/dead_vnops.c b/sys/fs/deadfs/dead_vnops.c index 3245d90..9678379 100644 --- a/sys/fs/deadfs/dead_vnops.c +++ b/sys/fs/deadfs/dead_vnops.c @@ -240,7 +240,7 @@ dead_bmap(ap) * We have to wait during times when the vnode is * in a state of change. */ -int +static int chkvnlock(vp) register struct vnode *vp; { diff --git a/sys/fs/fifofs/fifo_vnops.c b/sys/fs/fifofs/fifo_vnops.c index a7d2f3e..7292e56 100644 --- a/sys/fs/fifofs/fifo_vnops.c +++ b/sys/fs/fifofs/fifo_vnops.c @@ -571,7 +571,7 @@ fifo_print(ap) /* * Return POSIX pathconf information applicable to fifo's. */ -int +static int fifo_pathconf(ap) struct vop_pathconf_args /* { struct vnode *a_vp; diff --git a/sys/fs/specfs/spec_vnops.c b/sys/fs/specfs/spec_vnops.c index b1575c1..20d44c6 100644 --- a/sys/fs/specfs/spec_vnops.c +++ b/sys/fs/specfs/spec_vnops.c @@ -49,12 +49,12 @@ #include <sys/fcntl.h> #include <sys/vmmeter.h> #include <sys/tty.h> - #include <vm/vm.h> #include <vm/vm_object.h> #include <vm/vm_page.h> #include <vm/vm_pager.h> + static int spec_advlock(struct vop_advlock_args *); static int spec_bmap(struct vop_bmap_args *); static int spec_close(struct vop_close_args *); |