Widen page count field in blockinfo to allow lots of pages per block
[yaffs/.git] / direct / ydirectenv.h
1 /*
2  * YAFFS: Yet another FFS. A NAND-flash specific file system. 
3  * ydirectenv.h: Environment wrappers for direct.
4  *
5  * Copyright (C) 2002 Aleph One Ltd.
6  *   for Toby Churchill Ltd and Brightstar Engineering
7  *
8  * Created by Charles Manning <charles@aleph1.co.uk>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU Lesser General Public License version 2.1 as
12  * published by the Free Software Foundation.
13  *
14  *
15  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
16  *
17  * $Id: ydirectenv.h,v 1.2 2004-10-10 17:54:59 charles Exp $
18  *
19  */
20  
21 #ifndef __YDIRECTENV_H__
22 #define __YDIRECTENV_H__
23
24 // Direct interface
25
26 #include "devextras.h"
27
28 #include "stdlib.h"
29 #include "stdio.h"
30 #include "string.h"
31
32 #define YMALLOC(x) malloc(x)
33 #define YFREE(x)   free(x)
34
35
36 //#define YINFO(s) YPRINTF(( __FILE__ " %d %s\n",__LINE__,s))
37 //#define YALERT(s) YINFO(s)
38
39
40 #define TENDSTR "\n"
41 #define TSTR(x) x
42 #define TOUT(p) printf p
43
44
45 #define YAFFS_LOSTNFOUND_NAME           "lost+found"
46 #define YAFFS_LOSTNFOUND_PREFIX         "obj"
47 //#define YPRINTF(x) printf x
48
49 #include "yaffscfg.h"
50
51 #define Y_CURRENT_TIME yaffsfs_CurrentTime()
52 #define Y_TIME_CONVERT(x) (x)
53
54 #define YAFFS_ROOT_MODE                         0666
55 #define YAFFS_LOSTNFOUND_MODE           0666
56
57 #define yaffs_SumCompare(x,y) ((x) == (y))
58 #define yaffs_strcmp(a,b) strcmp(a,b)
59
60 #endif
61
62