blob: fc3da9e4da199d2d89b76d0e0bb7388e069c820e [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 Mortone0deaff42008-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 Russellc5e631cf2007-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))
Eric Parisb28efd52010-10-13 17:50:08 -040061#define roundup(x, y) ( \
62{ \
Tetsuo Handa6070bf32010-11-08 11:20:49 +090063 const typeof(y) __y = y; \
Eric Parisb28efd52010-10-13 17:50:08 -040064 (((x) + (__y - 1)) / __y) * __y; \
65} \
66)
Eric Paris686a0f32010-10-13 17:50:02 -040067#define rounddown(x, y) ( \
68{ \
69 typeof(x) __x = (x); \
70 __x - (__x % (y)); \
71} \
72)
Darrick J. Wong9fe06082009-01-06 14:40:51 -080073#define DIV_ROUND_CLOSEST(x, divisor)( \
74{ \
75 typeof(divisor) __divisor = divisor; \
76 (((x) + ((__divisor) / 2)) / (__divisor)); \
77} \
78)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Eduard - Gabriel Munteanuca31e142008-07-05 12:14:23 +030080#define _RET_IP_ (unsigned long)__builtin_return_address(0)
81#define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; })
82
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +020083#ifdef CONFIG_LBDAF
Jens Axboe2da96ac2007-10-12 12:40:38 +020084# include <asm/div64.h>
85# define sector_div(a, b) do_div(a, b)
86#else
87# define sector_div(n, b)( \
88{ \
89 int _res; \
90 _res = (n) % (b); \
91 (n) /= (b); \
92 _res; \
93} \
94)
95#endif
96
Andrew Morton218e1802007-05-10 03:15:18 -070097/**
98 * upper_32_bits - return bits 32-63 of a number
99 * @n: the number we're accessing
100 *
101 * A basic shift-right of a 64- or 32-bit quantity. Use this to suppress
102 * the "right shift count >= width of type" warning when that quantity is
103 * 32-bits.
104 */
105#define upper_32_bits(n) ((u32)(((n) >> 16) >> 16))
106
Joerg Roedel204b8852008-07-29 22:33:42 -0700107/**
108 * lower_32_bits - return bits 0-31 of a number
109 * @n: the number we're accessing
110 */
111#define lower_32_bits(n) ((u32)(n))
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#define KERN_EMERG "<0>" /* system is unusable */
114#define KERN_ALERT "<1>" /* action must be taken immediately */
115#define KERN_CRIT "<2>" /* critical conditions */
116#define KERN_ERR "<3>" /* error conditions */
117#define KERN_WARNING "<4>" /* warning conditions */
118#define KERN_NOTICE "<5>" /* normal but significant condition */
119#define KERN_INFO "<6>" /* informational */
120#define KERN_DEBUG "<7>" /* debug-level messages */
121
Linus Torvaldse28d7132009-06-16 11:02:28 -0700122/* Use the default kernel loglevel */
123#define KERN_DEFAULT "<d>"
Ingo Molnar47492522007-10-16 23:30:29 -0700124/*
125 * Annotation for a "continued" line of log printout (only done after a
126 * line that had no enclosing \n). Only to be used by core/arch code
127 * during early bootup (a continued line is not SMP-safe otherwise).
128 */
Linus Torvalds5fd29d62009-06-16 10:57:02 -0700129#define KERN_CONT "<c>"
Ingo Molnar47492522007-10-16 23:30:29 -0700130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131extern int console_printk[];
132
133#define console_loglevel (console_printk[0])
134#define default_message_loglevel (console_printk[1])
135#define minimum_console_loglevel (console_printk[2])
136#define default_console_loglevel (console_printk[3])
137
138struct completion;
akpm@osdl.orgdf2e71f2006-01-09 20:51:37 -0800139struct pt_regs;
140struct user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Uwe Kleine-König070cb062008-08-12 15:08:59 -0700142#ifdef CONFIG_PREEMPT_VOLUNTARY
143extern int _cond_resched(void);
144# define might_resched() _cond_resched()
145#else
146# define might_resched() do { } while (0)
147#endif
148
Randy Dunlap7106a272008-10-29 14:01:15 -0700149#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
Simon Kagstromd8948372009-12-23 11:08:18 +0100150 void __might_sleep(const char *file, int line, int preempt_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/**
152 * might_sleep - annotation for functions that can sleep
153 *
154 * this macro will print a stack trace if it is executed in an atomic
155 * context (spinlock, irq-handler, ...).
156 *
157 * This is a useful debugging help to be able to catch problems early and not
Jim Cromiee20ec992006-11-30 04:46:13 +0100158 * be bitten later when the calling function happens to sleep when it is not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * supposed to.
160 */
Ingo Molnarf8cbd992005-06-25 14:57:39 -0700161# define might_sleep() \
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +0200162 do { __might_sleep(__FILE__, __LINE__, 0); might_resched(); } while (0)
Ingo Molnarf8cbd992005-06-25 14:57:39 -0700163#else
Simon Kagstromd8948372009-12-23 11:08:18 +0100164 static inline void __might_sleep(const char *file, int line,
165 int preempt_offset) { }
Ingo Molnarf8cbd992005-06-25 14:57:39 -0700166# define might_sleep() do { might_resched(); } while (0)
167#endif
168
Hua Zhong368a5fa2006-06-23 02:05:42 -0700169#define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0)
Ingo Molnarf8cbd992005-06-25 14:57:39 -0700170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#define abs(x) ({ \
Rolf Eike Beera49c59c2009-09-22 16:44:03 -0700172 long __x = (x); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 (__x < 0) ? -__x : __x; \
174 })
175
Brian Behlendorf658716d2010-10-26 14:23:10 -0700176#define abs64(x) ({ \
177 s64 __x = (x); \
178 (__x < 0) ? -__x : __x; \
179 })
180
Nick Piggin3ee1afa2008-09-10 13:37:17 +0200181#ifdef CONFIG_PROVE_LOCKING
182void might_fault(void);
183#else
184static inline void might_fault(void)
185{
186 might_sleep();
187}
188#endif
189
Joe Perches7db6f5f2010-06-27 01:02:33 +0000190struct va_format {
191 const char *fmt;
192 va_list *va;
193};
194
Alan Sterne041c682006-03-27 01:16:30 -0800195extern struct atomic_notifier_head panic_notifier_list;
TAMUKI Shoichic7ff0d92010-08-10 18:03:28 -0700196extern long (*panic_blink)(int state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197NORET_TYPE void panic(const char * fmt, ...)
Andi Kleena586df02007-07-21 17:10:00 +0200198 __attribute__ ((NORET_AND format (printf, 1, 2))) __cold;
Andrew Mortondd287792006-03-23 03:00:57 -0800199extern void oops_enter(void);
200extern void oops_exit(void);
Anton Blanchard863a6042010-08-10 18:03:30 -0700201void print_oops_end_marker(void);
Andrew Mortondd287792006-03-23 03:00:57 -0800202extern int oops_may_print(void);
Harvey Harrisonec701582008-02-08 04:19:55 -0800203NORET_TYPE void do_exit(long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 ATTRIB_NORET;
205NORET_TYPE void complete_and_exit(struct completion *, long)
206 ATTRIB_NORET;
207extern unsigned long simple_strtoul(const char *,char **,unsigned int);
208extern long simple_strtol(const char *,char **,unsigned int);
209extern unsigned long long simple_strtoull(const char *,char **,unsigned int);
210extern long long simple_strtoll(const char *,char **,unsigned int);
Andrew Mortona55621f2010-10-26 14:22:25 -0700211extern int __must_check strict_strtoul(const char *, unsigned int, unsigned long *);
212extern int __must_check strict_strtol(const char *, unsigned int, long *);
213extern int __must_check strict_strtoull(const char *, unsigned int, unsigned long long *);
214extern int __must_check strict_strtoll(const char *, unsigned int, long long *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215extern int sprintf(char * buf, const char * fmt, ...)
216 __attribute__ ((format (printf, 2, 3)));
217extern int vsprintf(char *buf, const char *, va_list)
218 __attribute__ ((format (printf, 2, 0)));
219extern int snprintf(char * buf, size_t size, const char * fmt, ...)
220 __attribute__ ((format (printf, 3, 4)));
221extern int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
222 __attribute__ ((format (printf, 3, 0)));
223extern int scnprintf(char * buf, size_t size, const char * fmt, ...)
224 __attribute__ ((format (printf, 3, 4)));
225extern int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
226 __attribute__ ((format (printf, 3, 0)));
Jeremy Fitzhardingee9059142006-06-25 05:49:17 -0700227extern char *kasprintf(gfp_t gfp, const char *fmt, ...)
228 __attribute__ ((format (printf, 2, 3)));
Jeremy Fitzhardinge11443ec2007-04-30 15:09:56 -0700229extern char *kvasprintf(gfp_t gfp, const char *fmt, va_list args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231extern int sscanf(const char *, const char *, ...)
232 __attribute__ ((format (scanf, 2, 3)));
233extern int vsscanf(const char *, const char *, va_list)
234 __attribute__ ((format (scanf, 2, 0)));
235
236extern int get_option(char **str, int *pint);
237extern char *get_options(const char *str, int nints, int *ints);
Jeremy Fitzhardinged974ae32008-07-24 16:27:46 -0700238extern unsigned long long memparse(const char *ptr, char **retptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Trent Piepho5e376612006-05-15 09:44:06 -0700240extern int core_kernel_text(unsigned long addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241extern int __kernel_text_address(unsigned long addr);
242extern int kernel_text_address(unsigned long addr);
Arjan van de Venab7476c2008-08-15 15:29:38 -0700243extern int func_ptr_is_kernel_text(void *ptr);
Arjan van de Venab7476c2008-08-15 15:29:38 -0700244
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -0800245struct pid;
246extern struct pid *session_of_pgrp(struct pid *pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Thomas Renningera0ad05c2008-09-01 14:27:02 +0200248/*
249 * FW_BUG
250 * Add this to a message where you are sure the firmware is buggy or behaves
251 * really stupid or out of spec. Be aware that the responsible BIOS developer
252 * should be able to fix this issue or at least get a concrete idea of the
253 * problem by reading your message without the need of looking at the kernel
254 * code.
255 *
256 * Use it for definite and high priority BIOS bugs.
257 *
258 * FW_WARN
259 * Use it for not that clear (e.g. could the kernel messed up things already?)
260 * and medium priority BIOS bugs.
261 *
262 * FW_INFO
263 * Use this one if you want to tell the user or vendor about something
264 * suspicious, but generally harmless related to the firmware.
265 *
266 * Use it for information or very low priority BIOS bugs.
267 */
268#define FW_BUG "[Firmware Bug]: "
269#define FW_WARN "[Firmware Warn]: "
270#define FW_INFO "[Firmware Info]: "
271
Huang Yingc6de9f02010-05-31 16:48:09 +0800272/*
273 * HW_ERR
274 * Add this to a message for hardware errors, so that user can report
275 * it to hardware vendor instead of LKML or software vendor.
276 */
277#define HW_ERR "[Hardware Error]: "
278
Matt Mackalld59745c2005-05-01 08:59:02 -0700279#ifdef CONFIG_PRINTK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280asmlinkage int vprintk(const char *fmt, va_list args)
281 __attribute__ ((format (printf, 1, 0)));
282asmlinkage int printk(const char * fmt, ...)
Andi Kleena586df02007-07-21 17:10:00 +0200283 __attribute__ ((format (printf, 1, 2))) __cold;
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800284
Andrew Morton77006a02010-10-26 14:22:49 -0700285/*
286 * Please don't use printk_ratelimit(), because it shares ratelimiting state
287 * with all other unrelated printk_ratelimit() callsites. Instead use
288 * printk_ratelimited() or plain old __ratelimit().
289 */
Christian Borntraeger5c828712009-10-23 14:58:11 +0200290extern int __printk_ratelimit(const char *func);
291#define printk_ratelimit() __printk_ratelimit(__func__)
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800292extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
293 unsigned int interval_msec);
Ingo Molnarf036be92009-02-05 13:45:43 +0100294
Dave Youngaf913222009-09-22 16:43:33 -0700295extern int printk_delay_msec;
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800296extern int dmesg_restrict;
Dave Youngaf913222009-09-22 16:43:33 -0700297
Ingo Molnarf036be92009-02-05 13:45:43 +0100298/*
299 * Print a one-time message (analogous to WARN_ONCE() et al):
300 */
301#define printk_once(x...) ({ \
Joe Perches0b2749a2009-12-14 18:00:19 -0800302 static bool __print_once; \
Ingo Molnarf036be92009-02-05 13:45:43 +0100303 \
Joe Perches0b2749a2009-12-14 18:00:19 -0800304 if (!__print_once) { \
305 __print_once = true; \
Ingo Molnarf036be92009-02-05 13:45:43 +0100306 printk(x); \
307 } \
308})
309
Neil Horman04d491a2009-04-02 16:58:57 -0700310void log_buf_kexec_setup(void);
Matt Mackalld59745c2005-05-01 08:59:02 -0700311#else
312static inline int vprintk(const char *s, va_list args)
313 __attribute__ ((format (printf, 1, 0)));
314static inline int vprintk(const char *s, va_list args) { return 0; }
315static inline int printk(const char *s, ...)
316 __attribute__ ((format (printf, 1, 2)));
Andi Kleena586df02007-07-21 17:10:00 +0200317static inline int __cold printk(const char *s, ...) { return 0; }
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800318static inline int printk_ratelimit(void) { return 0; }
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800319static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies, \
320 unsigned int interval_msec) \
321 { return false; }
Ingo Molnarf036be92009-02-05 13:45:43 +0100322
323/* No effect, but we still get type checking even in the !PRINTK case: */
324#define printk_once(x...) printk(x)
325
Neil Horman04d491a2009-04-02 16:58:57 -0700326static inline void log_buf_kexec_setup(void)
327{
328}
Matt Mackalld59745c2005-05-01 08:59:02 -0700329#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
David Howells12fdff32010-08-12 16:54:57 +0100331/*
332 * Dummy printk for disabled debugging statements to use whilst maintaining
333 * gcc's format and side-effect checking.
334 */
335static inline __attribute__ ((format (printf, 1, 2)))
336int no_printk(const char *s, ...) { return 0; }
337
Ingo Molnarced9cd42008-08-11 14:38:12 +0200338extern int printk_needs_cpu(int cpu);
339extern void printk_tick(void);
340
Jiri Slabye17ba732008-05-12 15:44:40 +0200341extern void asmlinkage __attribute__((format(printf, 1, 2)))
Ingo Molnar076f9772008-01-30 13:33:06 +0100342 early_printk(const char *fmt, ...);
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344unsigned long int_sqrt(unsigned long);
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346static inline void console_silent(void)
347{
348 console_loglevel = 0;
349}
350
351static inline void console_verbose(void)
352{
353 if (console_loglevel)
354 console_loglevel = 15;
355}
356
357extern void bust_spinlocks(int yes);
Kirill Korotaeve3e8a752007-02-10 01:46:19 -0800358extern void wake_up_klogd(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */
Adrian Bunkaa727102006-04-10 22:53:59 -0700360extern int panic_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361extern int panic_on_oops;
Don Zickus8da5add2006-09-26 10:52:27 +0200362extern int panic_on_unrecovered_nmi;
Kurt Garloff5211a242009-06-24 14:32:11 -0700363extern int panic_on_io_nmi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364extern const char *print_tainted(void);
Andi Kleen25ddbb12008-10-15 22:01:41 -0700365extern void add_taint(unsigned flag);
366extern int test_taint(unsigned flag);
367extern unsigned long get_taint(void);
David Howellsb920de12008-02-08 04:19:31 -0800368extern int root_mountflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370/* Values used for system_state */
371extern enum system_states {
372 SYSTEM_BOOTING,
373 SYSTEM_RUNNING,
374 SYSTEM_HALT,
375 SYSTEM_POWER_OFF,
376 SYSTEM_RESTART,
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500377 SYSTEM_SUSPEND_DISK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378} system_state;
379
Andi Kleen25ddbb12008-10-15 22:01:41 -0700380#define TAINT_PROPRIETARY_MODULE 0
381#define TAINT_FORCED_MODULE 1
382#define TAINT_UNSAFE_SMP 2
383#define TAINT_FORCED_RMMOD 3
384#define TAINT_MACHINE_CHECK 4
385#define TAINT_BAD_PAGE 5
386#define TAINT_USER 6
387#define TAINT_DIE 7
388#define TAINT_OVERRIDDEN_ACPI_TABLE 8
389#define TAINT_WARN 9
Linus Torvalds26e9a392008-10-17 09:50:12 -0700390#define TAINT_CRAP 10
Ben Hutchings92946bc2010-04-03 19:36:42 +0100391#define TAINT_FIRMWARE_WORKAROUND 11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Andi Kleena586df02007-07-21 17:10:00 +0200393extern void dump_stack(void) __cold;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700395enum {
396 DUMP_PREFIX_NONE,
397 DUMP_PREFIX_ADDRESS,
398 DUMP_PREFIX_OFFSET
399};
Randy Dunlapc7909232007-06-08 13:47:04 -0700400extern void hex_dump_to_buffer(const void *buf, size_t len,
401 int rowsize, int groupsize,
402 char *linebuf, size_t linebuflen, bool ascii);
403extern void print_hex_dump(const char *level, const char *prefix_str,
404 int prefix_type, int rowsize, int groupsize,
Artem Bityutskiy6a0ed912007-08-07 23:43:14 +0300405 const void *buf, size_t len, bool ascii);
Randy Dunlapc7909232007-06-08 13:47:04 -0700406extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
Alan Sterneb9a9a52007-08-10 13:01:07 -0700407 const void *buf, size_t len);
Harvey Harrison3fc95772008-05-14 16:05:49 -0700408
409extern const char hex_asc[];
410#define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
411#define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
412
413static inline char *pack_hex_byte(char *buf, u8 byte)
414{
415 *buf++ = hex_asc_hi(byte);
416 *buf++ = hex_asc_lo(byte);
417 return buf;
418}
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700419
Andy Shevchenko903788892010-05-24 14:33:23 -0700420extern int hex_to_bin(char ch);
421
Martin Schwidefskyd091c2f2008-11-12 21:16:43 +0100422#ifndef pr_fmt
423#define pr_fmt(fmt) fmt
424#endif
425
426#define pr_emerg(fmt, ...) \
427 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
428#define pr_alert(fmt, ...) \
429 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
430#define pr_crit(fmt, ...) \
431 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
432#define pr_err(fmt, ...) \
433 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
434#define pr_warning(fmt, ...) \
435 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Joe Perchesfc62f2f2010-05-24 14:33:08 -0700436#define pr_warn pr_warning
Martin Schwidefskyd091c2f2008-11-12 21:16:43 +0100437#define pr_notice(fmt, ...) \
438 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
439#define pr_info(fmt, ...) \
440 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
Cyrill Gorcunov311d0762009-03-31 15:23:51 -0700441#define pr_cont(fmt, ...) \
442 printk(KERN_CONT fmt, ##__VA_ARGS__)
Emil Medve1f7c8232007-10-16 23:29:48 -0700443
Michael Ellerman4ccb4572009-04-09 14:48:24 -0700444/* pr_devel() should produce zero code unless DEBUG is defined */
445#ifdef DEBUG
446#define pr_devel(fmt, ...) \
447 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
448#else
449#define pr_devel(fmt, ...) \
450 ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; })
451#endif
452
Pavel Machek1cc6daf2006-08-08 01:37:15 +0200453/* If you are writing a driver, please use dev_dbg instead */
Cornelia Huckd0d85ff2008-12-04 16:55:47 +0100454#if defined(DEBUG)
455#define pr_debug(fmt, ...) \
456 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Jason Barone9d376f2009-02-05 11:51:38 -0500457#elif defined(CONFIG_DYNAMIC_DEBUG)
Greg Bankse6e66b02009-03-11 21:07:28 +1100458/* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */
Joe Perches00b55862009-12-14 18:00:14 -0800459#define pr_debug(fmt, ...) \
460 dynamic_pr_debug(fmt, ##__VA_ARGS__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461#else
Martin Schwidefskyd091c2f2008-11-12 21:16:43 +0100462#define pr_debug(fmt, ...) \
463 ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464#endif
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466/*
Joe Perches8a64f332009-12-14 18:00:25 -0800467 * ratelimited messages with local ratelimit_state,
468 * no local ratelimit_state used in the !PRINTK case
469 */
470#ifdef CONFIG_PRINTK
OGAWA Hirofumid8521fc2010-05-24 14:33:11 -0700471#define printk_ratelimited(fmt, ...) ({ \
472 static DEFINE_RATELIMIT_STATE(_rs, \
473 DEFAULT_RATELIMIT_INTERVAL, \
474 DEFAULT_RATELIMIT_BURST); \
475 \
476 if (__ratelimit(&_rs)) \
477 printk(fmt, ##__VA_ARGS__); \
Joe Perches8a64f332009-12-14 18:00:25 -0800478})
479#else
480/* No effect, but we still get type checking even in the !PRINTK case: */
481#define printk_ratelimited printk
482#endif
483
484#define pr_emerg_ratelimited(fmt, ...) \
485 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
486#define pr_alert_ratelimited(fmt, ...) \
487 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
488#define pr_crit_ratelimited(fmt, ...) \
489 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
490#define pr_err_ratelimited(fmt, ...) \
491 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
492#define pr_warning_ratelimited(fmt, ...) \
493 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Joe Perchesfc62f2f2010-05-24 14:33:08 -0700494#define pr_warn_ratelimited pr_warning_ratelimited
Joe Perches8a64f332009-12-14 18:00:25 -0800495#define pr_notice_ratelimited(fmt, ...) \
496 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
497#define pr_info_ratelimited(fmt, ...) \
498 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
499/* no pr_cont_ratelimited, don't do that... */
500/* If you are writing a driver, please use dev_dbg instead */
501#if defined(DEBUG)
502#define pr_debug_ratelimited(fmt, ...) \
503 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
504#else
505#define pr_debug_ratelimited(fmt, ...) \
506 ({ if (0) printk_ratelimited(KERN_DEBUG pr_fmt(fmt), \
507 ##__VA_ARGS__); 0; })
508#endif
509
510/*
Ingo Molnar526211b2009-03-05 10:28:45 +0100511 * General tracing related utility functions - trace_printk(),
Steven Rostedt2002c252009-03-05 10:35:56 -0500512 * tracing_on/tracing_off and tracing_start()/tracing_stop
513 *
514 * Use tracing_on/tracing_off when you want to quickly turn on or off
515 * tracing. It simply enables or disables the recording of the trace events.
GeunSik Lim156f5a72009-06-02 15:01:37 +0900516 * This also corresponds to the user space /sys/kernel/debug/tracing/tracing_on
Steven Rostedt2002c252009-03-05 10:35:56 -0500517 * file, which gives a means for the kernel and userspace to interact.
518 * Place a tracing_off() in the kernel where you want tracing to end.
519 * From user space, examine the trace, and then echo 1 > tracing_on
520 * to continue tracing.
521 *
522 * tracing_stop/tracing_start has slightly more overhead. It is used
523 * by things like suspend to ram where disabling the recording of the
524 * trace is not enough, but tracing must actually stop because things
525 * like calling smp_processor_id() may crash the system.
526 *
527 * Most likely, you want to use tracing_on/tracing_off.
Ingo Molnar526211b2009-03-05 10:28:45 +0100528 */
Steven Rostedt2002c252009-03-05 10:35:56 -0500529#ifdef CONFIG_RING_BUFFER
530void tracing_on(void);
531void tracing_off(void);
532/* trace_off_permanent stops recording with no way to bring it back */
533void tracing_off_permanent(void);
534int tracing_is_on(void);
535#else
536static inline void tracing_on(void) { }
537static inline void tracing_off(void) { }
538static inline void tracing_off_permanent(void) { }
539static inline int tracing_is_on(void) { return 0; }
540#endif
Frederic Weisbeckercecbca92010-04-18 19:08:41 +0200541
542enum ftrace_dump_mode {
543 DUMP_NONE,
544 DUMP_ALL,
545 DUMP_ORIG,
546};
547
Ingo Molnar526211b2009-03-05 10:28:45 +0100548#ifdef CONFIG_TRACING
549extern void tracing_start(void);
550extern void tracing_stop(void);
551extern void ftrace_off_permanent(void);
552
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100553static inline void __attribute__ ((format (printf, 1, 2)))
554____trace_printk_check_format(const char *fmt, ...)
555{
556}
557#define __trace_printk_check_format(fmt, args...) \
558do { \
559 if (0) \
560 ____trace_printk_check_format(fmt, ##args); \
561} while (0)
562
Ingo Molnar526211b2009-03-05 10:28:45 +0100563/**
564 * trace_printk - printf formatting in the ftrace buffer
565 * @fmt: the printf format for printing
566 *
567 * Note: __trace_printk is an internal function for trace_printk and
568 * the @ip is passed in via the trace_printk macro.
569 *
570 * This function allows a kernel developer to debug fast path sections
571 * that printk is not appropriate for. By scattering in various
572 * printk like tracing in the code, a developer can quickly see
573 * where problems are occurring.
574 *
575 * This is intended as a debugging tool for the developer only.
576 * Please refrain from leaving trace_printks scattered around in
577 * your code.
578 */
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100579
580#define trace_printk(fmt, args...) \
581do { \
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100582 __trace_printk_check_format(fmt, ##args); \
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100583 if (__builtin_constant_p(fmt)) { \
584 static const char *trace_printk_fmt \
585 __attribute__((section("__trace_printk_fmt"))) = \
586 __builtin_constant_p(fmt) ? fmt : NULL; \
587 \
588 __trace_bprintk(_THIS_IP_, trace_printk_fmt, ##args); \
589 } else \
590 __trace_printk(_THIS_IP_, fmt, ##args); \
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100591} while (0)
592
Ingo Molnar526211b2009-03-05 10:28:45 +0100593extern int
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100594__trace_bprintk(unsigned long ip, const char *fmt, ...)
595 __attribute__ ((format (printf, 2, 3)));
596
597extern int
Ingo Molnar526211b2009-03-05 10:28:45 +0100598__trace_printk(unsigned long ip, const char *fmt, ...)
599 __attribute__ ((format (printf, 2, 3)));
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100600
Steven Rostedt03889382009-12-11 09:48:22 -0500601extern void trace_dump_stack(void);
602
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100603/*
604 * The double __builtin_constant_p is because gcc will give us an error
605 * if we try to allocate the static variable to fmt if it is not a
606 * constant. Even with the outer if statement.
607 */
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100608#define ftrace_vprintk(fmt, vargs) \
609do { \
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100610 if (__builtin_constant_p(fmt)) { \
611 static const char *trace_printk_fmt \
612 __attribute__((section("__trace_printk_fmt"))) = \
613 __builtin_constant_p(fmt) ? fmt : NULL; \
Ingo Molnar7bffc232009-03-09 10:11:36 +0100614 \
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100615 __ftrace_vbprintk(_THIS_IP_, trace_printk_fmt, vargs); \
616 } else \
617 __ftrace_vprintk(_THIS_IP_, fmt, vargs); \
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100618} while (0)
619
Ingo Molnar526211b2009-03-05 10:28:45 +0100620extern int
Frederic Weisbecker48ead022009-03-12 18:24:49 +0100621__ftrace_vbprintk(unsigned long ip, const char *fmt, va_list ap);
622
623extern int
Ingo Molnar526211b2009-03-05 10:28:45 +0100624__ftrace_vprintk(unsigned long ip, const char *fmt, va_list ap);
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100625
Frederic Weisbeckercecbca92010-04-18 19:08:41 +0200626extern void ftrace_dump(enum ftrace_dump_mode oops_dump_mode);
Ingo Molnar526211b2009-03-05 10:28:45 +0100627#else
Ingo Molnar526211b2009-03-05 10:28:45 +0100628static inline int
629trace_printk(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
630
631static inline void tracing_start(void) { }
632static inline void tracing_stop(void) { }
633static inline void ftrace_off_permanent(void) { }
Steven Rostedte36c5452009-12-14 15:58:33 -0500634static inline void trace_dump_stack(void) { }
Ingo Molnar526211b2009-03-05 10:28:45 +0100635static inline int
636trace_printk(const char *fmt, ...)
637{
638 return 0;
639}
640static inline int
641ftrace_vprintk(const char *fmt, va_list ap)
642{
643 return 0;
644}
Frederic Weisbeckercecbca92010-04-18 19:08:41 +0200645static inline void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) { }
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100646#endif /* CONFIG_TRACING */
Ingo Molnar526211b2009-03-05 10:28:45 +0100647
648/*
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700649 * min()/max()/clamp() macros that also do
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 * strict type-checking.. See the
651 * "unnecessary" pointer comparison.
652 */
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700653#define min(x, y) ({ \
654 typeof(x) _min1 = (x); \
655 typeof(y) _min2 = (y); \
656 (void) (&_min1 == &_min2); \
657 _min1 < _min2 ? _min1 : _min2; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700659#define max(x, y) ({ \
660 typeof(x) _max1 = (x); \
661 typeof(y) _max2 = (y); \
662 (void) (&_max1 == &_max2); \
663 _max1 > _max2 ? _max1 : _max2; })
664
Hagen Paul Pfeiferf27c85c2010-10-26 14:22:21 -0700665#define min3(x, y, z) ({ \
666 typeof(x) _min1 = (x); \
667 typeof(y) _min2 = (y); \
668 typeof(z) _min3 = (z); \
669 (void) (&_min1 == &_min2); \
670 (void) (&_min1 == &_min3); \
671 _min1 < _min2 ? (_min1 < _min3 ? _min1 : _min3) : \
672 (_min2 < _min3 ? _min2 : _min3); })
673
674#define max3(x, y, z) ({ \
675 typeof(x) _max1 = (x); \
676 typeof(y) _max2 = (y); \
677 typeof(z) _max3 = (z); \
678 (void) (&_max1 == &_max2); \
679 (void) (&_max1 == &_max3); \
680 _max1 > _max2 ? (_max1 > _max3 ? _max1 : _max3) : \
681 (_max2 > _max3 ? _max2 : _max3); })
682
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700683/**
Martin K. Petersenc8bf1332010-09-10 20:07:38 +0200684 * min_not_zero - return the minimum that is _not_ zero, unless both are zero
685 * @x: value1
686 * @y: value2
687 */
688#define min_not_zero(x, y) ({ \
689 typeof(x) __x = (x); \
690 typeof(y) __y = (y); \
691 __x == 0 ? __y : ((__y == 0) ? __x : min(__x, __y)); })
692
693/**
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700694 * clamp - return a value clamped to a given range with strict typechecking
695 * @val: current value
696 * @min: minimum allowable value
697 * @max: maximum allowable value
698 *
699 * This macro does strict typechecking of min/max to make sure they are of the
700 * same type as val. See the unnecessary pointer comparisons.
701 */
702#define clamp(val, min, max) ({ \
703 typeof(val) __val = (val); \
704 typeof(min) __min = (min); \
705 typeof(max) __max = (max); \
706 (void) (&__val == &__min); \
707 (void) (&__val == &__max); \
708 __val = __val < __min ? __min: __val; \
709 __val > __max ? __max: __val; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711/*
712 * ..and if you can't take the strict
713 * types, you can specify one yourself.
714 *
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700715 * Or not use min/max/clamp at all, of course.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 */
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700717#define min_t(type, x, y) ({ \
718 type __min1 = (x); \
719 type __min2 = (y); \
720 __min1 < __min2 ? __min1: __min2; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Harvey Harrisonbdf4bba2008-04-30 00:54:55 -0700722#define max_t(type, x, y) ({ \
723 type __max1 = (x); \
724 type __max2 = (y); \
725 __max1 > __max2 ? __max1: __max2; })
726
727/**
728 * clamp_t - return a value clamped to a given range using a given type
729 * @type: the type of variable to use
730 * @val: current value
731 * @min: minimum allowable value
732 * @max: maximum allowable value
733 *
734 * This macro does no typechecking and uses temporary variables of type
735 * 'type' to make all the comparisons.
736 */
737#define clamp_t(type, val, min, max) ({ \
738 type __val = (val); \
739 type __min = (min); \
740 type __max = (max); \
741 __val = __val < __min ? __min: __val; \
742 __val > __max ? __max: __val; })
743
744/**
745 * clamp_val - return a value clamped to a given range using val's type
746 * @val: current value
747 * @min: minimum allowable value
748 * @max: maximum allowable value
749 *
750 * This macro does no typechecking and uses temporary variables of whatever
751 * type the input argument 'val' is. This is useful when val is an unsigned
752 * type and min and max are literals that will otherwise be assigned a signed
753 * integer type.
754 */
755#define clamp_val(val, min, max) ({ \
756 typeof(val) __val = (val); \
757 typeof(val) __min = (min); \
758 typeof(val) __max = (max); \
759 __val = __val < __min ? __min: __val; \
760 __val > __max ? __max: __val; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Wu Fengguang91f68b72009-01-07 18:09:12 -0800762
763/*
764 * swap - swap value of @a and @b
765 */
Peter Zijlstraac7b9002009-02-04 15:11:59 -0800766#define swap(a, b) \
767 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
Wu Fengguang91f68b72009-01-07 18:09:12 -0800768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769/**
770 * container_of - cast a member of a structure out to the containing structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 * @ptr: the pointer to the member.
772 * @type: the type of the container struct this is embedded in.
773 * @member: the name of the member within the struct.
774 *
775 */
776#define container_of(ptr, type, member) ({ \
Daniel Walker78db2ad2007-05-12 16:28:35 -0700777 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
778 (type *)( (char *)__mptr - offsetof(type,member) );})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Kyle McMartind4d23ad2007-02-10 01:46:00 -0800780struct sysinfo;
781extern int do_sysinfo(struct sysinfo *info);
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783#endif /* __KERNEL__ */
784
785#define SI_LOAD_SHIFT 16
786struct sysinfo {
787 long uptime; /* Seconds since boot */
788 unsigned long loads[3]; /* 1, 5, and 15 minute load averages */
789 unsigned long totalram; /* Total usable main memory size */
790 unsigned long freeram; /* Available memory size */
791 unsigned long sharedram; /* Amount of shared memory */
792 unsigned long bufferram; /* Memory used by buffers */
793 unsigned long totalswap; /* Total swap space size */
794 unsigned long freeswap; /* swap space still available */
795 unsigned short procs; /* Number of current processes */
796 unsigned short pad; /* explicit padding for m68k */
797 unsigned long totalhigh; /* Total high memory size */
798 unsigned long freehigh; /* Available high memory size */
799 unsigned int mem_unit; /* Memory unit size in bytes */
800 char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
801};
802
Nikita Danilovc0398ee2005-10-30 15:03:10 -0800803/* Force a compilation error if condition is true */
Jan Beulich8c87df42009-09-22 16:43:52 -0700804#define BUILD_BUG_ON(condition) ((void)BUILD_BUG_ON_ZERO(condition))
805
806/* Force a compilation error if condition is constant and true */
807#define MAYBE_BUILD_BUG_ON(cond) ((void)sizeof(char[1 - 2 * !!(cond)]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Roland Dreiercc8ef6e2010-01-15 17:01:22 -0800809/* Force a compilation error if a constant expression is not a power of 2 */
810#define BUILD_BUG_ON_NOT_POWER_OF_2(n) \
811 BUILD_BUG_ON((n) == 0 || (((n) & ((n) - 1)) != 0))
812
Jan Beulich4552d5d2006-06-26 13:57:28 +0200813/* Force a compilation error if condition is true, but also produce a
814 result (of value 0 and type size_t), so the expression can be used
815 e.g. in a structure initializer (or where-ever else comma expressions
816 aren't permitted). */
Jan Beulich8c87df42009-09-22 16:43:52 -0700817#define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); }))
818#define BUILD_BUG_ON_NULL(e) ((void *)sizeof(struct { int:-!!(e); }))
Jan Beulich4552d5d2006-06-26 13:57:28 +0200819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820/* Trap pasters of __FUNCTION__ at compile-time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821#define __FUNCTION__ (__func__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Christoph Lameter08e0f6a2006-09-27 01:50:06 -0700823/* This helps us to avoid #ifdef CONFIG_NUMA */
824#ifdef CONFIG_NUMA
825#define NUMA_BUILD 1
826#else
827#define NUMA_BUILD 0
828#endif
829
Steven Rostedt29e71ab2008-08-14 15:45:10 -0400830/* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */
831#ifdef CONFIG_FTRACE_MCOUNT_RECORD
832# define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD
833#endif
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835#endif