diff options
Diffstat (limited to 'sys/miscfs/umapfs/umap_vfsops.c')
-rw-r--r-- | sys/miscfs/umapfs/umap_vfsops.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/miscfs/umapfs/umap_vfsops.c b/sys/miscfs/umapfs/umap_vfsops.c index afa44f0..48894fe 100644 --- a/sys/miscfs/umapfs/umap_vfsops.c +++ b/sys/miscfs/umapfs/umap_vfsops.c @@ -52,6 +52,7 @@ #include <sys/namei.h> #include <sys/malloc.h> #include <miscfs/umapfs/umap.h> +#include <vm/vm_zone.h> static MALLOC_DEFINE(M_UMAPFSMNT, "UMAP mount", "UMAP mount structure"); @@ -129,6 +130,7 @@ umapfs_mount(mp, path, data, ndp, p) error = namei(ndp); if (error) return (error); + NDFREE(ndp, NDF_ONLY_PNBUF); /* * Sanity check on lower vnode |