MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / include / linux / kernel.h
blob6e85323db678eab4a8a218b5df505f5ee28a337f
1 #ifndef _LINUX_KERNEL_H
2 #define _LINUX_KERNEL_H
4 /*
5 * 'kernel.h' contains some often-used function prototypes etc
6 */
8 #ifdef __KERNEL__
10 #include <stdarg.h>
11 #include <linux/linkage.h>
12 #include <linux/stddef.h>
13 #include <linux/types.h>
14 #include <linux/compiler.h>
15 #include <linux/bitops.h>
16 #include <asm/byteorder.h>
17 #include <asm/bug.h>
19 extern const char linux_banner[];
21 #define INT_MAX ((int)(~0U>>1))
22 #define INT_MIN (-INT_MAX - 1)
23 #define UINT_MAX (~0U)
24 #define LONG_MAX ((long)(~0UL>>1))
25 #define LONG_MIN (-LONG_MAX - 1)
26 #define ULONG_MAX (~0UL)
27 #define LLONG_MAX ((long long)(~0ULL>>1))
28 #define LLONG_MIN (-LLONG_MAX - 1)
29 #define ULLONG_MAX (~0ULL)
31 #define STACK_MAGIC 0xdeadbeef
33 #define ALIGN(x,a) __ALIGN_MASK(x,(typeof(x))(a)-1)
34 #define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask))
36 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
37 #define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f))
38 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
39 #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
41 #define KERN_EMERG "<0>" /* system is unusable */
42 #define KERN_ALERT "<1>" /* action must be taken immediately */
43 #define KERN_CRIT "<2>" /* critical conditions */
44 #define KERN_ERR "<3>" /* error conditions */
45 #define KERN_WARNING "<4>" /* warning conditions */
46 #define KERN_NOTICE "<5>" /* normal but significant condition */
47 #define KERN_INFO "<6>" /* informational */
48 #define KERN_DEBUG "<7>" /* debug-level messages */
50 extern int console_printk[];
52 #define console_loglevel (console_printk[0])
53 #define default_message_loglevel (console_printk[1])
54 #define minimum_console_loglevel (console_printk[2])
55 #define default_console_loglevel (console_printk[3])
57 struct completion;
58 struct pt_regs;
59 struct user;
61 /**
62 * might_sleep - annotation for functions that can sleep
64 * this macro will print a stack trace if it is executed in an atomic
65 * context (spinlock, irq-handler, ...).
67 * This is a useful debugging help to be able to catch problems early and not
68 * be biten later when the calling function happens to sleep when it is not
69 * supposed to.
71 #ifdef CONFIG_PREEMPT_VOLUNTARY
72 extern int cond_resched(void);
73 # define might_resched() cond_resched()
74 #else
75 # define might_resched() do { } while (0)
76 #endif
78 #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
79 void __might_sleep(char *file, int line);
80 # define might_sleep() \
81 do { __might_sleep(__FILE__, __LINE__); might_resched(); } while (0)
82 #else
83 # define might_sleep() do { might_resched(); } while (0)
84 #endif
86 #define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0)
88 #define abs(x) ({ \
89 int __x = (x); \
90 (__x < 0) ? -__x : __x; \
93 #define labs(x) ({ \
94 long __x = (x); \
95 (__x < 0) ? -__x : __x; \
98 extern struct atomic_notifier_head panic_notifier_list;
99 extern long (*panic_blink)(long time);
100 NORET_TYPE void panic(const char * fmt, ...)
101 __attribute__ ((NORET_AND format (printf, 1, 2)));
102 extern void oops_enter(void);
103 extern void oops_exit(void);
104 extern int oops_may_print(void);
105 fastcall NORET_TYPE void do_exit(long error_code)
106 ATTRIB_NORET;
107 NORET_TYPE void complete_and_exit(struct completion *, long)
108 ATTRIB_NORET;
109 extern unsigned long simple_strtoul(const char *,char **,unsigned int);
110 extern long simple_strtol(const char *,char **,unsigned int);
111 extern unsigned long long simple_strtoull(const char *,char **,unsigned int);
112 extern long long simple_strtoll(const char *,char **,unsigned int);
113 extern int sprintf(char * buf, const char * fmt, ...)
114 __attribute__ ((format (printf, 2, 3)));
115 extern int vsprintf(char *buf, const char *, va_list)
116 __attribute__ ((format (printf, 2, 0)));
117 extern int snprintf(char * buf, size_t size, const char * fmt, ...)
118 __attribute__ ((format (printf, 3, 4)));
119 extern int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
120 __attribute__ ((format (printf, 3, 0)));
121 extern int scnprintf(char * buf, size_t size, const char * fmt, ...)
122 __attribute__ ((format (printf, 3, 4)));
123 extern int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
124 __attribute__ ((format (printf, 3, 0)));
125 extern char *kasprintf(gfp_t gfp, const char *fmt, ...)
126 __attribute__ ((format (printf, 2, 3)));
128 extern int sscanf(const char *, const char *, ...)
129 __attribute__ ((format (scanf, 2, 3)));
130 extern int vsscanf(const char *, const char *, va_list)
131 __attribute__ ((format (scanf, 2, 0)));
133 extern int get_option(char **str, int *pint);
134 extern char *get_options(const char *str, int nints, int *ints);
135 extern unsigned long long memparse(char *ptr, char **retptr);
137 extern int core_kernel_text(unsigned long addr);
138 extern int __kernel_text_address(unsigned long addr);
139 extern int kernel_text_address(unsigned long addr);
140 extern int session_of_pgrp(int pgrp);
142 extern void dump_thread(struct pt_regs *regs, struct user *dump);
144 #ifdef CONFIG_PRINTK
145 asmlinkage int vprintk(const char *fmt, va_list args)
146 __attribute__ ((format (printf, 1, 0)));
147 asmlinkage int printk(const char * fmt, ...)
148 __attribute__ ((format (printf, 1, 2)));
149 #else
150 static inline int vprintk(const char *s, va_list args)
151 __attribute__ ((format (printf, 1, 0)));
152 static inline int vprintk(const char *s, va_list args) { return 0; }
153 static inline int printk(const char *s, ...)
154 __attribute__ ((format (printf, 1, 2)));
155 static inline int printk(const char *s, ...) { return 0; }
156 #endif
158 unsigned long int_sqrt(unsigned long);
160 static inline int __attribute_pure__ long_log2(unsigned long x)
162 int r = 0;
163 for (x >>= 1; x > 0; x >>= 1)
164 r++;
165 return r;
168 static inline unsigned long
169 __attribute_const__ roundup_pow_of_two(unsigned long x)
171 return 1UL << fls_long(x - 1);
174 extern int printk_ratelimit(void);
175 extern int __printk_ratelimit(int ratelimit_jiffies, int ratelimit_burst);
176 #if 0 // mask by Victor Yu. 02-12-2007
177 extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
178 unsigned int interval_msec);
179 #else
180 extern int printk_timed_ratelimit(unsigned long *caller_jiffies,
181 unsigned int interval_msec);
182 #endif
184 static inline void console_silent(void)
186 console_loglevel = 0;
189 static inline void console_verbose(void)
191 if (console_loglevel)
192 console_loglevel = 15;
195 extern void bust_spinlocks(int yes);
196 extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */
197 extern int panic_timeout;
198 extern int panic_on_oops;
199 extern int panic_on_unrecovered_nmi;
200 extern int tainted;
201 extern const char *print_tainted(void);
202 extern void add_taint(unsigned);
204 /* Values used for system_state */
205 extern enum system_states {
206 SYSTEM_BOOTING,
207 SYSTEM_RUNNING,
208 SYSTEM_HALT,
209 SYSTEM_POWER_OFF,
210 SYSTEM_RESTART,
211 SYSTEM_SUSPEND_DISK,
212 } system_state;
214 #define TAINT_PROPRIETARY_MODULE (1<<0)
215 #define TAINT_FORCED_MODULE (1<<1)
216 #define TAINT_UNSAFE_SMP (1<<2)
217 #define TAINT_FORCED_RMMOD (1<<3)
218 #define TAINT_MACHINE_CHECK (1<<4)
219 #define TAINT_BAD_PAGE (1<<5)
221 extern void dump_stack(void);
223 #ifdef DEBUG
224 /* If you are writing a driver, please use dev_dbg instead */
225 #define pr_debug(fmt,arg...) \
226 printk(KERN_DEBUG fmt,##arg)
227 #else
228 static inline int __attribute__ ((format (printf, 1, 2))) pr_debug(const char * fmt, ...)
230 return 0;
232 #endif
234 #define pr_info(fmt,arg...) \
235 printk(KERN_INFO fmt,##arg)
238 * Display an IP address in readable format.
241 #define NIPQUAD(addr) \
242 ((unsigned char *)&addr)[0], \
243 ((unsigned char *)&addr)[1], \
244 ((unsigned char *)&addr)[2], \
245 ((unsigned char *)&addr)[3]
246 #define NIPQUAD_FMT "%u.%u.%u.%u"
248 #define NIP6(addr) \
249 ntohs((addr).s6_addr16[0]), \
250 ntohs((addr).s6_addr16[1]), \
251 ntohs((addr).s6_addr16[2]), \
252 ntohs((addr).s6_addr16[3]), \
253 ntohs((addr).s6_addr16[4]), \
254 ntohs((addr).s6_addr16[5]), \
255 ntohs((addr).s6_addr16[6]), \
256 ntohs((addr).s6_addr16[7])
257 #define NIP6_FMT "%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x"
258 #define NIP6_SEQFMT "%04x%04x%04x%04x%04x%04x%04x%04x"
260 #if defined(__LITTLE_ENDIAN)
261 #define HIPQUAD(addr) \
262 ((unsigned char *)&addr)[3], \
263 ((unsigned char *)&addr)[2], \
264 ((unsigned char *)&addr)[1], \
265 ((unsigned char *)&addr)[0]
266 #elif defined(__BIG_ENDIAN)
267 #define HIPQUAD NIPQUAD
268 #else
269 #error "Please fix asm/byteorder.h"
270 #endif /* __LITTLE_ENDIAN */
273 * min()/max() macros that also do
274 * strict type-checking.. See the
275 * "unnecessary" pointer comparison.
277 #define min(x,y) ({ \
278 typeof(x) _x = (x); \
279 typeof(y) _y = (y); \
280 (void) (&_x == &_y); \
281 _x < _y ? _x : _y; })
283 #define max(x,y) ({ \
284 typeof(x) _x = (x); \
285 typeof(y) _y = (y); \
286 (void) (&_x == &_y); \
287 _x > _y ? _x : _y; })
290 * ..and if you can't take the strict
291 * types, you can specify one yourself.
293 * Or not use min/max at all, of course.
295 #define min_t(type,x,y) \
296 ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
297 #define max_t(type,x,y) \
298 ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
302 * container_of - cast a member of a structure out to the containing structure
303 * @ptr: the pointer to the member.
304 * @type: the type of the container struct this is embedded in.
305 * @member: the name of the member within the struct.
308 #define container_of(ptr, type, member) ({ \
309 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
310 (type *)( (char *)__mptr - offsetof(type,member) );})
313 * Check at compile time that something is of a particular type.
314 * Always evaluates to 1 so you may use it easily in comparisons.
316 #define typecheck(type,x) \
317 ({ type __dummy; \
318 typeof(x) __dummy2; \
319 (void)(&__dummy == &__dummy2); \
320 1; \
324 * Check at compile time that 'function' is a certain type, or is a pointer
325 * to that type (needs to use typedef for the function type.)
327 #define typecheck_fn(type,function) \
328 ({ typeof(type) __tmp = function; \
329 (void)__tmp; \
332 #endif /* __KERNEL__ */
334 #define SI_LOAD_SHIFT 16
335 struct sysinfo {
336 long uptime; /* Seconds since boot */
337 unsigned long loads[3]; /* 1, 5, and 15 minute load averages */
338 unsigned long totalram; /* Total usable main memory size */
339 unsigned long freeram; /* Available memory size */
340 unsigned long sharedram; /* Amount of shared memory */
341 unsigned long bufferram; /* Memory used by buffers */
342 unsigned long totalswap; /* Total swap space size */
343 unsigned long freeswap; /* swap space still available */
344 unsigned short procs; /* Number of current processes */
345 unsigned short pad; /* explicit padding for m68k */
346 unsigned long totalhigh; /* Total high memory size */
347 unsigned long freehigh; /* Available high memory size */
348 unsigned int mem_unit; /* Memory unit size in bytes */
349 char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
352 /* Force a compilation error if condition is true */
353 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
355 /* Force a compilation error if condition is true, but also produce a
356 result (of value 0 and type size_t), so the expression can be used
357 e.g. in a structure initializer (or where-ever else comma expressions
358 aren't permitted). */
359 #define BUILD_BUG_ON_ZERO(e) (sizeof(char[1 - 2 * !!(e)]) - 1)
361 /* Trap pasters of __FUNCTION__ at compile-time */
362 #define __FUNCTION__ (__func__)
364 /* This helps us to avoid #ifdef CONFIG_NUMA */
365 #ifdef CONFIG_NUMA
366 #define NUMA_BUILD 1
367 #else
368 #define NUMA_BUILD 0
369 #endif
371 #endif