blob: d848cb85465555f289ab93ee8ef6269a52d3f747 [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
Alexey Dobriyan4be929b2010-05-24 14:33:03 -070027#define USHRT_MAX ((u16)(~0U))
28#define SHRT_MAX ((s16)(USHRT_MAX>>1))
29#define SHRT_MIN ((s16)(-SHRT_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))
Alexey Dobriyan9f93ff52010-04-13 14:09:15 +020043#define __ALIGN_MASK(x, mask) __ALIGN_KERNEL_MASK((x), (mask))
Matthew Wilcoxa83308e2007-09-11 15:23:47 -070044#define PTR_ALIGN(p, a) ((typeof(p))ALIGN((unsigned long)(p), (a)))
Herbert Xuf10db622008-02-06 01:37:05 -080045#define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0)
Linus Torvalds2ea58142006-11-26 19:05:22 -080046
Rusty Russellc5e631c2007-05-06 14:51:05 -070047#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
48
Yinghai Lu9b3be9f2010-02-10 01:20:29 -080049/*
50 * This looks more complex than it should be. But we need to
51 * get the type for the ~ right in round_down (it needs to be
52 * as wide as the result!), and we want to evaluate the macro
53 * arguments just once each.
54 */
55#define __round_mask(x, y) ((__typeof__(x))((y)-1))
56#define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
57#define round_down(x, y) ((x) & ~__round_mask(x, y))
58
Jan Beulich4552d5d2006-06-26 13:57:28 +020059#define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f))
Steven Whitehouse930631e2006-09-25 23:32:40 -070060#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
David Howellsb4cac1a2006-07-10 04:44:54 -070061#define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
Darrick J. Wong9fe06082009-01-06 14:40:51 -080062#define DIV_ROUND_CLOSEST(x, divisor)( \
63{ \
64 typeof(divisor) __divisor = divisor; \
65 (((x) + ((__divisor) / 2)) / (__divisor)); \
66} \
67)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Eduard - Gabriel Munteanuca31e142008-07-05 12:14:23 +030069#define _RET_IP_ (unsigned long)__builtin_return_address(0)
70#define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; })
71
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +020072#ifdef CONFIG_LBDAF
Jens Axboe2da96ac2007-10-12 12:40:38 +020073# include <asm/div64.h>
74# define sector_div(a, b) do_div(a, b)
75#else
76# define sector_div(n, b)( \
77{ \
78 int _res; \
79 _res = (n) % (b); \
80 (n) /= (b); \
81 _res; \
82} \
83)
84#endif
85
Andrew Morton218e1802007-05-10 03:15:18 -070086/**
87 * upper_32_bits - return bits 32-63 of a number
88 * @n: the number we're accessing
89 *
90 * A basic shift-right of a 64- or 32-bit quantity. Use this to suppress
91 * the "right shift count >= width of type" warning when that quantity is
92 * 32-bits.
93 */
94#define upper_32_bits(n) ((u32)(((n) >> 16) >> 16))
95
Joerg Roedel204b8852008-07-29 22:33:42 -070096/**
97 * lower_32_bits - return bits 0-31 of a number
98 * @n: the number we're accessing
99 */
100#define lower_32_bits(n) ((u32)(n))
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#define KERN_EMERG "<0>" /* system is unusable */
103#define KERN_ALERT "<1>" /* action must be taken immediately */
104#define KERN_CRIT "<2>" /* critical conditions */
105#define KERN_ERR "<3>" /* error conditions */
106#define KERN_WARNING "<4>" /* warning conditions */
107#define KERN_NOTICE "<5>" /* normal but significant condition */
108#define KERN_INFO "<6>" /* informational */
109#define KERN_DEBUG "<7>" /* debug-level messages */
110
Linus Torvaldse28d7132009-06-16 11:02:28 -0700111/* Use the default kernel loglevel */
112#define KERN_DEFAULT "<d>"
Ingo Molnar47492522007-10-16 23:30:29 -0700113/*
114 * Annotation for a "continued" line of log printout (only done after a
115 * line that had no enclosing \n). Only to be used by core/arch code
116 * during early bootup (a continued line is not SMP-safe otherwise).
117 */
Linus Torvalds5fd29d62009-06-16 10:57:02 -0700118#define KERN_CONT "<c>"
Ingo Molnar47492522007-10-16 23:30:29 -0700119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120extern int console_printk[];
121
122#define console_loglevel (console_printk[0])
123#define default_message_loglevel (console_printk[1])
124#define minimum_console_loglevel (console_printk[2])
125#define default_console_loglevel (console_printk[3])
126
127struct completion;
akpm@osdl.orgdf2e71f2006-01-09 20:51:37 -0800128struct pt_regs;
129struct user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Uwe Kleine-König070cb062008-08-12 15:08:59 -0700131#ifdef CONFIG_PREEMPT_VOLUNTARY
132extern int _cond_resched(void);
133# define might_resched() _cond_resched()
134#else
135# define might_resched() do { } while (0)
136#endif
137
Randy Dunlap7106a272008-10-29 14:01:15 -0700138#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
Simon Kagstromd8948372009-12-23 11:08:18 +0100139 void __might_sleep(const char *file, int line, int preempt_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/**
141 * might_sleep - annotation for functions that can sleep
142 *
143 * this macro will print a stack trace if it is executed in an atomic
144 * context (spinlock, irq-handler, ...).
145 *
146 * This is a useful debugging help to be able to catch problems early and not
Jim Cromiee20ec992006-11-30 04:46:13 +0100147 * be bitten later when the calling function happens to sleep when it is not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 * supposed to.
149 */
Ingo Molnarf8cbd992005-06-25 14:57:39 -0700150# define might_sleep() \
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +0200151 do { __might_sleep(__FILE__, __LINE__, 0); might_resched(); } while (0)
Ingo Molnarf8cbd992005-06-25 14:57:39 -0700152#else
Simon Kagstromd8948372009-12-23 11:08:18 +0100153 static inline void __might_sleep(const char *file, int line,
154 int preempt_offset) { }
Ingo Molnarf8cbd992005-06-25 14:57:39 -0700155# define might_sleep() do { might_resched(); } while (0)
156#endif
157
Hua Zhong368a5fa2006-06-23 02:05:42 -0700158#define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0)
Ingo Molnarf8cbd992005-06-25 14:57:39 -0700159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#define abs(x) ({ \
Rolf Eike Beera49c59c2009-09-22 16:44:03 -0700161 long __x = (x); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 (__x < 0) ? -__x : __x; \
163 })
164
Nick Piggin3ee1afa2008-09-10 13:37:17 +0200165#ifdef CONFIG_PROVE_LOCKING
166void might_fault(void);
167#else
168static inline void might_fault(void)
169{
170 might_sleep();
171}
172#endif
173
Joe Perches7db6f5f2010-06-27 01:02:33 +0000174struct va_format {
175 const char *fmt;
176 va_list *va;
177};
178
Alan Sterne041c682006-03-27 01:16:30 -0800179extern struct atomic_notifier_head panic_notifier_list;
TAMUKI Shoichic7ff0d92010-08-10 18:03:28 -0700180extern long (*panic_blink)(int state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181NORET_TYPE void panic(const char * fmt, ...)
Andi Kleena586df02007-07-21 17:10:00 +0200182 __attribute__ ((NORET_AND format (printf, 1, 2))) __cold;
Andrew Mortondd287792006-03-23 03:00:57 -0800183extern void oops_enter(void);
184extern void oops_exit(void);
Anton Blanchard863a6042010-08-10 18:03:30 -0700185void print_oops_end_marker(void);
Andrew Mortondd287792006-03-23 03:00:57 -0800186extern int oops_may_print(void);
Harvey Harrisonec701582008-02-08 04:19:55 -0800187NORET_TYPE void do_exit(long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 ATTRIB_NORET;
189NORET_TYPE void complete_and_exit(struct completion *, long)
190 ATTRIB_NORET;
191extern unsigned long simple_strtoul(const char *,char **,unsigned int);
192extern long simple_strtol(const char *,char **,unsigned int);
193extern unsigned long long simple_strtoull(const char *,char **,unsigned int);
194extern long long simple_strtoll(const char *,char **,unsigned int);
Yi Yang06b2a762008-02-08 04:21:57 -0800195extern int strict_strtoul(const char *, unsigned int, unsigned long *);
196extern int strict_strtol(const char *, unsigned int, long *);
197extern int strict_strtoull(const char *, unsigned int, unsigned long long *);
198extern int strict_strtoll(const char *, unsigned int, long long *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199extern int sprintf(char * buf, const char * fmt, ...)
200 __attribute__ ((format (printf, 2, 3)));
201extern int vsprintf(char *buf, const char *, va_list)
202 __attribute__ ((format (printf, 2, 0)));
203extern int snprintf(char * buf, size_t size, const char * fmt, ...)
204 __attribute__ ((format (printf, 3, 4)));
205extern int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
206 __attribute__ ((format (printf, 3, 0)));
207extern int scnprintf(char * buf, size_t size, const char * fmt, ...)
208 __attribute__ ((format (printf, 3, 4)));
209extern int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
210 __attribute__ ((format (printf, 3, 0)));
Jeremy Fitzhardingee9059142006-06-25 05:49:17 -0700211extern char *kasprintf(gfp_t gfp, const char *fmt, ...)
212 __attribute__ ((format (printf, 2, 3)));
Jeremy Fitzhardinge11443ec2007-04-30 15:09:56 -0700213extern char *kvasprintf(gfp_t gfp, const char *fmt, va_list args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215extern int sscanf(const char *, const char *, ...)
216 __attribute__ ((format (scanf, 2, 3)));
217extern int vsscanf(const char *, const char *, va_list)
218 __attribute__ ((format (scanf, 2, 0)));
219
220extern int get_option(char **str, int *pint);
221extern char *get_options(const char *str, int nints, int *ints);
Jeremy Fitzhardinged974ae32008-07-24 16:27:46 -0700222extern unsigned long long memparse(const char *ptr, char **retptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Trent Piepho5e376612006-05-15 09:44:06 -0700224extern int core_kernel_text(unsigned long addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225extern int __kernel_text_address(unsigned long addr);
226extern int kernel_text_address(unsigned long addr);
Arjan van de Venab7476c2008-08-15 15:29:38 -0700227extern int func_ptr_is_kernel_text(void *ptr);
Arjan van de Venab7476c2008-08-15 15:29:38 -0700228
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -0800229struct pid;
230extern struct pid *session_of_pgrp(struct pid *pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Thomas Renningera0ad05c2008-09-01 14:27:02 +0200232/*
233 * FW_BUG
234 * Add this to a message where you are sure the firmware is buggy or behaves
235 * really stupid or out of spec. Be aware that the responsible BIOS developer
236 * should be able to fix this issue or at least get a concrete idea of the
237 * problem by reading your message without the need of looking at the kernel
238 * code.
239 *
240 * Use it for definite and high priority BIOS bugs.
241 *
242 * FW_WARN
243 * Use it for not that clear (e.g. could the kernel messed up things already?)
244 * and medium priority BIOS bugs.
245 *
246 * FW_INFO
247 * Use this one if you want to tell the user or vendor about something
248 * suspicious, but generally harmless related to the firmware.
249 *
250 * Use it for information or very low priority BIOS bugs.
251 */
252#define FW_BUG "[Firmware Bug]: "
253#define FW_WARN "[Firmware Warn]: "
254#define FW_INFO "[Firmware Info]: "
255
Huang Yingc6de9f02010-05-31 16:48:09 +0800256/*
257 * HW_ERR
258 * Add this to a message for hardware errors, so that user can report
259 * it to hardware vendor instead of LKML or software vendor.
260 */
261#define HW_ERR "[Hardware Error]: "
262
Matt Mackalld59745c2005-05-01 08:59:02 -0700263#ifdef CONFIG_PRINTK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264asmlinkage int vprintk(const char *fmt, va_list args)
265 __attribute__ ((format (printf, 1, 0)));
266asmlinkage int printk(const char * fmt, ...)
Andi Kleena586df02007-07-21 17:10:00 +0200267 __attribute__ ((format (printf, 1, 2))) __cold;
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800268
Christian Borntraeger5c828712009-10-23 14:58:11 +0200269extern int __printk_ratelimit(const char *func);
270#define printk_ratelimit() __printk_ratelimit(__func__)
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800271extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
272 unsigned int interval_msec);
Ingo Molnarf036be92009-02-05 13:45:43 +0100273
Dave Youngaf913222009-09-22 16:43:33 -0700274extern int printk_delay_msec;
275
Ingo Molnarf036be92009-02-05 13:45:43 +0100276/*
277 * Print a one-time message (analogous to WARN_ONCE() et al):
278 */
279#define printk_once(x...) ({ \
Joe Perches0b2749a2009-12-14 18:00:19 -0800280 static bool __print_once; \
Ingo Molnarf036be92009-02-05 13:45:43 +0100281 \
Joe Perches0b2749a2009-12-14 18:00:19 -0800282 if (!__print_once) { \
283 __print_once = true; \
Ingo Molnarf036be92009-02-05 13:45:43 +0100284 printk(x); \
285 } \
286})
287
Neil Horman04d491a2009-04-02 16:58:57 -0700288void log_buf_kexec_setup(void);
Matt Mackalld59745c2005-05-01 08:59:02 -0700289#else
290static inline int vprintk(const char *s, va_list args)
291 __attribute__ ((format (printf, 1, 0)));
292static inline int vprintk(const char *s, va_list args) { return 0; }
293static inline int printk(const char *s, ...)
294 __attribute__ ((format (printf, 1, 2)));
Andi Kleena586df02007-07-21 17:10:00 +0200295static inline int __cold printk(const char *s, ...) { return 0; }
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800296static inline int printk_ratelimit(void) { return 0; }
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800297static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies, \
298 unsigned int interval_msec) \
299 { return false; }
Ingo Molnarf036be92009-02-05 13:45:43 +0100300
301/* No effect, but we still get type checking even in the !PRINTK case: */
302#define printk_once(x...) printk(x)
303
Neil Horman04d491a2009-04-02 16:58:57 -0700304static inline void log_buf_kexec_setup(void)
305{
306}
Matt Mackalld59745c2005-05-01 08:59:02 -0700307#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Ingo Molnarced9cd42008-08-11 14:38:12 +0200309extern int printk_needs_cpu(int cpu);
310extern void printk_tick(void);
311
Jiri Slabye17ba732008-05-12 15:44:40 +0200312extern void asmlinkage __attribute__((format(printf, 1, 2)))
Ingo Molnar076f9772008-01-30 13:33:06 +0100313 early_printk(const char *fmt, ...);
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315unsigned long int_sqrt(unsigned long);
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317static inline void console_silent(void)
318{
319 console_loglevel = 0;
320}
321
322static inline void console_verbose(void)
323{
324 if (console_loglevel)
325 console_loglevel = 15;
326}
327
328extern void bust_spinlocks(int yes);
Kirill Korotaeve3e8a752007-02-10 01:46:19 -0800329extern void wake_up_klogd(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */
Adrian Bunkaa727102006-04-10 22:53:59 -0700331extern int panic_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332extern int panic_on_oops;
Don Zickus8da5adda2006-09-26 10:52:27 +0200333extern int panic_on_unrecovered_nmi;
Kurt Garloff5211a242009-06-24 14:32:11 -0700334extern int panic_on_io_nmi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335extern const char *print_tainted(void);
Andi Kleen25ddbb12008-10-15 22:01:41 -0700336extern void add_taint(unsigned flag);
337extern int test_taint(unsigned flag);
338extern unsigned long get_taint(void);
David Howellsb920de12008-02-08 04:19:31 -0800339extern int root_mountflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341/* Values used for system_state */
342extern enum system_states {
343 SYSTEM_BOOTING,
344 SYSTEM_RUNNING,
345 SYSTEM_HALT,
346 SYSTEM_POWER_OFF,
347 SYSTEM_RESTART,
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500348 SYSTEM_SUSPEND_DISK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349} system_state;
350
Andi Kleen25ddbb12008-10-15 22:01:41 -0700351#define TAINT_PROPRIETARY_MODULE 0
352#define TAINT_FORCED_MODULE 1
353#define TAINT_UNSAFE_SMP 2
354#define TAINT_FORCED_RMMOD 3
355#define TAINT_MACHINE_CHECK 4
356#define TAINT_BAD_PAGE 5
357#define TAINT_USER 6
358#define TAINT_DIE 7
359#define TAINT_OVERRIDDEN_ACPI_TABLE 8
360#define TAINT_WARN 9
Linus Torvalds26e9a392008-10-17 09:50:12 -0700361#define TAINT_CRAP 10
Ben Hutchings92946bc2010-04-03 19:36:42 +0100362#define TAINT_FIRMWARE_WORKAROUND 11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Andi Kleena586df02007-07-21 17:10:00 +0200364extern void dump_stack(void) __cold;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700366enum {
367 DUMP_PREFIX_NONE,
368 DUMP_PREFIX_ADDRESS,
369 DUMP_PREFIX_OFFSET
370};
Randy Dunlapc7909232007-06-08 13:47:04 -0700371extern void hex_dump_to_buffer(const void *buf, size_t len,
372 int rowsize, int groupsize,
373 char *linebuf, size_t linebuflen, bool ascii);
374extern void print_hex_dump(const char *level, const char *prefix_str,
375 int prefix_type, int rowsize, int groupsize,
Artem Bityutskiy6a0ed912007-08-07 23:43:14 +0300376 const void *buf, size_t len, bool ascii);
Randy Dunlapc7909232007-06-08 13:47:04 -0700377extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
Alan Sterneb9a9a52007-08-10 13:01:07 -0700378 const void *buf, size_t len);
Harvey Harrison3fc95772008-05-14 16:05:49 -0700379
380extern const char hex_asc[];
381#define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
382#define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
383
384static inline char *pack_hex_byte(char *buf, u8 byte)
385{
386 *buf++ = hex_asc_hi(byte);
387 *buf++ = hex_asc_lo(byte);
388 return buf;
389}
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700390
Andy Shevchenko903788892010-05-24 14:33:23 -0700391extern int hex_to_bin(char ch);
392
Martin Schwidefskyd091c2f2008-11-12 21:16:43 +0100393#ifndef pr_fmt
394#define pr_fmt(fmt) fmt
395#endif
396
397#define pr_emerg(fmt, ...) \
398 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
399#define pr_alert(fmt, ...) \
400 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
401#define pr_crit(fmt, ...) \
402 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
403#define pr_err(fmt, ...) \
404 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
405#define pr_warning(fmt, ...) \
406 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Joe Perchesfc62f2f2010-05-24 14:33:08 -0700407#define pr_warn pr_warning
Martin Schwidefskyd091c2f2008-11-12 21:16:43 +0100408#define pr_notice(fmt, ...) \
409 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
410#define pr_info(fmt, ...) \
411 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
Cyrill Gorcunov311d0762009-03-31 15:23:51 -0700412#define pr_cont(fmt, ...) \
413 printk(KERN_CONT fmt, ##__VA_ARGS__)
Emil Medve1f7c8232007-10-16 23:29:48 -0700414
Michael Ellerman4ccb4572009-04-09 14:48:24 -0700415/* pr_devel() should produce zero code unless DEBUG is defined */
416#ifdef DEBUG
417#define pr_devel(fmt, ...) \
418 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
419#else
420#define pr_devel(fmt, ...) \
421 ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; })
422#endif
423
Pavel Machek1cc6daf2006-08-08 01:37:15 +0200424/* If you are writing a driver, please use dev_dbg instead */
Cornelia Huckd0d85ff2008-12-04 16:55:47 +0100425#if defined(DEBUG)
426#define pr_debug(fmt, ...) \
427 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Jason Barone9d376f2009-02-05 11:51:38 -0500428#elif defined(CONFIG_DYNAMIC_DEBUG)
Greg Bankse6e66b02009-03-11 21:07:28 +1100429/* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */
Joe Perches00b55862009-12-14 18:00:14 -0800430#define pr_debug(fmt, ...) \
431 dynamic_pr_debug(fmt, ##__VA_ARGS__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432#else
Martin Schwidefskyd091c2f2008-11-12 21:16:43 +0100433#define pr_debug(fmt, ...) \
434 ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435#endif
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437/*
Joe Perches8a64f332009-12-14 18:00:25 -0800438 * ratelimited messages with local ratelimit_state,
439 * no local ratelimit_state used in the !PRINTK case
440 */
441#ifdef CONFIG_PRINTK
OGAWA Hirofumid8521fc2010-05-24 14:33:11 -0700442#define printk_ratelimited(fmt, ...) ({ \
443 static DEFINE_RATELIMIT_STATE(_rs, \
444 DEFAULT_RATELIMIT_INTERVAL, \
445 DEFAULT_RATELIMIT_BURST); \
446 \
447 if (__ratelimit(&_rs)) \
448 printk(fmt, ##__VA_ARGS__); \
Joe Perches8a64f332009-12-14 18:00:25 -0800449})
450#else
451/* No effect, but we still get type checking even in the !PRINTK case: */
452#define printk_ratelimited printk
453#endif
454
455#define pr_emerg_ratelimited(fmt, ...) \
456 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
457#define pr_alert_ratelimited(fmt, ...) \
458 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
459#define pr_crit_ratelimited(fmt, ...) \
460 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
461#define pr_err_ratelimited(fmt, ...) \
462 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
463#define pr_warning_ratelimited(fmt, ...) \
464 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Joe Perchesfc62f2f2010-05-24 14:33:08 -0700465#define pr_warn_ratelimited pr_warning_ratelimited
Joe Perches8a64f332009-12-14 18:00:25 -0800466#define pr_notice_ratelimited(fmt, ...) \
467 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
468#define pr_info_ratelimited(fmt, ...) \
469 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
470/* no pr_cont_ratelimited, don't do that... */
471/* If you are writing a driver, please use dev_dbg instead */
472#if defined(DEBUG)
473#define pr_debug_ratelimited(fmt, ...) \
474 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
475#else
476#define pr_debug_ratelimited(fmt, ...) \
477 ({ if (0) printk_ratelimited(KERN_DEBUG pr_fmt(fmt), \
478 ##__VA_ARGS__); 0; })
479#endif
480
481/*
Ingo Molnar526211b2009-03-05 10:28:45 +0100482 * General tracing related utility functions - trace_printk(),
Steven Rostedt2002c252009-03-05 10:35:56 -0500483 * tracing_on/tracing_off and tracing_start()/tracing_stop
484 *
485 * Use tracing_on/tracing_off when you want to quickly turn on or off
486 * tracing. It simply enables or disables the recording of the trace events.
GeunSik Lim156f5a72009-06-02 15:01:37 +0900487 * This also corresponds to the user space /sys/kernel/debug/tracing/tracing_on
Steven Rostedt2002c252009-03-05 10:35:56 -0500488 * file, which gives a means for the kernel and userspace to interact.
489 * Place a tracing_off() in the kernel where you want tracing to end.
490 * From user space, examine the trace, and then echo 1 > tracing_on
491 * to continue tracing.
492 *
493 * tracing_stop/tracing_start has slightly more overhead. It is used
494 * by things like suspend to ram where disabling the recording of the
495 * trace is not enough, but tracing must actually stop because things
496 * like calling smp_processor_id() may crash the system.
497 *
498 * Most likely, you want to use tracing_on/tracing_off.
Ingo Molnar526211b2009-03-05 10:28:45 +0100499 */
Steven Rostedt2002c252009-03-05 10:35:56 -0500500#ifdef CONFIG_RING_BUFFER
501void tracing_on(void);
502void tracing_off(void);
503/* trace_off_permanent stops recording with no way to bring it back */
504void tracing_off_permanent(void);
505int tracing_is_on(void);
506#else
507static inline void tracing_on(void) { }
508static inline void tracing_off(void) { }
509static inline void tracing_off_permanent(void) { }
510static inline int tracing_is_on(void) { return 0; }
511#endif
Frederic Weisbeckercecbca92010-04-18 19:08:41 +0200512
513enum ftrace_dump_mode {
514 DUMP_NONE,
515 DUMP_ALL,
516 DUMP_ORIG,
517};
518
Ingo Molnar526211b2009-03-05 10:28:45 +0100519#ifdef CONFIG_TRACING
520extern void tracing_start(void);
521extern void tracing_stop(void);
522extern void ftrace_off_permanent(void);
523
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100524static inline void __attribute__ ((format (printf, 1, 2)))
525____trace_printk_check_format(const char *fmt, ...)
526{
527}
528#define __trace_printk_check_format(fmt, args...) \
529do { \
530 if (0) \
531 ____trace_printk_check_format(fmt, ##args); \
532} while (0)
533
Ingo Molnar526211b2009-03-05 10:28:45 +0100534/**
535 * trace_printk - printf formatting in the ftrace buffer
536 * @fmt: the printf format for printing
537 *
538 * Note: __trace_printk is an internal function for trace_printk and
539 * the @ip is passed in via the trace_printk macro.
540 *
541 * This function allows a kernel developer to debug fast path sections
542 * that printk is not appropriate for. By scattering in various
543 * printk like tracing in the code, a developer can quickly see
544 * where problems are occurring.
545 *
546 * This is intended as a debugging tool for the developer only.
547 * Please refrain from leaving trace_printks scattered around in
548 * your code.
549 */
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100550
551#define trace_printk(fmt, args...) \
552do { \
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100553 __trace_printk_check_format(fmt, ##args); \
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100554 if (__builtin_constant_p(fmt)) { \
555 static const char *trace_printk_fmt \
556 __attribute__((section("__trace_printk_fmt"))) = \
557 __builtin_constant_p(fmt) ? fmt : NULL; \
558 \
559 __trace_bprintk(_THIS_IP_, trace_printk_fmt, ##args); \
560 } else \
561 __trace_printk(_THIS_IP_, fmt, ##args); \
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100562} while (0)
563
Ingo Molnar526211b2009-03-05 10:28:45 +0100564extern int
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100565__trace_bprintk(unsigned long ip, const char *fmt, ...)
566 __attribute__ ((format (printf, 2, 3)));
567
568extern int
Ingo Molnar526211b2009-03-05 10:28:45 +0100569__trace_printk(unsigned long ip, const char *fmt, ...)
570 __attribute__ ((format (printf, 2, 3)));
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100571
Steven Rostedt03889382009-12-11 09:48:22 -0500572extern void trace_dump_stack(void);
573
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100574/*
575 * The double __builtin_constant_p is because gcc will give us an error
576 * if we try to allocate the static variable to fmt if it is not a
577 * constant. Even with the outer if statement.
578 */
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100579#define ftrace_vprintk(fmt, vargs) \
580do { \
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100581 if (__builtin_constant_p(fmt)) { \
582 static const char *trace_printk_fmt \
583 __attribute__((section("__trace_printk_fmt"))) = \
584 __builtin_constant_p(fmt) ? fmt : NULL; \
Ingo Molnar7bffc232009-03-09 10:11:36 +0100585 \
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100586 __ftrace_vbprintk(_THIS_IP_, trace_printk_fmt, vargs); \
587 } else \
588 __ftrace_vprintk(_THIS_IP_, fmt, vargs); \
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100589} while (0)
590
Ingo Molnar526211b2009-03-05 10:28:45 +0100591extern int
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100592__ftrace_vbprintk(unsigned long ip, const char *fmt, va_list ap);
593
594extern int
Ingo Molnar526211b2009-03-05 10:28:45 +0100595__ftrace_vprintk(unsigned long ip, const char *fmt, va_list ap);
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100596
Frederic Weisbeckercecbca92010-04-18 19:08:41 +0200597extern void ftrace_dump(enum ftrace_dump_mode oops_dump_mode);
Ingo Molnar526211b2009-03-05 10:28:45 +0100598#else
Ingo Molnar526211b2009-03-05 10:28:45 +0100599static inline int
600trace_printk(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
601
602static inline void tracing_start(void) { }
603static inline void tracing_stop(void) { }
604static inline void ftrace_off_permanent(void) { }
Steven Rostedte36c5452009-12-14 15:58:33 -0500605static inline void trace_dump_stack(void) { }
Ingo Molnar526211b2009-03-05 10:28:45 +0100606static inline int
607trace_printk(const char *fmt, ...)
608{
609 return 0;
610}
611static inline int
612ftrace_vprintk(const char *fmt, va_list ap)
613{
614 return 0;
615}
Frederic Weisbeckercecbca92010-04-18 19:08:41 +0200616static inline void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) { }
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100617#endif /* CONFIG_TRACING */
Ingo Molnar526211b2009-03-05 10:28:45 +0100618
619/*
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700620 * min()/max()/clamp() macros that also do
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 * strict type-checking.. See the
622 * "unnecessary" pointer comparison.
623 */
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700624#define min(x, y) ({ \
625 typeof(x) _min1 = (x); \
626 typeof(y) _min2 = (y); \
627 (void) (&_min1 == &_min2); \
628 _min1 < _min2 ? _min1 : _min2; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700630#define max(x, y) ({ \
631 typeof(x) _max1 = (x); \
632 typeof(y) _max2 = (y); \
633 (void) (&_max1 == &_max2); \
634 _max1 > _max2 ? _max1 : _max2; })
635
636/**
637 * clamp - return a value clamped to a given range with strict typechecking
638 * @val: current value
639 * @min: minimum allowable value
640 * @max: maximum allowable value
641 *
642 * This macro does strict typechecking of min/max to make sure they are of the
643 * same type as val. See the unnecessary pointer comparisons.
644 */
645#define clamp(val, min, max) ({ \
646 typeof(val) __val = (val); \
647 typeof(min) __min = (min); \
648 typeof(max) __max = (max); \
649 (void) (&__val == &__min); \
650 (void) (&__val == &__max); \
651 __val = __val < __min ? __min: __val; \
652 __val > __max ? __max: __val; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654/*
655 * ..and if you can't take the strict
656 * types, you can specify one yourself.
657 *
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700658 * Or not use min/max/clamp at all, of course.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 */
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700660#define min_t(type, x, y) ({ \
661 type __min1 = (x); \
662 type __min2 = (y); \
663 __min1 < __min2 ? __min1: __min2; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700665#define max_t(type, x, y) ({ \
666 type __max1 = (x); \
667 type __max2 = (y); \
668 __max1 > __max2 ? __max1: __max2; })
669
670/**
671 * clamp_t - return a value clamped to a given range using a given type
672 * @type: the type of variable to use
673 * @val: current value
674 * @min: minimum allowable value
675 * @max: maximum allowable value
676 *
677 * This macro does no typechecking and uses temporary variables of type
678 * 'type' to make all the comparisons.
679 */
680#define clamp_t(type, val, min, max) ({ \
681 type __val = (val); \
682 type __min = (min); \
683 type __max = (max); \
684 __val = __val < __min ? __min: __val; \
685 __val > __max ? __max: __val; })
686
687/**
688 * clamp_val - return a value clamped to a given range using val's type
689 * @val: current value
690 * @min: minimum allowable value
691 * @max: maximum allowable value
692 *
693 * This macro does no typechecking and uses temporary variables of whatever
694 * type the input argument 'val' is. This is useful when val is an unsigned
695 * type and min and max are literals that will otherwise be assigned a signed
696 * integer type.
697 */
698#define clamp_val(val, min, max) ({ \
699 typeof(val) __val = (val); \
700 typeof(val) __min = (min); \
701 typeof(val) __max = (max); \
702 __val = __val < __min ? __min: __val; \
703 __val > __max ? __max: __val; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Wu Fengguang91f68b72009-01-07 18:09:12 -0800705
706/*
707 * swap - swap value of @a and @b
708 */
Peter Zijlstraac7b9002009-02-04 15:11:59 -0800709#define swap(a, b) \
710 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
Wu Fengguang91f68b72009-01-07 18:09:12 -0800711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712/**
713 * container_of - cast a member of a structure out to the containing structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 * @ptr: the pointer to the member.
715 * @type: the type of the container struct this is embedded in.
716 * @member: the name of the member within the struct.
717 *
718 */
719#define container_of(ptr, type, member) ({ \
Daniel Walker78db2ad2007-05-12 16:28:35 -0700720 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
721 (type *)( (char *)__mptr - offsetof(type,member) );})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Kyle McMartind4d23ad2007-02-10 01:46:00 -0800723struct sysinfo;
724extern int do_sysinfo(struct sysinfo *info);
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726#endif /* __KERNEL__ */
727
728#define SI_LOAD_SHIFT 16
729struct sysinfo {
730 long uptime; /* Seconds since boot */
731 unsigned long loads[3]; /* 1, 5, and 15 minute load averages */
732 unsigned long totalram; /* Total usable main memory size */
733 unsigned long freeram; /* Available memory size */
734 unsigned long sharedram; /* Amount of shared memory */
735 unsigned long bufferram; /* Memory used by buffers */
736 unsigned long totalswap; /* Total swap space size */
737 unsigned long freeswap; /* swap space still available */
738 unsigned short procs; /* Number of current processes */
739 unsigned short pad; /* explicit padding for m68k */
740 unsigned long totalhigh; /* Total high memory size */
741 unsigned long freehigh; /* Available high memory size */
742 unsigned int mem_unit; /* Memory unit size in bytes */
743 char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
744};
745
Nikita Danilovc0398ee2005-10-30 15:03:10 -0800746/* Force a compilation error if condition is true */
Jan Beulich8c87df42009-09-22 16:43:52 -0700747#define BUILD_BUG_ON(condition) ((void)BUILD_BUG_ON_ZERO(condition))
748
749/* Force a compilation error if condition is constant and true */
750#define MAYBE_BUILD_BUG_ON(cond) ((void)sizeof(char[1 - 2 * !!(cond)]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Roland Dreiercc8ef6e2010-01-15 17:01:22 -0800752/* Force a compilation error if a constant expression is not a power of 2 */
753#define BUILD_BUG_ON_NOT_POWER_OF_2(n) \
754 BUILD_BUG_ON((n) == 0 || (((n) & ((n) - 1)) != 0))
755
Jan Beulich4552d5d2006-06-26 13:57:28 +0200756/* Force a compilation error if condition is true, but also produce a
757 result (of value 0 and type size_t), so the expression can be used
758 e.g. in a structure initializer (or where-ever else comma expressions
759 aren't permitted). */
Jan Beulich8c87df42009-09-22 16:43:52 -0700760#define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); }))
761#define BUILD_BUG_ON_NULL(e) ((void *)sizeof(struct { int:-!!(e); }))
Jan Beulich4552d5d2006-06-26 13:57:28 +0200762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763/* Trap pasters of __FUNCTION__ at compile-time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764#define __FUNCTION__ (__func__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Christoph Lameter08e0f6a2006-09-27 01:50:06 -0700766/* This helps us to avoid #ifdef CONFIG_NUMA */
767#ifdef CONFIG_NUMA
768#define NUMA_BUILD 1
769#else
770#define NUMA_BUILD 0
771#endif
772
Steven Rostedt29e71ab2008-08-14 15:45:10 -0400773/* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */
774#ifdef CONFIG_FTRACE_MCOUNT_RECORD
775# define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD
776#endif
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778#endif