patch-2.4.4 linux/fs/ntfs/support.h
Next file: linux/fs/ntfs/sysctl.h
Previous file: linux/fs/ntfs/support.c
Back to the patch index
Back to the overall index
- Lines: 54
- Date:
Wed Apr 18 11:49:13 2001
- Orig file:
v2.4.3/linux/fs/ntfs/support.h
- Orig date:
Mon Dec 11 13:26:39 2000
diff -u --recursive --new-file v2.4.3/linux/fs/ntfs/support.h linux/fs/ntfs/support.h
@@ -1,6 +1,4 @@
-/*
- * support.h
- * Header file for specific support.c
+/* support.h - Header file for specific support.c
*
* Copyright (C) 1997 Régis Duchesne
*/
@@ -20,29 +18,31 @@
#define DEBUG_NAME2 2048
void ntfs_debug(int mask, const char *fmt, ...);
-#ifdef NTFS_IN_LINUX_KERNEL
+
#include <linux/slab.h>
-#define ntfs_malloc(size) kmalloc(size,GFP_KERNEL)
+
+#define ntfs_malloc(size) kmalloc(size, GFP_KERNEL)
+
#define ntfs_free(ptr) kfree(ptr)
-#else
-void *ntfs_malloc(int size);
-void ntfs_free(void *block);
-#endif
+
void ntfs_bzero(void *s, int n);
+
void ntfs_memcpy(void *dest, const void *src, ntfs_size_t n);
+
void ntfs_memmove(void *dest, const void *src, ntfs_size_t n);
+
void ntfs_error(const char *fmt,...);
+
int ntfs_read_mft_record(ntfs_volume *vol, int mftno, char *buf);
+
int ntfs_getput_clusters(ntfs_volume *pvol, int cluster, ntfs_size_t offs,
- ntfs_io *buf);
+ ntfs_io *buf);
+
ntfs_time64_t ntfs_now(void);
+
int ntfs_dupuni2map(ntfs_volume *vol, ntfs_u16 *in, int in_len, char **out,
- int *out_len);
+ int *out_len);
+
int ntfs_dupmap2uni(ntfs_volume *vol, char* in, int in_len, ntfs_u16 **out,
- int *out_len);
+ int *out_len);
-/*
- * Local variables:
- * c-file-style: "linux"
- * End:
- */
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)