diff options
author | des <des@FreeBSD.org> | 2005-03-14 16:04:27 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2005-03-14 16:04:27 +0000 |
commit | 409a23294c128e5a18be3a941c947c7c237a0865 (patch) | |
tree | b8dcad939b8fb1f0c762a49261cb685391a093f3 | |
parent | 46ae2c5fbc332fff760c05367ba68c96b4e024cd (diff) | |
download | FreeBSD-src-409a23294c128e5a18be3a941c947c7c237a0865.zip FreeBSD-src-409a23294c128e5a18be3a941c947c7c237a0865.tar.gz |
Add PSEUDOFS_TRACE option.
-rw-r--r-- | sys/conf/NOTES | 1 | ||||
-rw-r--r-- | sys/conf/options | 3 | ||||
-rw-r--r-- | sys/modules/pseudofs/Makefile | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 44b3639..35eb7ca 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -807,6 +807,7 @@ options NULLFS #NULL filesystem options PORTALFS #Portal filesystem options PROCFS #Process filesystem (requires PSEUDOFS) options PSEUDOFS #Pseudo-filesystem framework +options PSEUDOFS_TRACE #Debugging support for PSEUDOFS options SMBFS #SMB/CIFS filesystem options UDF #Universal Disk Format # Broken (seriously (functionally) broken): diff --git a/sys/conf/options b/sys/conf/options index 85788b8..25608bc 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -181,6 +181,9 @@ UDF opt_dontuse.h UMAPFS opt_dontuse.h UNIONFS opt_dontuse.h +# Pseudofs debugging +PSEUDOFS_TRACE opt_pseudofs.h + # Broken - ffs_snapshot() dependency from ufs_lookup() :-( FFS opt_ffs_broken_fixme.h diff --git a/sys/modules/pseudofs/Makefile b/sys/modules/pseudofs/Makefile index e84a639..b04bffb 100644 --- a/sys/modules/pseudofs/Makefile +++ b/sys/modules/pseudofs/Makefile @@ -4,6 +4,7 @@ KMOD= pseudofs SRCS= opt_mac.h \ + opt_pseudofs.h \ vnode_if.h \ pseudofs.c \ pseudofs_fileno.c \ |