diff options
author | dg <dg@FreeBSD.org> | 1994-08-20 03:49:02 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1994-08-20 03:49:02 +0000 |
commit | c97639b9230d9c3f9032d935d7892c5b513c8814 (patch) | |
tree | f43f29ef28a2342dd7be499cf286557b75ae9f56 /sys/isofs | |
parent | 255b8baf81cdff10b66cd0893b98779e34305ff1 (diff) | |
download | FreeBSD-src-c97639b9230d9c3f9032d935d7892c5b513c8814.zip FreeBSD-src-c97639b9230d9c3f9032d935d7892c5b513c8814.tar.gz |
1) cleaned up after Garrett - fixed more redundant declarations, changed
use of timeout_t -> timeout_func_t in aha1542 and aha1742 drivers.
2) fix a bug in the portalfs that was uncovered by better prototyping -
specifically, the time must be converted from timeval to timespec
before storing in va_atime.
3) fixed/added some miscellaneous prototypes
Diffstat (limited to 'sys/isofs')
-rw-r--r-- | sys/isofs/cd9660/cd9660_vfsops.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index a4aeaaf..90e2679 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/cd9660/cd9660_vfsops.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_vfsops.c 8.3 (Berkeley) 1/31/94 - * $Id$ + * $Id: cd9660_vfsops.c,v 1.3 1994/08/02 07:41:33 davidg Exp $ */ #include <sys/param.h> @@ -58,8 +58,6 @@ #include <isofs/cd9660/iso.h> #include <isofs/cd9660/cd9660_node.h> -extern int enodev (); - struct vfsops cd9660_vfsops = { cd9660_mount, cd9660_start, @@ -87,7 +85,6 @@ int cd9660_mountroot() { register struct mount *mp; - extern struct vnode *rootvp; struct proc *p = curproc; /* XXX */ struct iso_mnt *imp; register struct fs *fs; @@ -229,7 +226,6 @@ iso_mountfs(devvp, mp, p, argp) int error = EINVAL, i, size; int needclose = 0; int ronly = (mp->mnt_flag & MNT_RDONLY) != 0; - extern struct vnode *rootvp; int j; int iso_bsize; int iso_blknum; |