diff options
author | rodrigc <rodrigc@FreeBSD.org> | 2005-11-12 20:12:56 +0000 |
---|---|---|
committer | rodrigc <rodrigc@FreeBSD.org> | 2005-11-12 20:12:56 +0000 |
commit | ff08aa9e3d1fe568c1e62b1c7efc24142c1a7396 (patch) | |
tree | e01d55969e797bf2f533f333658c95fc41c6062a /sbin/mount/extern.h | |
parent | 1bfd712b60296f5b4a8cdc835b542f2320b24d97 (diff) | |
download | FreeBSD-src-ff08aa9e3d1fe568c1e62b1c7efc24142c1a7396.zip FreeBSD-src-ff08aa9e3d1fe568c1e62b1c7efc24142c1a7396.tar.gz |
- Minor fixes to raise WARNS level to 6.
- Teach the mount program to call the nmount() syscall directly
- Preserve existing method of calling mount() for UFS, until we clean things
up.
- Preserve existing method of forking and calling external mount programs for
mfs, msdosfs, nfs, nfs4, ntfs, nwfs, nullfs, portalfs, reiserfs, smbfs,
udf, umapfs, unionfs
- devfs, linprocfs, procfs, ext2fs call nmount() syscall directly, since
that is all those external mount programs were doing
Reviewed by: phk
Discussed on: arch
Diffstat (limited to 'sbin/mount/extern.h')
-rw-r--r-- | sbin/mount/extern.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/mount/extern.h b/sbin/mount/extern.h index 2271da5..ef0666c 100644 --- a/sbin/mount/extern.h +++ b/sbin/mount/extern.h @@ -31,4 +31,5 @@ int checkvfsname(const char *, const char **); const char **makevfslist(char *); /* mount_ufs.c */ -int mount_ufs(int, char * const []); +int mount_ufs(int, char *[]); +int mount_fs(const char *, int, char *[]); |