diff options
| author | Maxime Henrion <mux@FreeBSD.org> | 2004-04-11 21:09:22 +0000 |
|---|---|---|
| committer | Maxime Henrion <mux@FreeBSD.org> | 2004-04-11 21:09:22 +0000 |
| commit | a0b5a679299011c365e62ee0ce20803955cf3cfb (patch) | |
| tree | 120ccd8e7b7d90ac0aaede9638ce796b959bab0a | |
| parent | 24449958e42cf2b96c88190d7a794887160a5397 (diff) | |
Notes
| -rw-r--r-- | sys/kern/vfs_subr.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index b301d8efa0ad..3db03c0339da 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -2763,6 +2763,9 @@ vfsconf2x(struct vfsconf *vfsp, struct xvfsconf *xvfsp) xvfsp->vfc_next = NULL; } +/* + * Top level filesystem related information gathering. + */ static int sysctl_vfs_conflist(SYSCTL_HANDLER_ARGS) { @@ -2794,9 +2797,7 @@ sysctl_vfs_conflist(SYSCTL_HANDLER_ARGS) SYSCTL_PROC(_vfs, OID_AUTO, conflist, CTLFLAG_RD, NULL, 0, sysctl_vfs_conflist, "S,xvfsconf", "List of all configured filesystems"); -/* - * Top level filesystem related information gathering. - */ +#ifndef BURN_BRIDGES static int sysctl_ovfs_conf(SYSCTL_HANDLER_ARGS); static int @@ -2861,6 +2862,7 @@ sysctl_ovfs_conf(SYSCTL_HANDLER_ARGS) } #endif /* 1 || COMPAT_PRELITE2 */ +#endif /* !BURN_BRIDGES */ #define KINFO_VNODESLOP 10 #ifdef notyet |
