blob: 284ea995646eafff71eebee1d76f834badcc6c19 [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 */
Alexey Dobriyana79ff732010-04-13 11:21:46 +02007#define __ALIGN_KERNEL(x, a) __ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1)
8#define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10#ifdef __KERNEL__
11
12#include <stdarg.h>
13#include <linux/linkage.h>
14#include <linux/stddef.h>
15#include <linux/types.h>
16#include <linux/compiler.h>
17#include <linux/bitops.h>
David Howellsf0d1b0b2006-12-08 02:37:49 -080018#include <linux/log2.h>
Andrew Mortone0deaff2008-07-25 01:45:24 -070019#include <linux/typecheck.h>
Jason Barone9d376f2009-02-05 11:51:38 -050020#include <linux/dynamic_debug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/byteorder.h>
22#include <asm/bug.h>
23
Roman Zippel3eb3c742007-01-10 14:45:28 +010024extern const char linux_banner[];
25extern const char linux_proc_banner[];
26
Zhang, Yanmin44f564a2008-04-29 01:00:55 -070027#define USHORT_MAX ((u16)(~0U))
28#define SHORT_MAX ((s16)(USHORT_MAX>>1))
29#define SHORT_MIN (-SHORT_MAX - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#define INT_MAX ((int)(~0U>>1))
31#define INT_MIN (-INT_MAX - 1)
32#define UINT_MAX (~0U)
33#define LONG_MAX ((long)(~0UL>>1))
34#define LONG_MIN (-LONG_MAX - 1)
35#define ULONG_MAX (~0UL)
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -070036#define LLONG_MAX ((long long)(~0ULL>>1))
37#define LLONG_MIN (-LLONG_MAX - 1)
38#define ULLONG_MAX (~0ULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#define STACK_MAGIC 0xdeadbeef
41
Alexey Dobriyana79ff732010-04-13 11:21:46 +020042#define ALIGN(x, a) __ALIGN_KERNEL((x), (a))
Matthew Wilcoxa83308e2007-09-11 15:23:47 -070043#define PTR_ALIGN(p, a) ((typeof(p))ALIGN((unsigned long)(p), (a)))
Herbert Xuf10db622008-02-06 01:37:05 -080044#define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0)
Linus Torvalds2ea58142006-11-26 19:05:22 -080045
Rusty Russellc5e631c2007-05-06 14:51:05 -070046#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
47
Yinghai Lu9b3be9f2010-02-10 01:20:29 -080048/*
49 * This looks more complex than it should be. But we need to
50 * get the type for the ~ right in round_down (it needs to be
51 * as wide as the result!), and we want to evaluate the macro
52 * arguments just once each.
53 */
54#define __round_mask(x, y) ((__typeof__(x))((y)-1))
55#define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
56#define round_down(x, y) ((x) & ~__round_mask(x, y))
57
Jan Beulich4552d5d2006-06-26 13:57:28 +020058#define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f))
Steven Whitehouse930631e2006-09-25 23:32:40 -070059#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
David Howellsb4cac1a2006-07-10 04:44:54 -070060#define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
Darrick J. Wong9fe06082009-01-06 14:40:51 -080061#define DIV_ROUND_CLOSEST(x, divisor)( \
62{ \
63 typeof(divisor) __divisor = divisor; \
64 (((x) + ((__divisor) / 2)) / (__divisor)); \
65} \
66)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Eduard - Gabriel Munteanuca31e142008-07-05 12:14:23 +030068#define _RET_IP_ (unsigned long)__builtin_return_address(0)
69#define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; })
70
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +020071#ifdef CONFIG_LBDAF
Jens Axboe2da96ac2007-10-12 12:40:38 +020072# include <asm/div64.h>
73# define sector_div(a, b) do_div(a, b)
74#else
75# define sector_div(n, b)( \
76{ \
77 int _res; \
78 _res = (n) % (b); \
79 (n) /= (b); \
80 _res; \
81} \
82)
83#endif
84
Andrew Morton218e1802007-05-10 03:15:18 -070085/**
86 * upper_32_bits - return bits 32-63 of a number
87 * @n: the number we're accessing
88 *
89 * A basic shift-right of a 64- or 32-bit quantity. Use this to suppress
90 * the "right shift count >= width of type" warning when that quantity is
91 * 32-bits.
92 */
93#define upper_32_bits(n) ((u32)(((n) >> 16) >> 16))
94
Joerg Roedel204b8852008-07-29 22:33:42 -070095/**
96 * lower_32_bits - return bits 0-31 of a number
97 * @n: the number we're accessing
98 */
99#define lower_32_bits(n) ((u32)(n))
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#define KERN_EMERG "<0>" /* system is unusable */
102#define KERN_ALERT "<1>" /* action must be taken immediately */
103#define KERN_CRIT "<2>" /* critical conditions */
104#define KERN_ERR "<3>" /* error conditions */
105#define KERN_WARNING "<4>" /* warning conditions */
106#define KERN_NOTICE "<5>" /* normal but significant condition */
107#define KERN_INFO "<6>" /* informational */
108#define KERN_DEBUG "<7>" /* debug-level messages */
109
Linus Torvaldse28d7132009-06-16 11:02:28 -0700110/* Use the default kernel loglevel */
111#define KERN_DEFAULT "<d>"
Ingo Molnar47492522007-10-16 23:30:29 -0700112/*
113 * Annotation for a "continued" line of log printout (only done after a
114 * line that had no enclosing \n). Only to be used by core/arch code
115 * during early bootup (a continued line is not SMP-safe otherwise).
116 */
Linus Torvalds5fd29d62009-06-16 10:57:02 -0700117#define KERN_CONT "<c>"
Ingo Molnar47492522007-10-16 23:30:29 -0700118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119extern int console_printk[];
120
121#define console_loglevel (console_printk[0])
122#define default_message_loglevel (console_printk[1])
123#define minimum_console_loglevel (console_printk[2])
124#define default_console_loglevel (console_printk[3])
125
126struct completion;
akpm@osdl.orgdf2e71f2006-01-09 20:51:37 -0800127struct pt_regs;
128struct user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Uwe Kleine-König070cb062008-08-12 15:08:59 -0700130#ifdef CONFIG_PREEMPT_VOLUNTARY
131extern int _cond_resched(void);
132# define might_resched() _cond_resched()
133#else
134# define might_resched() do { } while (0)
135#endif
136
Randy Dunlap7106a272008-10-29 14:01:15 -0700137#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
Simon Kagstromd8948372009-12-23 11:08:18 +0100138 void __might_sleep(const char *file, int line, int preempt_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/**
140 * might_sleep - annotation for functions that can sleep
141 *
142 * this macro will print a stack trace if it is executed in an atomic
143 * context (spinlock, irq-handler, ...).
144 *
145 * This is a useful debugging help to be able to catch problems early and not
Jim Cromiee20ec992006-11-30 04:46:13 +0100146 * be bitten later when the calling function happens to sleep when it is not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 * supposed to.
148 */
Ingo Molnarf8cbd992005-06-25 14:57:39 -0700149# define might_sleep() \
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +0200150 do { __might_sleep(__FILE__, __LINE__, 0); might_resched(); } while (0)
Ingo Molnarf8cbd992005-06-25 14:57:39 -0700151#else
Simon Kagstromd8948372009-12-23 11:08:18 +0100152 static inline void __might_sleep(const char *file, int line,
153 int preempt_offset) { }
Ingo Molnarf8cbd992005-06-25 14:57:39 -0700154# define might_sleep() do { might_resched(); } while (0)
155#endif
156
Hua Zhong368a5fa2006-06-23 02:05:42 -0700157#define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0)
Ingo Molnarf8cbd992005-06-25 14:57:39 -0700158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159#define abs(x) ({ \
Rolf Eike Beera49c59c2009-09-22 16:44:03 -0700160 long __x = (x); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 (__x < 0) ? -__x : __x; \
162 })
163
Nick Piggin3ee1afa2008-09-10 13:37:17 +0200164#ifdef CONFIG_PROVE_LOCKING
165void might_fault(void);
166#else
167static inline void might_fault(void)
168{
169 might_sleep();
170}
171#endif
172
Alan Sterne041c682006-03-27 01:16:30 -0800173extern struct atomic_notifier_head panic_notifier_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174extern long (*panic_blink)(long time);
175NORET_TYPE void panic(const char * fmt, ...)
Andi Kleena586df02007-07-21 17:10:00 +0200176 __attribute__ ((NORET_AND format (printf, 1, 2))) __cold;
Andrew Mortondd287792006-03-23 03:00:57 -0800177extern void oops_enter(void);
178extern void oops_exit(void);
179extern int oops_may_print(void);
Harvey Harrisonec701582008-02-08 04:19:55 -0800180NORET_TYPE void do_exit(long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 ATTRIB_NORET;
182NORET_TYPE void complete_and_exit(struct completion *, long)
183 ATTRIB_NORET;
184extern unsigned long simple_strtoul(const char *,char **,unsigned int);
185extern long simple_strtol(const char *,char **,unsigned int);
186extern unsigned long long simple_strtoull(const char *,char **,unsigned int);
187extern long long simple_strtoll(const char *,char **,unsigned int);
Yi Yang06b2a762008-02-08 04:21:57 -0800188extern int strict_strtoul(const char *, unsigned int, unsigned long *);
189extern int strict_strtol(const char *, unsigned int, long *);
190extern int strict_strtoull(const char *, unsigned int, unsigned long long *);
191extern int strict_strtoll(const char *, unsigned int, long long *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192extern int sprintf(char * buf, const char * fmt, ...)
193 __attribute__ ((format (printf, 2, 3)));
194extern int vsprintf(char *buf, const char *, va_list)
195 __attribute__ ((format (printf, 2, 0)));
196extern int snprintf(char * buf, size_t size, const char * fmt, ...)
197 __attribute__ ((format (printf, 3, 4)));
198extern int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
199 __attribute__ ((format (printf, 3, 0)));
200extern int scnprintf(char * buf, size_t size, const char * fmt, ...)
201 __attribute__ ((format (printf, 3, 4)));
202extern int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
203 __attribute__ ((format (printf, 3, 0)));
Jeremy Fitzhardingee9059142006-06-25 05:49:17 -0700204extern char *kasprintf(gfp_t gfp, const char *fmt, ...)
205 __attribute__ ((format (printf, 2, 3)));
Jeremy Fitzhardinge11443ec2007-04-30 15:09:56 -0700206extern char *kvasprintf(gfp_t gfp, const char *fmt, va_list args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208extern int sscanf(const char *, const char *, ...)
209 __attribute__ ((format (scanf, 2, 3)));
210extern int vsscanf(const char *, const char *, va_list)
211 __attribute__ ((format (scanf, 2, 0)));
212
213extern int get_option(char **str, int *pint);
214extern char *get_options(const char *str, int nints, int *ints);
Jeremy Fitzhardinged974ae32008-07-24 16:27:46 -0700215extern unsigned long long memparse(const char *ptr, char **retptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Trent Piepho5e376612006-05-15 09:44:06 -0700217extern int core_kernel_text(unsigned long addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218extern int __kernel_text_address(unsigned long addr);
219extern int kernel_text_address(unsigned long addr);
Arjan van de Venab7476c2008-08-15 15:29:38 -0700220extern int func_ptr_is_kernel_text(void *ptr);
Arjan van de Venab7476c2008-08-15 15:29:38 -0700221
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -0800222struct pid;
223extern struct pid *session_of_pgrp(struct pid *pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Thomas Renningera0ad05c2008-09-01 14:27:02 +0200225/*
226 * FW_BUG
227 * Add this to a message where you are sure the firmware is buggy or behaves
228 * really stupid or out of spec. Be aware that the responsible BIOS developer
229 * should be able to fix this issue or at least get a concrete idea of the
230 * problem by reading your message without the need of looking at the kernel
231 * code.
232 *
233 * Use it for definite and high priority BIOS bugs.
234 *
235 * FW_WARN
236 * Use it for not that clear (e.g. could the kernel messed up things already?)
237 * and medium priority BIOS bugs.
238 *
239 * FW_INFO
240 * Use this one if you want to tell the user or vendor about something
241 * suspicious, but generally harmless related to the firmware.
242 *
243 * Use it for information or very low priority BIOS bugs.
244 */
245#define FW_BUG "[Firmware Bug]: "
246#define FW_WARN "[Firmware Warn]: "
247#define FW_INFO "[Firmware Info]: "
248
Matt Mackalld59745c2005-05-01 08:59:02 -0700249#ifdef CONFIG_PRINTK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250asmlinkage int vprintk(const char *fmt, va_list args)
251 __attribute__ ((format (printf, 1, 0)));
252asmlinkage int printk(const char * fmt, ...)
Andi Kleena586df02007-07-21 17:10:00 +0200253 __attribute__ ((format (printf, 1, 2))) __cold;
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800254
Christian Borntraeger5c828712009-10-23 14:58:11 +0200255extern int __printk_ratelimit(const char *func);
256#define printk_ratelimit() __printk_ratelimit(__func__)
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800257extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
258 unsigned int interval_msec);
Ingo Molnarf036be92009-02-05 13:45:43 +0100259
Dave Youngaf913222009-09-22 16:43:33 -0700260extern int printk_delay_msec;
261
Ingo Molnarf036be92009-02-05 13:45:43 +0100262/*
263 * Print a one-time message (analogous to WARN_ONCE() et al):
264 */
265#define printk_once(x...) ({ \
Joe Perches0b2749a2009-12-14 18:00:19 -0800266 static bool __print_once; \
Ingo Molnarf036be92009-02-05 13:45:43 +0100267 \
Joe Perches0b2749a2009-12-14 18:00:19 -0800268 if (!__print_once) { \
269 __print_once = true; \
Ingo Molnarf036be92009-02-05 13:45:43 +0100270 printk(x); \
271 } \
272})
273
Neil Horman04d491a2009-04-02 16:58:57 -0700274void log_buf_kexec_setup(void);
Matt Mackalld59745c2005-05-01 08:59:02 -0700275#else
276static inline int vprintk(const char *s, va_list args)
277 __attribute__ ((format (printf, 1, 0)));
278static inline int vprintk(const char *s, va_list args) { return 0; }
279static inline int printk(const char *s, ...)
280 __attribute__ ((format (printf, 1, 2)));
Andi Kleena586df02007-07-21 17:10:00 +0200281static inline int __cold printk(const char *s, ...) { return 0; }
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800282static inline int printk_ratelimit(void) { return 0; }
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800283static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies, \
284 unsigned int interval_msec) \
285 { return false; }
Ingo Molnarf036be92009-02-05 13:45:43 +0100286
287/* No effect, but we still get type checking even in the !PRINTK case: */
288#define printk_once(x...) printk(x)
289
Neil Horman04d491a2009-04-02 16:58:57 -0700290static inline void log_buf_kexec_setup(void)
291{
292}
Matt Mackalld59745c2005-05-01 08:59:02 -0700293#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Ingo Molnarced9cd42008-08-11 14:38:12 +0200295extern int printk_needs_cpu(int cpu);
296extern void printk_tick(void);
297
Jiri Slabye17ba732008-05-12 15:44:40 +0200298extern void asmlinkage __attribute__((format(printf, 1, 2)))
Ingo Molnar076f9772008-01-30 13:33:06 +0100299 early_printk(const char *fmt, ...);
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301unsigned long int_sqrt(unsigned long);
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303static inline void console_silent(void)
304{
305 console_loglevel = 0;
306}
307
308static inline void console_verbose(void)
309{
310 if (console_loglevel)
311 console_loglevel = 15;
312}
313
314extern void bust_spinlocks(int yes);
Kirill Korotaeve3e8a752007-02-10 01:46:19 -0800315extern void wake_up_klogd(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */
Adrian Bunkaa727102006-04-10 22:53:59 -0700317extern int panic_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318extern int panic_on_oops;
Don Zickus8da5add2006-09-26 10:52:27 +0200319extern int panic_on_unrecovered_nmi;
Kurt Garloff5211a242009-06-24 14:32:11 -0700320extern int panic_on_io_nmi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321extern const char *print_tainted(void);
Andi Kleen25ddbb12008-10-15 22:01:41 -0700322extern void add_taint(unsigned flag);
323extern int test_taint(unsigned flag);
324extern unsigned long get_taint(void);
David Howellsb920de12008-02-08 04:19:31 -0800325extern int root_mountflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327/* Values used for system_state */
328extern enum system_states {
329 SYSTEM_BOOTING,
330 SYSTEM_RUNNING,
331 SYSTEM_HALT,
332 SYSTEM_POWER_OFF,
333 SYSTEM_RESTART,
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500334 SYSTEM_SUSPEND_DISK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335} system_state;
336
Andi Kleen25ddbb12008-10-15 22:01:41 -0700337#define TAINT_PROPRIETARY_MODULE 0
338#define TAINT_FORCED_MODULE 1
339#define TAINT_UNSAFE_SMP 2
340#define TAINT_FORCED_RMMOD 3
341#define TAINT_MACHINE_CHECK 4
342#define TAINT_BAD_PAGE 5
343#define TAINT_USER 6
344#define TAINT_DIE 7
345#define TAINT_OVERRIDDEN_ACPI_TABLE 8
346#define TAINT_WARN 9
Linus Torvalds26e9a392008-10-17 09:50:12 -0700347#define TAINT_CRAP 10
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Andi Kleena586df02007-07-21 17:10:00 +0200349extern void dump_stack(void) __cold;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700351enum {
352 DUMP_PREFIX_NONE,
353 DUMP_PREFIX_ADDRESS,
354 DUMP_PREFIX_OFFSET
355};
Randy Dunlapc7909232007-06-08 13:47:04 -0700356extern void hex_dump_to_buffer(const void *buf, size_t len,
357 int rowsize, int groupsize,
358 char *linebuf, size_t linebuflen, bool ascii);
359extern void print_hex_dump(const char *level, const char *prefix_str,
360 int prefix_type, int rowsize, int groupsize,
Artem Bityutskiy6a0ed912007-08-07 23:43:14 +0300361 const void *buf, size_t len, bool ascii);
Randy Dunlapc7909232007-06-08 13:47:04 -0700362extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
Alan Sterneb9a9a52007-08-10 13:01:07 -0700363 const void *buf, size_t len);
Harvey Harrison3fc95772008-05-14 16:05:49 -0700364
365extern const char hex_asc[];
366#define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
367#define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
368
369static inline char *pack_hex_byte(char *buf, u8 byte)
370{
371 *buf++ = hex_asc_hi(byte);
372 *buf++ = hex_asc_lo(byte);
373 return buf;
374}
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700375
Martin Schwidefskyd091c2f2008-11-12 21:16:43 +0100376#ifndef pr_fmt
377#define pr_fmt(fmt) fmt
378#endif
379
380#define pr_emerg(fmt, ...) \
381 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
382#define pr_alert(fmt, ...) \
383 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
384#define pr_crit(fmt, ...) \
385 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
386#define pr_err(fmt, ...) \
387 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
388#define pr_warning(fmt, ...) \
389 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
390#define pr_notice(fmt, ...) \
391 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
392#define pr_info(fmt, ...) \
393 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
Cyrill Gorcunov311d0762009-03-31 15:23:51 -0700394#define pr_cont(fmt, ...) \
395 printk(KERN_CONT fmt, ##__VA_ARGS__)
Emil Medve1f7c8232007-10-16 23:29:48 -0700396
Michael Ellerman4ccb4572009-04-09 14:48:24 -0700397/* pr_devel() should produce zero code unless DEBUG is defined */
398#ifdef DEBUG
399#define pr_devel(fmt, ...) \
400 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
401#else
402#define pr_devel(fmt, ...) \
403 ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; })
404#endif
405
Pavel Machek1cc6daf2006-08-08 01:37:15 +0200406/* If you are writing a driver, please use dev_dbg instead */
Cornelia Huckd0d85ff2008-12-04 16:55:47 +0100407#if defined(DEBUG)
408#define pr_debug(fmt, ...) \
409 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Jason Barone9d376f2009-02-05 11:51:38 -0500410#elif defined(CONFIG_DYNAMIC_DEBUG)
Greg Bankse6e66b02009-03-11 21:07:28 +1100411/* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */
Joe Perches00b55862009-12-14 18:00:14 -0800412#define pr_debug(fmt, ...) \
413 dynamic_pr_debug(fmt, ##__VA_ARGS__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414#else
Martin Schwidefskyd091c2f2008-11-12 21:16:43 +0100415#define pr_debug(fmt, ...) \
416 ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417#endif
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419/*
Joe Perches8a64f332009-12-14 18:00:25 -0800420 * ratelimited messages with local ratelimit_state,
421 * no local ratelimit_state used in the !PRINTK case
422 */
423#ifdef CONFIG_PRINTK
424#define printk_ratelimited(fmt, ...) ({ \
425 static struct ratelimit_state _rs = { \
426 .interval = DEFAULT_RATELIMIT_INTERVAL, \
427 .burst = DEFAULT_RATELIMIT_BURST, \
428 }; \
429 \
430 if (!__ratelimit(&_rs)) \
431 printk(fmt, ##__VA_ARGS__); \
432})
433#else
434/* No effect, but we still get type checking even in the !PRINTK case: */
435#define printk_ratelimited printk
436#endif
437
438#define pr_emerg_ratelimited(fmt, ...) \
439 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
440#define pr_alert_ratelimited(fmt, ...) \
441 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
442#define pr_crit_ratelimited(fmt, ...) \
443 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
444#define pr_err_ratelimited(fmt, ...) \
445 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
446#define pr_warning_ratelimited(fmt, ...) \
447 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
448#define pr_notice_ratelimited(fmt, ...) \
449 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
450#define pr_info_ratelimited(fmt, ...) \
451 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
452/* no pr_cont_ratelimited, don't do that... */
453/* If you are writing a driver, please use dev_dbg instead */
454#if defined(DEBUG)
455#define pr_debug_ratelimited(fmt, ...) \
456 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
457#else
458#define pr_debug_ratelimited(fmt, ...) \
459 ({ if (0) printk_ratelimited(KERN_DEBUG pr_fmt(fmt), \
460 ##__VA_ARGS__); 0; })
461#endif
462
463/*
Ingo Molnar526211b2009-03-05 10:28:45 +0100464 * General tracing related utility functions - trace_printk(),
Steven Rostedt2002c252009-03-05 10:35:56 -0500465 * tracing_on/tracing_off and tracing_start()/tracing_stop
466 *
467 * Use tracing_on/tracing_off when you want to quickly turn on or off
468 * tracing. It simply enables or disables the recording of the trace events.
GeunSik Lim156f5a72009-06-02 15:01:37 +0900469 * This also corresponds to the user space /sys/kernel/debug/tracing/tracing_on
Steven Rostedt2002c252009-03-05 10:35:56 -0500470 * file, which gives a means for the kernel and userspace to interact.
471 * Place a tracing_off() in the kernel where you want tracing to end.
472 * From user space, examine the trace, and then echo 1 > tracing_on
473 * to continue tracing.
474 *
475 * tracing_stop/tracing_start has slightly more overhead. It is used
476 * by things like suspend to ram where disabling the recording of the
477 * trace is not enough, but tracing must actually stop because things
478 * like calling smp_processor_id() may crash the system.
479 *
480 * Most likely, you want to use tracing_on/tracing_off.
Ingo Molnar526211b2009-03-05 10:28:45 +0100481 */
Steven Rostedt2002c252009-03-05 10:35:56 -0500482#ifdef CONFIG_RING_BUFFER
483void tracing_on(void);
484void tracing_off(void);
485/* trace_off_permanent stops recording with no way to bring it back */
486void tracing_off_permanent(void);
487int tracing_is_on(void);
488#else
489static inline void tracing_on(void) { }
490static inline void tracing_off(void) { }
491static inline void tracing_off_permanent(void) { }
492static inline int tracing_is_on(void) { return 0; }
493#endif
Ingo Molnar526211b2009-03-05 10:28:45 +0100494#ifdef CONFIG_TRACING
495extern void tracing_start(void);
496extern void tracing_stop(void);
497extern void ftrace_off_permanent(void);
498
499extern void
500ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3);
501
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100502static inline void __attribute__ ((format (printf, 1, 2)))
503____trace_printk_check_format(const char *fmt, ...)
504{
505}
506#define __trace_printk_check_format(fmt, args...) \
507do { \
508 if (0) \
509 ____trace_printk_check_format(fmt, ##args); \
510} while (0)
511
Ingo Molnar526211b2009-03-05 10:28:45 +0100512/**
513 * trace_printk - printf formatting in the ftrace buffer
514 * @fmt: the printf format for printing
515 *
516 * Note: __trace_printk is an internal function for trace_printk and
517 * the @ip is passed in via the trace_printk macro.
518 *
519 * This function allows a kernel developer to debug fast path sections
520 * that printk is not appropriate for. By scattering in various
521 * printk like tracing in the code, a developer can quickly see
522 * where problems are occurring.
523 *
524 * This is intended as a debugging tool for the developer only.
525 * Please refrain from leaving trace_printks scattered around in
526 * your code.
527 */
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100528
529#define trace_printk(fmt, args...) \
530do { \
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100531 __trace_printk_check_format(fmt, ##args); \
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100532 if (__builtin_constant_p(fmt)) { \
533 static const char *trace_printk_fmt \
534 __attribute__((section("__trace_printk_fmt"))) = \
535 __builtin_constant_p(fmt) ? fmt : NULL; \
536 \
537 __trace_bprintk(_THIS_IP_, trace_printk_fmt, ##args); \
538 } else \
539 __trace_printk(_THIS_IP_, fmt, ##args); \
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100540} while (0)
541
Ingo Molnar526211b2009-03-05 10:28:45 +0100542extern int
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100543__trace_bprintk(unsigned long ip, const char *fmt, ...)
544 __attribute__ ((format (printf, 2, 3)));
545
546extern int
Ingo Molnar526211b2009-03-05 10:28:45 +0100547__trace_printk(unsigned long ip, const char *fmt, ...)
548 __attribute__ ((format (printf, 2, 3)));
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100549
Steven Rostedt03889382009-12-11 09:48:22 -0500550extern void trace_dump_stack(void);
551
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100552/*
553 * The double __builtin_constant_p is because gcc will give us an error
554 * if we try to allocate the static variable to fmt if it is not a
555 * constant. Even with the outer if statement.
556 */
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100557#define ftrace_vprintk(fmt, vargs) \
558do { \
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100559 if (__builtin_constant_p(fmt)) { \
560 static const char *trace_printk_fmt \
561 __attribute__((section("__trace_printk_fmt"))) = \
562 __builtin_constant_p(fmt) ? fmt : NULL; \
Ingo Molnar7bffc232009-03-09 10:11:36 +0100563 \
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100564 __ftrace_vbprintk(_THIS_IP_, trace_printk_fmt, vargs); \
565 } else \
566 __ftrace_vprintk(_THIS_IP_, fmt, vargs); \
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100567} while (0)
568
Ingo Molnar526211b2009-03-05 10:28:45 +0100569extern int
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100570__ftrace_vbprintk(unsigned long ip, const char *fmt, va_list ap);
571
572extern int
Ingo Molnar526211b2009-03-05 10:28:45 +0100573__ftrace_vprintk(unsigned long ip, const char *fmt, va_list ap);
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100574
Ingo Molnar526211b2009-03-05 10:28:45 +0100575extern void ftrace_dump(void);
576#else
577static inline void
578ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3) { }
579static inline int
580trace_printk(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
581
582static inline void tracing_start(void) { }
583static inline void tracing_stop(void) { }
584static inline void ftrace_off_permanent(void) { }
Steven Rostedte36c5452009-12-14 15:58:33 -0500585static inline void trace_dump_stack(void) { }
Ingo Molnar526211b2009-03-05 10:28:45 +0100586static inline int
587trace_printk(const char *fmt, ...)
588{
589 return 0;
590}
591static inline int
592ftrace_vprintk(const char *fmt, va_list ap)
593{
594 return 0;
595}
596static inline void ftrace_dump(void) { }
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100597#endif /* CONFIG_TRACING */
Ingo Molnar526211b2009-03-05 10:28:45 +0100598
599/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 * Display an IP address in readable format.
601 */
602
603#define NIPQUAD(addr) \
604 ((unsigned char *)&addr)[0], \
605 ((unsigned char *)&addr)[1], \
606 ((unsigned char *)&addr)[2], \
607 ((unsigned char *)&addr)[3]
Joe Perches46b86a22006-01-13 14:29:07 -0800608#define NIPQUAD_FMT "%u.%u.%u.%u"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610/*
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700611 * min()/max()/clamp() macros that also do
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 * strict type-checking.. See the
613 * "unnecessary" pointer comparison.
614 */
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700615#define min(x, y) ({ \
616 typeof(x) _min1 = (x); \
617 typeof(y) _min2 = (y); \
618 (void) (&_min1 == &_min2); \
619 _min1 < _min2 ? _min1 : _min2; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700621#define max(x, y) ({ \
622 typeof(x) _max1 = (x); \
623 typeof(y) _max2 = (y); \
624 (void) (&_max1 == &_max2); \
625 _max1 > _max2 ? _max1 : _max2; })
626
627/**
628 * clamp - return a value clamped to a given range with strict typechecking
629 * @val: current value
630 * @min: minimum allowable value
631 * @max: maximum allowable value
632 *
633 * This macro does strict typechecking of min/max to make sure they are of the
634 * same type as val. See the unnecessary pointer comparisons.
635 */
636#define clamp(val, min, max) ({ \
637 typeof(val) __val = (val); \
638 typeof(min) __min = (min); \
639 typeof(max) __max = (max); \
640 (void) (&__val == &__min); \
641 (void) (&__val == &__max); \
642 __val = __val < __min ? __min: __val; \
643 __val > __max ? __max: __val; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645/*
646 * ..and if you can't take the strict
647 * types, you can specify one yourself.
648 *
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700649 * Or not use min/max/clamp at all, of course.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 */
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700651#define min_t(type, x, y) ({ \
652 type __min1 = (x); \
653 type __min2 = (y); \
654 __min1 < __min2 ? __min1: __min2; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700656#define max_t(type, x, y) ({ \
657 type __max1 = (x); \
658 type __max2 = (y); \
659 __max1 > __max2 ? __max1: __max2; })
660
661/**
662 * clamp_t - return a value clamped to a given range using a given type
663 * @type: the type of variable to use
664 * @val: current value
665 * @min: minimum allowable value
666 * @max: maximum allowable value
667 *
668 * This macro does no typechecking and uses temporary variables of type
669 * 'type' to make all the comparisons.
670 */
671#define clamp_t(type, val, min, max) ({ \
672 type __val = (val); \
673 type __min = (min); \
674 type __max = (max); \
675 __val = __val < __min ? __min: __val; \
676 __val > __max ? __max: __val; })
677
678/**
679 * clamp_val - return a value clamped to a given range using val's type
680 * @val: current value
681 * @min: minimum allowable value
682 * @max: maximum allowable value
683 *
684 * This macro does no typechecking and uses temporary variables of whatever
685 * type the input argument 'val' is. This is useful when val is an unsigned
686 * type and min and max are literals that will otherwise be assigned a signed
687 * integer type.
688 */
689#define clamp_val(val, min, max) ({ \
690 typeof(val) __val = (val); \
691 typeof(val) __min = (min); \
692 typeof(val) __max = (max); \
693 __val = __val < __min ? __min: __val; \
694 __val > __max ? __max: __val; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Wu Fengguang91f68b72009-01-07 18:09:12 -0800696
697/*
698 * swap - swap value of @a and @b
699 */
Peter Zijlstraac7b9002009-02-04 15:11:59 -0800700#define swap(a, b) \
701 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
Wu Fengguang91f68b72009-01-07 18:09:12 -0800702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703/**
704 * container_of - cast a member of a structure out to the containing structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 * @ptr: the pointer to the member.
706 * @type: the type of the container struct this is embedded in.
707 * @member: the name of the member within the struct.
708 *
709 */
710#define container_of(ptr, type, member) ({ \
Daniel Walker78db2ad2007-05-12 16:28:35 -0700711 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
712 (type *)( (char *)__mptr - offsetof(type,member) );})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Kyle McMartind4d23ad2007-02-10 01:46:00 -0800714struct sysinfo;
715extern int do_sysinfo(struct sysinfo *info);
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717#endif /* __KERNEL__ */
718
Arnd Bergmannc01226c2009-09-21 16:37:12 +0200719#ifndef __EXPORTED_HEADERS__
720#ifndef __KERNEL__
721#warning Attempt to use kernel headers from user space, see http://kernelnewbies.org/KernelHeaders
722#endif /* __KERNEL__ */
723#endif /* __EXPORTED_HEADERS__ */
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725#define SI_LOAD_SHIFT 16
726struct sysinfo {
727 long uptime; /* Seconds since boot */
728 unsigned long loads[3]; /* 1, 5, and 15 minute load averages */
729 unsigned long totalram; /* Total usable main memory size */
730 unsigned long freeram; /* Available memory size */
731 unsigned long sharedram; /* Amount of shared memory */
732 unsigned long bufferram; /* Memory used by buffers */
733 unsigned long totalswap; /* Total swap space size */
734 unsigned long freeswap; /* swap space still available */
735 unsigned short procs; /* Number of current processes */
736 unsigned short pad; /* explicit padding for m68k */
737 unsigned long totalhigh; /* Total high memory size */
738 unsigned long freehigh; /* Available high memory size */
739 unsigned int mem_unit; /* Memory unit size in bytes */
740 char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
741};
742
Nikita Danilovc0398ee2005-10-30 15:03:10 -0800743/* Force a compilation error if condition is true */
Jan Beulich8c87df42009-09-22 16:43:52 -0700744#define BUILD_BUG_ON(condition) ((void)BUILD_BUG_ON_ZERO(condition))
745
746/* Force a compilation error if condition is constant and true */
747#define MAYBE_BUILD_BUG_ON(cond) ((void)sizeof(char[1 - 2 * !!(cond)]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Roland Dreiercc8ef6e2010-01-15 17:01:22 -0800749/* Force a compilation error if a constant expression is not a power of 2 */
750#define BUILD_BUG_ON_NOT_POWER_OF_2(n) \
751 BUILD_BUG_ON((n) == 0 || (((n) & ((n) - 1)) != 0))
752
Jan Beulich4552d5d2006-06-26 13:57:28 +0200753/* Force a compilation error if condition is true, but also produce a
754 result (of value 0 and type size_t), so the expression can be used
755 e.g. in a structure initializer (or where-ever else comma expressions
756 aren't permitted). */
Jan Beulich8c87df42009-09-22 16:43:52 -0700757#define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); }))
758#define BUILD_BUG_ON_NULL(e) ((void *)sizeof(struct { int:-!!(e); }))
Jan Beulich4552d5d2006-06-26 13:57:28 +0200759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760/* Trap pasters of __FUNCTION__ at compile-time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761#define __FUNCTION__ (__func__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Christoph Lameter08e0f6a2006-09-27 01:50:06 -0700763/* This helps us to avoid #ifdef CONFIG_NUMA */
764#ifdef CONFIG_NUMA
765#define NUMA_BUILD 1
766#else
767#define NUMA_BUILD 0
768#endif
769
Steven Rostedt29e71ab2008-08-14 15:45:10 -0400770/* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */
771#ifdef CONFIG_FTRACE_MCOUNT_RECORD
772# define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD
773#endif
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775#endif