yaffs Fixed a bug in direct/timothy_tests/mirror_tests
[yaffs2.git] / yportenv_multi.h
1 /*
2  * YAFFS: Yet another Flash File System . A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2010 Aleph One Ltd.
5  *   for Toby Churchill Ltd and Brightstar Engineering
6  *
7  * Created by Charles Manning <charles@aleph1.co.uk>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU Lesser General Public License version 2.1 as
11  * published by the Free Software Foundation.
12  *
13  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
14  */
15
16 #ifndef __YPORTENV_H__
17 #define __YPORTENV_H__
18
19 /*
20  * Define the MTD version in terms of Linux Kernel versions
21  * This allows yaffs to be used independantly of the kernel
22  * as well as with it.
23  */
24
25 #define MTD_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
26
27 #include "moduleconfig.h"
28
29 #include <linux/version.h>
30 #define MTD_VERSION_CODE LINUX_VERSION_CODE
31
32 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 19))
33 #include <linux/config.h>
34 #endif
35 #include <linux/version.h>
36 #include <linux/kernel.h>
37 #include <linux/mm.h>
38 #include <linux/sched.h>
39 #include <linux/string.h>
40 #include <linux/slab.h>
41 #include <linux/vmalloc.h>
42 #include <linux/xattr.h>
43 #include <linux/list.h>
44 #include <linux/types.h>
45 #include <linux/fs.h>
46 #include <linux/stat.h>
47 #include <linux/sort.h>
48 #include <linux/bitops.h>
49
50 #define YCHAR char
51 #define YUCHAR unsigned char
52 #define _Y(x)     x
53
54 #define YAFFS_LOSTNFOUND_NAME           "lost+found"
55 #define YAFFS_LOSTNFOUND_PREFIX         "obj"
56
57
58 #define YAFFS_ROOT_MODE                 0755
59 #define YAFFS_LOSTNFOUND_MODE           0700
60
61 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
62 #define Y_CURRENT_TIME CURRENT_TIME.tv_sec
63 #define Y_TIME_CONVERT(x) (x).tv_sec
64 #else
65 #define Y_CURRENT_TIME CURRENT_TIME
66 #define Y_TIME_CONVERT(x) (x)
67 #endif
68
69 #define compile_time_assertion(assertion) \
70         ({ int x = __builtin_choose_expr(assertion, 0, (void)0); (void) x; })
71
72
73 #ifndef Y_DUMP_STACK
74 #define Y_DUMP_STACK() dump_stack()
75 #endif
76
77 #define yaffs_trace(msk, fmt, ...) do { \
78         if(yaffs_trace_mask & ((msk) | YAFFS_TRACE_ALWAYS)) \
79                 printk(KERN_DEBUG "yaffs: " fmt "\n", ##__VA_ARGS__); \
80 } while(0)
81
82 #ifndef YBUG
83 #define YBUG() do {\
84         yaffs_trace(YAFFS_TRACE_BUG,\
85                 "bug " __FILE__ " %d",\
86                 __LINE__);\
87         Y_DUMP_STACK();\
88 } while (0)
89 #endif
90
91 #endif