X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=yportenv.h;h=240b6b95a1d2f350d0fab21530af64c83d35794e;hp=1fc2272f8fb1c8a6aacc47e20f35d5e28f58c232;hb=600cb55e4d937dd1f61d596b49a58ef11ddc01c9;hpb=84699e12e914cb78ae3a1da48c99ed679b934153 diff --git a/yportenv.h b/yportenv.h index 1fc2272..240b6b9 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.7 2005-08-11 02:33:03 marty Exp $ + * $Id: yportenv.h,v 1.9 2005-10-07 02:46:50 charles Exp $ * */ @@ -28,6 +28,8 @@ #elif defined __KERNEL__ +#include "moduleconfig.h" + /* Linux kernel */ #include #include @@ -35,6 +37,7 @@ #include #include #include +#include #define YCHAR char #define YUCHAR unsigned char @@ -53,6 +56,8 @@ /* #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 YAFFS_ROOT_MODE 0666 #define YAFFS_LOSTNFOUND_MODE 0666 @@ -89,6 +94,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