blob: d9725a28a2655d14919906359198e0685e98e56c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_KERNEL_H
2#define _LINUX_KERNEL_H
3
4/*
5 * 'kernel.h' contains some often-used function prototypes etc
6 */
7
8#ifdef __KERNEL__
9
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>
David Howellsf0d1b0b2006-12-08 02:37:49 -080016#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/byteorder.h>
18#include <asm/bug.h>
19
Roman Zippel3eb3c742007-01-10 14:45:28 +010020extern const char linux_banner[];
21extern const char linux_proc_banner[];
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#define INT_MAX ((int)(~0U>>1))
24#define INT_MIN (-INT_MAX - 1)
25#define UINT_MAX (~0U)
26#define LONG_MAX ((long)(~0UL>>1))
27#define LONG_MIN (-LONG_MAX - 1)
28#define ULONG_MAX (~0UL)
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -070029#define LLONG_MAX ((long long)(~0ULL>>1))
30#define LLONG_MIN (-LLONG_MAX - 1)
31#define ULLONG_MAX (~0ULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#define STACK_MAGIC 0xdeadbeef
34
Linus Torvalds2ea58142006-11-26 19:05:22 -080035#define ALIGN(x,a) __ALIGN_MASK(x,(typeof(x))(a)-1)
36#define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask))
Matthew Wilcoxa83308e2007-09-11 15:23:47 -070037#define PTR_ALIGN(p, a) ((typeof(p))ALIGN((unsigned long)(p), (a)))
Linus Torvalds2ea58142006-11-26 19:05:22 -080038
Rusty Russellc5e631c2007-05-06 14:51:05 -070039#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
40
Jan Beulich4552d5d2006-06-26 13:57:28 +020041#define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f))
Steven Whitehouse930631e2006-09-25 23:32:40 -070042#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
David Howellsb4cac1a2006-07-10 04:44:54 -070043#define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Jens Axboe2da96ac2007-10-12 12:40:38 +020045#ifdef CONFIG_LBD
46# include <asm/div64.h>
47# define sector_div(a, b) do_div(a, b)
48#else
49# define sector_div(n, b)( \
50{ \
51 int _res; \
52 _res = (n) % (b); \
53 (n) /= (b); \
54 _res; \
55} \
56)
57#endif
58
Andrew Morton218e1802007-05-10 03:15:18 -070059/**
60 * upper_32_bits - return bits 32-63 of a number
61 * @n: the number we're accessing
62 *
63 * A basic shift-right of a 64- or 32-bit quantity. Use this to suppress
64 * the "right shift count >= width of type" warning when that quantity is
65 * 32-bits.
66 */
67#define upper_32_bits(n) ((u32)(((n) >> 16) >> 16))
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define KERN_EMERG "<0>" /* system is unusable */
70#define KERN_ALERT "<1>" /* action must be taken immediately */
71#define KERN_CRIT "<2>" /* critical conditions */
72#define KERN_ERR "<3>" /* error conditions */
73#define KERN_WARNING "<4>" /* warning conditions */
74#define KERN_NOTICE "<5>" /* normal but significant condition */
75#define KERN_INFO "<6>" /* informational */
76#define KERN_DEBUG "<7>" /* debug-level messages */
77
78extern int console_printk[];
79
80#define console_loglevel (console_printk[0])
81#define default_message_loglevel (console_printk[1])
82#define minimum_console_loglevel (console_printk[2])
83#define default_console_loglevel (console_printk[3])
84
85struct completion;
akpm@osdl.orgdf2e71f2006-01-09 20:51:37 -080086struct pt_regs;
87struct user;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89/**
90 * might_sleep - annotation for functions that can sleep
91 *
92 * this macro will print a stack trace if it is executed in an atomic
93 * context (spinlock, irq-handler, ...).
94 *
95 * This is a useful debugging help to be able to catch problems early and not
Jim Cromiee20ec992006-11-30 04:46:13 +010096 * be bitten later when the calling function happens to sleep when it is not
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * supposed to.
98 */
Ingo Molnarf8cbd992005-06-25 14:57:39 -070099#ifdef CONFIG_PREEMPT_VOLUNTARY
100extern int cond_resched(void);
101# define might_resched() cond_resched()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#else
Ingo Molnarf8cbd992005-06-25 14:57:39 -0700103# define might_resched() do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#endif
105
Ingo Molnarf8cbd992005-06-25 14:57:39 -0700106#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
107 void __might_sleep(char *file, int line);
108# define might_sleep() \
109 do { __might_sleep(__FILE__, __LINE__); might_resched(); } while (0)
110#else
111# define might_sleep() do { might_resched(); } while (0)
112#endif
113
Hua Zhong368a5fa2006-06-23 02:05:42 -0700114#define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0)
Ingo Molnarf8cbd992005-06-25 14:57:39 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define abs(x) ({ \
117 int __x = (x); \
118 (__x < 0) ? -__x : __x; \
119 })
120
Alan Sterne041c682006-03-27 01:16:30 -0800121extern struct atomic_notifier_head panic_notifier_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122extern long (*panic_blink)(long time);
123NORET_TYPE void panic(const char * fmt, ...)
Andi Kleena586df02007-07-21 17:10:00 +0200124 __attribute__ ((NORET_AND format (printf, 1, 2))) __cold;
Andrew Mortondd287792006-03-23 03:00:57 -0800125extern void oops_enter(void);
126extern void oops_exit(void);
127extern int oops_may_print(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128fastcall NORET_TYPE void do_exit(long error_code)
129 ATTRIB_NORET;
130NORET_TYPE void complete_and_exit(struct completion *, long)
131 ATTRIB_NORET;
132extern unsigned long simple_strtoul(const char *,char **,unsigned int);
133extern long simple_strtol(const char *,char **,unsigned int);
134extern unsigned long long simple_strtoull(const char *,char **,unsigned int);
135extern long long simple_strtoll(const char *,char **,unsigned int);
136extern int sprintf(char * buf, const char * fmt, ...)
137 __attribute__ ((format (printf, 2, 3)));
138extern int vsprintf(char *buf, const char *, va_list)
139 __attribute__ ((format (printf, 2, 0)));
140extern int snprintf(char * buf, size_t size, const char * fmt, ...)
141 __attribute__ ((format (printf, 3, 4)));
142extern int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
143 __attribute__ ((format (printf, 3, 0)));
144extern int scnprintf(char * buf, size_t size, const char * fmt, ...)
145 __attribute__ ((format (printf, 3, 4)));
146extern int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
147 __attribute__ ((format (printf, 3, 0)));
Jeremy Fitzhardingee9059142006-06-25 05:49:17 -0700148extern char *kasprintf(gfp_t gfp, const char *fmt, ...)
149 __attribute__ ((format (printf, 2, 3)));
Jeremy Fitzhardinge11443ec2007-04-30 15:09:56 -0700150extern char *kvasprintf(gfp_t gfp, const char *fmt, va_list args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152extern int sscanf(const char *, const char *, ...)
153 __attribute__ ((format (scanf, 2, 3)));
154extern int vsscanf(const char *, const char *, va_list)
155 __attribute__ ((format (scanf, 2, 0)));
156
157extern int get_option(char **str, int *pint);
158extern char *get_options(const char *str, int nints, int *ints);
159extern unsigned long long memparse(char *ptr, char **retptr);
160
Trent Piepho5e376612006-05-15 09:44:06 -0700161extern int core_kernel_text(unsigned long addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162extern int __kernel_text_address(unsigned long addr);
163extern int kernel_text_address(unsigned long addr);
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -0800164struct pid;
165extern struct pid *session_of_pgrp(struct pid *pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
akpm@osdl.orgdf2e71f2006-01-09 20:51:37 -0800167extern void dump_thread(struct pt_regs *regs, struct user *dump);
168
Matt Mackalld59745c2005-05-01 08:59:02 -0700169#ifdef CONFIG_PRINTK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170asmlinkage int vprintk(const char *fmt, va_list args)
171 __attribute__ ((format (printf, 1, 0)));
172asmlinkage int printk(const char * fmt, ...)
Andi Kleena586df02007-07-21 17:10:00 +0200173 __attribute__ ((format (printf, 1, 2))) __cold;
Matt Mackalld59745c2005-05-01 08:59:02 -0700174#else
175static inline int vprintk(const char *s, va_list args)
176 __attribute__ ((format (printf, 1, 0)));
177static inline int vprintk(const char *s, va_list args) { return 0; }
178static inline int printk(const char *s, ...)
179 __attribute__ ((format (printf, 1, 2)));
Andi Kleena586df02007-07-21 17:10:00 +0200180static inline int __cold printk(const char *s, ...) { return 0; }
Matt Mackalld59745c2005-05-01 08:59:02 -0700181#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183unsigned long int_sqrt(unsigned long);
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185extern int printk_ratelimit(void);
186extern int __printk_ratelimit(int ratelimit_jiffies, int ratelimit_burst);
Andrew Mortonf46c4832006-11-02 22:07:16 -0800187extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
188 unsigned int interval_msec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190static inline void console_silent(void)
191{
192 console_loglevel = 0;
193}
194
195static inline void console_verbose(void)
196{
197 if (console_loglevel)
198 console_loglevel = 15;
199}
200
201extern void bust_spinlocks(int yes);
Kirill Korotaeve3e8a752007-02-10 01:46:19 -0800202extern void wake_up_klogd(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */
Adrian Bunkaa727102006-04-10 22:53:59 -0700204extern int panic_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205extern int panic_on_oops;
Don Zickus8da5add2006-09-26 10:52:27 +0200206extern int panic_on_unrecovered_nmi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207extern int tainted;
208extern const char *print_tainted(void);
209extern void add_taint(unsigned);
210
211/* Values used for system_state */
212extern enum system_states {
213 SYSTEM_BOOTING,
214 SYSTEM_RUNNING,
215 SYSTEM_HALT,
216 SYSTEM_POWER_OFF,
217 SYSTEM_RESTART,
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500218 SYSTEM_SUSPEND_DISK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219} system_state;
220
221#define TAINT_PROPRIETARY_MODULE (1<<0)
222#define TAINT_FORCED_MODULE (1<<1)
223#define TAINT_UNSAFE_SMP (1<<2)
224#define TAINT_FORCED_RMMOD (1<<3)
225#define TAINT_MACHINE_CHECK (1<<4)
226#define TAINT_BAD_PAGE (1<<5)
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800227#define TAINT_USER (1<<6)
Pavel Emelianovbcdcd8e2007-07-17 04:03:42 -0700228#define TAINT_DIE (1<<7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Andi Kleena586df02007-07-21 17:10:00 +0200230extern void dump_stack(void) __cold;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700232enum {
233 DUMP_PREFIX_NONE,
234 DUMP_PREFIX_ADDRESS,
235 DUMP_PREFIX_OFFSET
236};
Randy Dunlapc7909232007-06-08 13:47:04 -0700237extern void hex_dump_to_buffer(const void *buf, size_t len,
238 int rowsize, int groupsize,
239 char *linebuf, size_t linebuflen, bool ascii);
240extern void print_hex_dump(const char *level, const char *prefix_str,
241 int prefix_type, int rowsize, int groupsize,
Artem Bityutskiy6a0ed912007-08-07 23:43:14 +0300242 const void *buf, size_t len, bool ascii);
Randy Dunlapc7909232007-06-08 13:47:04 -0700243extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
Alan Sterneb9a9a52007-08-10 13:01:07 -0700244 const void *buf, size_t len);
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700245#define hex_asc(x) "0123456789abcdef"[x]
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247#ifdef DEBUG
Pavel Machek1cc6daf2006-08-08 01:37:15 +0200248/* If you are writing a driver, please use dev_dbg instead */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249#define pr_debug(fmt,arg...) \
250 printk(KERN_DEBUG fmt,##arg)
251#else
Zach Brown8b2a1fd2006-10-03 01:16:15 -0700252static inline int __attribute__ ((format (printf, 1, 2))) pr_debug(const char * fmt, ...)
253{
254 return 0;
255}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#endif
257
258#define pr_info(fmt,arg...) \
259 printk(KERN_INFO fmt,##arg)
260
261/*
262 * Display an IP address in readable format.
263 */
264
265#define NIPQUAD(addr) \
266 ((unsigned char *)&addr)[0], \
267 ((unsigned char *)&addr)[1], \
268 ((unsigned char *)&addr)[2], \
269 ((unsigned char *)&addr)[3]
Joe Perches46b86a22006-01-13 14:29:07 -0800270#define NIPQUAD_FMT "%u.%u.%u.%u"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272#define NIP6(addr) \
273 ntohs((addr).s6_addr16[0]), \
274 ntohs((addr).s6_addr16[1]), \
275 ntohs((addr).s6_addr16[2]), \
276 ntohs((addr).s6_addr16[3]), \
277 ntohs((addr).s6_addr16[4]), \
278 ntohs((addr).s6_addr16[5]), \
279 ntohs((addr).s6_addr16[6]), \
280 ntohs((addr).s6_addr16[7])
Joe Perches46b86a22006-01-13 14:29:07 -0800281#define NIP6_FMT "%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x"
YOSHIFUJI Hideaki9343e792006-01-17 02:10:53 -0800282#define NIP6_SEQFMT "%04x%04x%04x%04x%04x%04x%04x%04x"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284#if defined(__LITTLE_ENDIAN)
285#define HIPQUAD(addr) \
286 ((unsigned char *)&addr)[3], \
287 ((unsigned char *)&addr)[2], \
288 ((unsigned char *)&addr)[1], \
289 ((unsigned char *)&addr)[0]
290#elif defined(__BIG_ENDIAN)
291#define HIPQUAD NIPQUAD
292#else
293#error "Please fix asm/byteorder.h"
294#endif /* __LITTLE_ENDIAN */
295
296/*
297 * min()/max() macros that also do
298 * strict type-checking.. See the
299 * "unnecessary" pointer comparison.
300 */
301#define min(x,y) ({ \
302 typeof(x) _x = (x); \
303 typeof(y) _y = (y); \
304 (void) (&_x == &_y); \
305 _x < _y ? _x : _y; })
306
307#define max(x,y) ({ \
308 typeof(x) _x = (x); \
309 typeof(y) _y = (y); \
310 (void) (&_x == &_y); \
311 _x > _y ? _x : _y; })
312
313/*
314 * ..and if you can't take the strict
315 * types, you can specify one yourself.
316 *
317 * Or not use min/max at all, of course.
318 */
319#define min_t(type,x,y) \
320 ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
321#define max_t(type,x,y) \
322 ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
323
324
325/**
326 * container_of - cast a member of a structure out to the containing structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 * @ptr: the pointer to the member.
328 * @type: the type of the container struct this is embedded in.
329 * @member: the name of the member within the struct.
330 *
331 */
332#define container_of(ptr, type, member) ({ \
Daniel Walker78db2ad2007-05-12 16:28:35 -0700333 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
334 (type *)( (char *)__mptr - offsetof(type,member) );})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336/*
337 * Check at compile time that something is of a particular type.
338 * Always evaluates to 1 so you may use it easily in comparisons.
339 */
340#define typecheck(type,x) \
341({ type __dummy; \
342 typeof(x) __dummy2; \
343 (void)(&__dummy == &__dummy2); \
344 1; \
345})
346
Chuck Ebbert711a6602006-01-09 15:59:17 -0800347/*
348 * Check at compile time that 'function' is a certain type, or is a pointer
349 * to that type (needs to use typedef for the function type.)
350 */
351#define typecheck_fn(type,function) \
352({ typeof(type) __tmp = function; \
353 (void)__tmp; \
354})
355
Kyle McMartind4d23ad2007-02-10 01:46:00 -0800356struct sysinfo;
357extern int do_sysinfo(struct sysinfo *info);
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359#endif /* __KERNEL__ */
360
361#define SI_LOAD_SHIFT 16
362struct sysinfo {
363 long uptime; /* Seconds since boot */
364 unsigned long loads[3]; /* 1, 5, and 15 minute load averages */
365 unsigned long totalram; /* Total usable main memory size */
366 unsigned long freeram; /* Available memory size */
367 unsigned long sharedram; /* Amount of shared memory */
368 unsigned long bufferram; /* Memory used by buffers */
369 unsigned long totalswap; /* Total swap space size */
370 unsigned long freeswap; /* swap space still available */
371 unsigned short procs; /* Number of current processes */
372 unsigned short pad; /* explicit padding for m68k */
373 unsigned long totalhigh; /* Total high memory size */
374 unsigned long freehigh; /* Available high memory size */
375 unsigned int mem_unit; /* Memory unit size in bytes */
376 char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
377};
378
Nikita Danilovc0398ee2005-10-30 15:03:10 -0800379/* Force a compilation error if condition is true */
Andi Kleen921717a2005-09-13 01:25:13 -0700380#define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Jan Beulich4552d5d2006-06-26 13:57:28 +0200382/* Force a compilation error if condition is true, but also produce a
383 result (of value 0 and type size_t), so the expression can be used
384 e.g. in a structure initializer (or where-ever else comma expressions
385 aren't permitted). */
386#define BUILD_BUG_ON_ZERO(e) (sizeof(char[1 - 2 * !!(e)]) - 1)
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388/* Trap pasters of __FUNCTION__ at compile-time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389#define __FUNCTION__ (__func__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Christoph Lameter08e0f6a2006-09-27 01:50:06 -0700391/* This helps us to avoid #ifdef CONFIG_NUMA */
392#ifdef CONFIG_NUMA
393#define NUMA_BUILD 1
394#else
395#define NUMA_BUILD 0
396#endif
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398#endif