X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=yportenv.h;h=3e6caaeaf0e9ef54f19e1183709676e7379feae3;hp=0543383066a0a24c1e3ef9f78051fde54cfb661f;hb=2ae22f05374b4cb19202ddaac9fc47458c732f0d;hpb=3fb421aeda96d281918eeae5f4ac46eb685cc4d0 diff --git a/yportenv.h b/yportenv.h index 0543383..3e6caae 100644 --- a/yportenv.h +++ b/yportenv.h @@ -15,7 +15,7 @@ * * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL. * - * $Id: yportenv.h,v 1.8 2005-09-18 05:31:26 marty Exp $ + * $Id: yportenv.h,v 1.12 2007-01-19 04:07:48 charles Exp $ * */ @@ -31,12 +31,15 @@ #include "moduleconfig.h" /* Linux kernel */ +#include +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)) #include +#endif #include -#include #include #include #include +#include #define YCHAR char #define YUCHAR unsigned char @@ -55,6 +58,12 @@ /* #define YPRINTF(x) printk x */ #define YMALLOC(x) kmalloc(x,GFP_KERNEL) #define YFREE(x) kfree(x) +#define YMALLOC_ALT(x) vmalloc(x) +#define YFREE_ALT(x) vfree(x) +#define YMALLOC_DMA(x) YMALLOC(x) + +// KR - added for use in scan so processes aren't blocked indefinitely. +#define YYIELD() schedule() #define YAFFS_ROOT_MODE 0666 #define YAFFS_LOSTNFOUND_MODE 0666 @@ -91,6 +100,8 @@ #define YMALLOC(x) malloc(x) #define YFREE(x) free(x) +#define YMALLOC_ALT(x) malloc(x) +#define YFREE_ALT(x) free(x) #define YCHAR char #define YUCHAR unsigned char @@ -143,6 +154,7 @@ extern unsigned yaffs_traceMask; #define YAFFS_TRACE_GC_DETAIL 0x00001000 #define YAFFS_TRACE_SCAN_DEBUG 0x00002000 #define YAFFS_TRACE_MTD 0x00004000 +#define YAFFS_TRACE_CHECKPOINT 0x00008000 #define YAFFS_TRACE_ALWAYS 0x40000000 #define YAFFS_TRACE_BUG 0x80000000