static int
ntfs_init(struct vfsconf *vcp)
{
	ntfs_nthashinit();
	ntfs_toupper_init();
	return 0;
}
Ejemplo n.º 2
0
static int
ntfs_init ()
#endif
{
	static first=1;

	if(!first) return (0);
	first = 1;

	printf("ntfs_init(): \n");

	ntfs_nthashinit();

	return 0;
}
Ejemplo n.º 3
0
static void
ntfs_init(void)
{

	malloc_type_attach(M_NTFSMNT);
	malloc_type_attach(M_NTFSNTNODE);
	malloc_type_attach(M_NTFSFNODE);
	malloc_type_attach(M_NTFSDIR);
	malloc_type_attach(M_NTFSNTVATTR);
	malloc_type_attach(M_NTFSRDATA);
	malloc_type_attach(M_NTFSDECOMP);
	malloc_type_attach(M_NTFSRUN);
	ntfs_nthashinit();
	ntfs_toupper_init();
}