summaryrefslogtreecommitdiffstats
path: root/sys/fs/ntfs/ntfs_vfsops.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2005-02-10 12:09:49 +0000
committerphk <phk@FreeBSD.org>2005-02-10 12:09:49 +0000
commitbd3aabb81e2d9870d8488431aeda427073d703c1 (patch)
tree26c5b88b2f34b8d3852ea95fc10928d7c4c1f9b7 /sys/fs/ntfs/ntfs_vfsops.c
parent34655596ce97ac79e1cea592bed42044a2ef3c5d (diff)
downloadFreeBSD-src-bd3aabb81e2d9870d8488431aeda427073d703c1.zip
FreeBSD-src-bd3aabb81e2d9870d8488431aeda427073d703c1.tar.gz
make M_NTFSMNT and ntfs_calccfree() static
Diffstat (limited to 'sys/fs/ntfs/ntfs_vfsops.c')
-rw-r--r--sys/fs/ntfs/ntfs_vfsops.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/fs/ntfs/ntfs_vfsops.c b/sys/fs/ntfs/ntfs_vfsops.c
index 60cd7b5..e3ba1a7 100644
--- a/sys/fs/ntfs/ntfs_vfsops.c
+++ b/sys/fs/ntfs/ntfs_vfsops.c
@@ -60,7 +60,7 @@
#include <fs/ntfs/ntfs_ihash.h>
#include <fs/ntfs/ntfsmount.h>
-MALLOC_DEFINE(M_NTFSMNT, "NTFS mount", "NTFS mount structure");
+static MALLOC_DEFINE(M_NTFSMNT, "NTFS mount", "NTFS mount structure");
MALLOC_DEFINE(M_NTFSNTNODE,"NTFS ntnode", "NTFS ntnode information");
MALLOC_DEFINE(M_NTFSFNODE,"NTFS fnode", "NTFS fnode information");
MALLOC_DEFINE(M_NTFSDIR,"NTFS dir", "NTFS dir buffer");
@@ -69,6 +69,7 @@ struct sockaddr;
static int ntfs_mountfs(register struct vnode *, struct mount *,
struct thread *);
+static int ntfs_calccfree(struct ntfsmount *ntmp, cn_t *cfreep);
static vfs_init_t ntfs_init;
static vfs_uninit_t ntfs_uninit;
@@ -542,7 +543,7 @@ ntfs_root(
return (0);
}
-int
+static int
ntfs_calccfree(
struct ntfsmount *ntmp,
cn_t *cfreep)
OpenPOWER on IntegriCloud