]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/kernel.h
be2net: Bug fix to avoid disabling bottom half during firmware upgrade.
[net-next-2.6.git] / include / linux / kernel.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_KERNEL_H
2#define _LINUX_KERNEL_H
3
4/*
5 * 'kernel.h' contains some often-used function prototypes etc
6 */
a79ff731
AD
7#define __ALIGN_KERNEL(x, a) __ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1)
8#define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask))
1da177e4
LT
9
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>
f0d1b0b3 18#include <linux/log2.h>
e0deaff4 19#include <linux/typecheck.h>
e9d376f0 20#include <linux/dynamic_debug.h>
1da177e4
LT
21#include <asm/byteorder.h>
22#include <asm/bug.h>
23
3eb3c740
RZ
24extern const char linux_banner[];
25extern const char linux_proc_banner[];
26
44f564a4
ZY
27#define USHORT_MAX ((u16)(~0U))
28#define SHORT_MAX ((s16)(USHORT_MAX>>1))
29#define SHORT_MIN (-SHORT_MAX - 1)
1da177e4
LT
30#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)
111ebb6e
OH
36#define LLONG_MAX ((long long)(~0ULL>>1))
37#define LLONG_MIN (-LLONG_MAX - 1)
38#define ULLONG_MAX (~0ULL)
1da177e4
LT
39
40#define STACK_MAGIC 0xdeadbeef
41
a79ff731 42#define ALIGN(x, a) __ALIGN_KERNEL((x), (a))
9f93ff5b 43#define __ALIGN_MASK(x, mask) __ALIGN_KERNEL_MASK((x), (mask))
a83308e6 44#define PTR_ALIGN(p, a) ((typeof(p))ALIGN((unsigned long)(p), (a)))
f10db627 45#define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0)
2ea58144 46
c5e631cf
RR
47#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
48
9b3be9f9
YL
49/*
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
4552d5dc 59#define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f))
930631ed 60#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
b4cac1a0 61#define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
9fe06081
DW
62#define DIV_ROUND_CLOSEST(x, divisor)( \
63{ \
64 typeof(divisor) __divisor = divisor; \
65 (((x) + ((__divisor) / 2)) / (__divisor)); \
66} \
67)
1da177e4 68
ca31e146
EGM
69#define _RET_IP_ (unsigned long)__builtin_return_address(0)
70#define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; })
71
90c699a9 72#ifdef CONFIG_LBDAF
2da96acd
JA
73# 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
218e180e
AM
86/**
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
204b885e
JR
96/**
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
1da177e4
LT
102#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
e28d7137
LT
111/* Use the default kernel loglevel */
112#define KERN_DEFAULT "<d>"
47492527
IM
113/*
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 */
5fd29d6c 118#define KERN_CONT "<c>"
47492527 119
1da177e4
LT
120extern 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;
df2e71fb
AM
128struct pt_regs;
129struct user;
1da177e4 130
070cb065
UKK
131#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
7106a27b 138#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
d894837f 139 void __might_sleep(const char *file, int line, int preempt_offset);
1da177e4
LT
140/**
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
e20ec991 147 * be bitten later when the calling function happens to sleep when it is not
1da177e4
LT
148 * supposed to.
149 */
f8cbd99b 150# define might_sleep() \
e4aafea2 151 do { __might_sleep(__FILE__, __LINE__, 0); might_resched(); } while (0)
1da177e4 152#else
d894837f
SK
153 static inline void __might_sleep(const char *file, int line,
154 int preempt_offset) { }
f8cbd99b 155# define might_sleep() do { might_resched(); } while (0)
1da177e4
LT
156#endif
157
368a5fa1 158#define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0)
f8cbd99b 159
1da177e4 160#define abs(x) ({ \
a49c59c0 161 long __x = (x); \
1da177e4
LT
162 (__x < 0) ? -__x : __x; \
163 })
164
3ee1afa3
NP
165#ifdef CONFIG_PROVE_LOCKING
166void might_fault(void);
167#else
168static inline void might_fault(void)
169{
170 might_sleep();
171}
172#endif
173
e041c683 174extern struct atomic_notifier_head panic_notifier_list;
1da177e4
LT
175extern long (*panic_blink)(long time);
176NORET_TYPE void panic(const char * fmt, ...)
a586df06 177 __attribute__ ((NORET_AND format (printf, 1, 2))) __cold;
dd287796
AM
178extern void oops_enter(void);
179extern void oops_exit(void);
180extern int oops_may_print(void);
ec701584 181NORET_TYPE void do_exit(long error_code)
1da177e4
LT
182 ATTRIB_NORET;
183NORET_TYPE void complete_and_exit(struct completion *, long)
184 ATTRIB_NORET;
185extern unsigned long simple_strtoul(const char *,char **,unsigned int);
186extern long simple_strtol(const char *,char **,unsigned int);
187extern unsigned long long simple_strtoull(const char *,char **,unsigned int);
188extern long long simple_strtoll(const char *,char **,unsigned int);
06b2a76d
YY
189extern int strict_strtoul(const char *, unsigned int, unsigned long *);
190extern int strict_strtol(const char *, unsigned int, long *);
191extern int strict_strtoull(const char *, unsigned int, unsigned long long *);
192extern int strict_strtoll(const char *, unsigned int, long long *);
1da177e4
LT
193extern int sprintf(char * buf, const char * fmt, ...)
194 __attribute__ ((format (printf, 2, 3)));
195extern int vsprintf(char *buf, const char *, va_list)
196 __attribute__ ((format (printf, 2, 0)));
197extern int snprintf(char * buf, size_t size, const char * fmt, ...)
198 __attribute__ ((format (printf, 3, 4)));
199extern int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
200 __attribute__ ((format (printf, 3, 0)));
201extern int scnprintf(char * buf, size_t size, const char * fmt, ...)
202 __attribute__ ((format (printf, 3, 4)));
203extern int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
204 __attribute__ ((format (printf, 3, 0)));
e905914f
JF
205extern char *kasprintf(gfp_t gfp, const char *fmt, ...)
206 __attribute__ ((format (printf, 2, 3)));
11443ec7 207extern char *kvasprintf(gfp_t gfp, const char *fmt, va_list args);
1da177e4
LT
208
209extern int sscanf(const char *, const char *, ...)
210 __attribute__ ((format (scanf, 2, 3)));
211extern int vsscanf(const char *, const char *, va_list)
212 __attribute__ ((format (scanf, 2, 0)));
213
214extern int get_option(char **str, int *pint);
215extern char *get_options(const char *str, int nints, int *ints);
d974ae37 216extern unsigned long long memparse(const char *ptr, char **retptr);
1da177e4 217
5e376613 218extern int core_kernel_text(unsigned long addr);
1da177e4
LT
219extern int __kernel_text_address(unsigned long addr);
220extern int kernel_text_address(unsigned long addr);
ab7476cf 221extern int func_ptr_is_kernel_text(void *ptr);
ab7476cf 222
04a2e6a5
EB
223struct pid;
224extern struct pid *session_of_pgrp(struct pid *pgrp);
1da177e4 225
a0ad05c7
TR
226/*
227 * FW_BUG
228 * Add this to a message where you are sure the firmware is buggy or behaves
229 * really stupid or out of spec. Be aware that the responsible BIOS developer
230 * should be able to fix this issue or at least get a concrete idea of the
231 * problem by reading your message without the need of looking at the kernel
232 * code.
233 *
234 * Use it for definite and high priority BIOS bugs.
235 *
236 * FW_WARN
237 * Use it for not that clear (e.g. could the kernel messed up things already?)
238 * and medium priority BIOS bugs.
239 *
240 * FW_INFO
241 * Use this one if you want to tell the user or vendor about something
242 * suspicious, but generally harmless related to the firmware.
243 *
244 * Use it for information or very low priority BIOS bugs.
245 */
246#define FW_BUG "[Firmware Bug]: "
247#define FW_WARN "[Firmware Warn]: "
248#define FW_INFO "[Firmware Info]: "
249
d59745ce 250#ifdef CONFIG_PRINTK
1da177e4
LT
251asmlinkage int vprintk(const char *fmt, va_list args)
252 __attribute__ ((format (printf, 1, 0)));
253asmlinkage int printk(const char * fmt, ...)
a586df06 254 __attribute__ ((format (printf, 1, 2))) __cold;
7ef3d2fd 255
5c828713
CB
256extern int __printk_ratelimit(const char *func);
257#define printk_ratelimit() __printk_ratelimit(__func__)
7ef3d2fd
JP
258extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
259 unsigned int interval_msec);
f036be96 260
af91322e
DY
261extern int printk_delay_msec;
262
f036be96
IM
263/*
264 * Print a one-time message (analogous to WARN_ONCE() et al):
265 */
266#define printk_once(x...) ({ \
0b2749aa 267 static bool __print_once; \
f036be96 268 \
0b2749aa
JP
269 if (!__print_once) { \
270 __print_once = true; \
f036be96
IM
271 printk(x); \
272 } \
273})
274
04d491ab 275void log_buf_kexec_setup(void);
d59745ce
MM
276#else
277static inline int vprintk(const char *s, va_list args)
278 __attribute__ ((format (printf, 1, 0)));
279static inline int vprintk(const char *s, va_list args) { return 0; }
280static inline int printk(const char *s, ...)
281 __attribute__ ((format (printf, 1, 2)));
a586df06 282static inline int __cold printk(const char *s, ...) { return 0; }
7ef3d2fd 283static inline int printk_ratelimit(void) { return 0; }
7ef3d2fd
JP
284static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies, \
285 unsigned int interval_msec) \
286 { return false; }
f036be96
IM
287
288/* No effect, but we still get type checking even in the !PRINTK case: */
289#define printk_once(x...) printk(x)
290
04d491ab
NH
291static inline void log_buf_kexec_setup(void)
292{
293}
d59745ce 294#endif
1da177e4 295
ced9cd40
IM
296extern int printk_needs_cpu(int cpu);
297extern void printk_tick(void);
298
e17ba73b 299extern void asmlinkage __attribute__((format(printf, 1, 2)))
076f9776
IM
300 early_printk(const char *fmt, ...);
301
1da177e4
LT
302unsigned long int_sqrt(unsigned long);
303
1da177e4
LT
304static inline void console_silent(void)
305{
306 console_loglevel = 0;
307}
308
309static inline void console_verbose(void)
310{
311 if (console_loglevel)
312 console_loglevel = 15;
313}
314
315extern void bust_spinlocks(int yes);
e3e8a75d 316extern void wake_up_klogd(void);
1da177e4 317extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */
aa727107 318extern int panic_timeout;
1da177e4 319extern int panic_on_oops;
8da5adda 320extern int panic_on_unrecovered_nmi;
5211a242 321extern int panic_on_io_nmi;
1da177e4 322extern const char *print_tainted(void);
25ddbb18
AK
323extern void add_taint(unsigned flag);
324extern int test_taint(unsigned flag);
325extern unsigned long get_taint(void);
b920de1b 326extern int root_mountflags;
1da177e4
LT
327
328/* Values used for system_state */
329extern enum system_states {
330 SYSTEM_BOOTING,
331 SYSTEM_RUNNING,
332 SYSTEM_HALT,
333 SYSTEM_POWER_OFF,
334 SYSTEM_RESTART,
729b4d4c 335 SYSTEM_SUSPEND_DISK,
1da177e4
LT
336} system_state;
337
25ddbb18
AK
338#define TAINT_PROPRIETARY_MODULE 0
339#define TAINT_FORCED_MODULE 1
340#define TAINT_UNSAFE_SMP 2
341#define TAINT_FORCED_RMMOD 3
342#define TAINT_MACHINE_CHECK 4
343#define TAINT_BAD_PAGE 5
344#define TAINT_USER 6
345#define TAINT_DIE 7
346#define TAINT_OVERRIDDEN_ACPI_TABLE 8
347#define TAINT_WARN 9
26e9a397 348#define TAINT_CRAP 10
1da177e4 349
a586df06 350extern void dump_stack(void) __cold;
1da177e4 351
99eaf3c4
RD
352enum {
353 DUMP_PREFIX_NONE,
354 DUMP_PREFIX_ADDRESS,
355 DUMP_PREFIX_OFFSET
356};
c7909234
RD
357extern void hex_dump_to_buffer(const void *buf, size_t len,
358 int rowsize, int groupsize,
359 char *linebuf, size_t linebuflen, bool ascii);
360extern void print_hex_dump(const char *level, const char *prefix_str,
361 int prefix_type, int rowsize, int groupsize,
6a0ed91e 362 const void *buf, size_t len, bool ascii);
c7909234 363extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
eb9a9a56 364 const void *buf, size_t len);
3fc95772
HH
365
366extern const char hex_asc[];
367#define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
368#define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
369
370static inline char *pack_hex_byte(char *buf, u8 byte)
371{
372 *buf++ = hex_asc_hi(byte);
373 *buf++ = hex_asc_lo(byte);
374 return buf;
375}
99eaf3c4 376
d091c2f5
MS
377#ifndef pr_fmt
378#define pr_fmt(fmt) fmt
379#endif
380
381#define pr_emerg(fmt, ...) \
382 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
383#define pr_alert(fmt, ...) \
384 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
385#define pr_crit(fmt, ...) \
386 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
387#define pr_err(fmt, ...) \
388 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
389#define pr_warning(fmt, ...) \
390 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
391#define pr_notice(fmt, ...) \
392 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
393#define pr_info(fmt, ...) \
394 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
311d0761
CG
395#define pr_cont(fmt, ...) \
396 printk(KERN_CONT fmt, ##__VA_ARGS__)
1f7c8234 397
4ccb4579
ME
398/* pr_devel() should produce zero code unless DEBUG is defined */
399#ifdef DEBUG
400#define pr_devel(fmt, ...) \
401 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
402#else
403#define pr_devel(fmt, ...) \
404 ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; })
405#endif
406
1cc6daf2 407/* If you are writing a driver, please use dev_dbg instead */
d0d85ff9
CH
408#if defined(DEBUG)
409#define pr_debug(fmt, ...) \
410 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
e9d376f0 411#elif defined(CONFIG_DYNAMIC_DEBUG)
e6e66b02 412/* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */
00b55864
JP
413#define pr_debug(fmt, ...) \
414 dynamic_pr_debug(fmt, ##__VA_ARGS__)
1da177e4 415#else
d091c2f5
MS
416#define pr_debug(fmt, ...) \
417 ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; })
1da177e4
LT
418#endif
419
8a64f336
JP
420/*
421 * ratelimited messages with local ratelimit_state,
422 * no local ratelimit_state used in the !PRINTK case
423 */
424#ifdef CONFIG_PRINTK
425#define printk_ratelimited(fmt, ...) ({ \
426 static struct ratelimit_state _rs = { \
427 .interval = DEFAULT_RATELIMIT_INTERVAL, \
428 .burst = DEFAULT_RATELIMIT_BURST, \
429 }; \
430 \
bb1dc0ba 431 if (__ratelimit(&_rs)) \
8a64f336
JP
432 printk(fmt, ##__VA_ARGS__); \
433})
434#else
435/* No effect, but we still get type checking even in the !PRINTK case: */
436#define printk_ratelimited printk
437#endif
438
439#define pr_emerg_ratelimited(fmt, ...) \
440 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
441#define pr_alert_ratelimited(fmt, ...) \
442 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
443#define pr_crit_ratelimited(fmt, ...) \
444 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
445#define pr_err_ratelimited(fmt, ...) \
446 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
447#define pr_warning_ratelimited(fmt, ...) \
448 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
449#define pr_notice_ratelimited(fmt, ...) \
450 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
451#define pr_info_ratelimited(fmt, ...) \
452 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
453/* no pr_cont_ratelimited, don't do that... */
454/* If you are writing a driver, please use dev_dbg instead */
455#if defined(DEBUG)
456#define pr_debug_ratelimited(fmt, ...) \
457 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
458#else
459#define pr_debug_ratelimited(fmt, ...) \
460 ({ if (0) printk_ratelimited(KERN_DEBUG pr_fmt(fmt), \
461 ##__VA_ARGS__); 0; })
462#endif
463
526211bc
IM
464/*
465 * General tracing related utility functions - trace_printk(),
2002c258
SR
466 * tracing_on/tracing_off and tracing_start()/tracing_stop
467 *
468 * Use tracing_on/tracing_off when you want to quickly turn on or off
469 * tracing. It simply enables or disables the recording of the trace events.
156f5a78 470 * This also corresponds to the user space /sys/kernel/debug/tracing/tracing_on
2002c258
SR
471 * file, which gives a means for the kernel and userspace to interact.
472 * Place a tracing_off() in the kernel where you want tracing to end.
473 * From user space, examine the trace, and then echo 1 > tracing_on
474 * to continue tracing.
475 *
476 * tracing_stop/tracing_start has slightly more overhead. It is used
477 * by things like suspend to ram where disabling the recording of the
478 * trace is not enough, but tracing must actually stop because things
479 * like calling smp_processor_id() may crash the system.
480 *
481 * Most likely, you want to use tracing_on/tracing_off.
526211bc 482 */
2002c258
SR
483#ifdef CONFIG_RING_BUFFER
484void tracing_on(void);
485void tracing_off(void);
486/* trace_off_permanent stops recording with no way to bring it back */
487void tracing_off_permanent(void);
488int tracing_is_on(void);
489#else
490static inline void tracing_on(void) { }
491static inline void tracing_off(void) { }
492static inline void tracing_off_permanent(void) { }
493static inline int tracing_is_on(void) { return 0; }
494#endif
cecbca96
FW
495
496enum ftrace_dump_mode {
497 DUMP_NONE,
498 DUMP_ALL,
499 DUMP_ORIG,
500};
501
526211bc
IM
502#ifdef CONFIG_TRACING
503extern void tracing_start(void);
504extern void tracing_stop(void);
505extern void ftrace_off_permanent(void);
506
507extern void
508ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3);
509
769b0441
FW
510static inline void __attribute__ ((format (printf, 1, 2)))
511____trace_printk_check_format(const char *fmt, ...)
512{
513}
514#define __trace_printk_check_format(fmt, args...) \
515do { \
516 if (0) \
517 ____trace_printk_check_format(fmt, ##args); \
518} while (0)
519
526211bc
IM
520/**
521 * trace_printk - printf formatting in the ftrace buffer
522 * @fmt: the printf format for printing
523 *
524 * Note: __trace_printk is an internal function for trace_printk and
525 * the @ip is passed in via the trace_printk macro.
526 *
527 * This function allows a kernel developer to debug fast path sections
528 * that printk is not appropriate for. By scattering in various
529 * printk like tracing in the code, a developer can quickly see
530 * where problems are occurring.
531 *
532 * This is intended as a debugging tool for the developer only.
533 * Please refrain from leaving trace_printks scattered around in
534 * your code.
535 */
769b0441
FW
536
537#define trace_printk(fmt, args...) \
538do { \
769b0441 539 __trace_printk_check_format(fmt, ##args); \
48ead020
FW
540 if (__builtin_constant_p(fmt)) { \
541 static const char *trace_printk_fmt \
542 __attribute__((section("__trace_printk_fmt"))) = \
543 __builtin_constant_p(fmt) ? fmt : NULL; \
544 \
545 __trace_bprintk(_THIS_IP_, trace_printk_fmt, ##args); \
546 } else \
547 __trace_printk(_THIS_IP_, fmt, ##args); \
769b0441
FW
548} while (0)
549
48ead020
FW
550extern int
551__trace_bprintk(unsigned long ip, const char *fmt, ...)
552 __attribute__ ((format (printf, 2, 3)));
553
526211bc
IM
554extern int
555__trace_printk(unsigned long ip, const char *fmt, ...)
556 __attribute__ ((format (printf, 2, 3)));
769b0441 557
03889384
SR
558extern void trace_dump_stack(void);
559
48ead020
FW
560/*
561 * The double __builtin_constant_p is because gcc will give us an error
562 * if we try to allocate the static variable to fmt if it is not a
563 * constant. Even with the outer if statement.
564 */
769b0441
FW
565#define ftrace_vprintk(fmt, vargs) \
566do { \
48ead020
FW
567 if (__builtin_constant_p(fmt)) { \
568 static const char *trace_printk_fmt \
569 __attribute__((section("__trace_printk_fmt"))) = \
570 __builtin_constant_p(fmt) ? fmt : NULL; \
7bffc23e 571 \
48ead020
FW
572 __ftrace_vbprintk(_THIS_IP_, trace_printk_fmt, vargs); \
573 } else \
574 __ftrace_vprintk(_THIS_IP_, fmt, vargs); \
769b0441
FW
575} while (0)
576
48ead020
FW
577extern int
578__ftrace_vbprintk(unsigned long ip, const char *fmt, va_list ap);
579
526211bc
IM
580extern int
581__ftrace_vprintk(unsigned long ip, const char *fmt, va_list ap);
769b0441 582
cecbca96 583extern void ftrace_dump(enum ftrace_dump_mode oops_dump_mode);
526211bc
IM
584#else
585static inline void
586ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3) { }
587static inline int
588trace_printk(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
589
590static inline void tracing_start(void) { }
591static inline void tracing_stop(void) { }
592static inline void ftrace_off_permanent(void) { }
e36c5458 593static inline void trace_dump_stack(void) { }
526211bc
IM
594static inline int
595trace_printk(const char *fmt, ...)
596{
597 return 0;
598}
599static inline int
600ftrace_vprintk(const char *fmt, va_list ap)
601{
602 return 0;
603}
cecbca96 604static inline void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) { }
769b0441 605#endif /* CONFIG_TRACING */
526211bc 606
1da177e4
LT
607/*
608 * Display an IP address in readable format.
609 */
610
611#define NIPQUAD(addr) \
612 ((unsigned char *)&addr)[0], \
613 ((unsigned char *)&addr)[1], \
614 ((unsigned char *)&addr)[2], \
615 ((unsigned char *)&addr)[3]
46b86a2d 616#define NIPQUAD_FMT "%u.%u.%u.%u"
1da177e4 617
1da177e4 618/*
bdf4bbaa 619 * min()/max()/clamp() macros that also do
1da177e4
LT
620 * strict type-checking.. See the
621 * "unnecessary" pointer comparison.
622 */
bdf4bbaa
HH
623#define min(x, y) ({ \
624 typeof(x) _min1 = (x); \
625 typeof(y) _min2 = (y); \
626 (void) (&_min1 == &_min2); \
627 _min1 < _min2 ? _min1 : _min2; })
628
629#define max(x, y) ({ \
630 typeof(x) _max1 = (x); \
631 typeof(y) _max2 = (y); \
632 (void) (&_max1 == &_max2); \
633 _max1 > _max2 ? _max1 : _max2; })
634
635/**
636 * clamp - return a value clamped to a given range with strict typechecking
637 * @val: current value
638 * @min: minimum allowable value
639 * @max: maximum allowable value
640 *
641 * This macro does strict typechecking of min/max to make sure they are of the
642 * same type as val. See the unnecessary pointer comparisons.
643 */
644#define clamp(val, min, max) ({ \
645 typeof(val) __val = (val); \
646 typeof(min) __min = (min); \
647 typeof(max) __max = (max); \
648 (void) (&__val == &__min); \
649 (void) (&__val == &__max); \
650 __val = __val < __min ? __min: __val; \
651 __val > __max ? __max: __val; })
1da177e4
LT
652
653/*
654 * ..and if you can't take the strict
655 * types, you can specify one yourself.
656 *
bdf4bbaa
HH
657 * Or not use min/max/clamp at all, of course.
658 */
659#define min_t(type, x, y) ({ \
660 type __min1 = (x); \
661 type __min2 = (y); \
662 __min1 < __min2 ? __min1: __min2; })
663
664#define max_t(type, x, y) ({ \
665 type __max1 = (x); \
666 type __max2 = (y); \
667 __max1 > __max2 ? __max1: __max2; })
668
669/**
670 * clamp_t - return a value clamped to a given range using a given type
671 * @type: the type of variable to use
672 * @val: current value
673 * @min: minimum allowable value
674 * @max: maximum allowable value
675 *
676 * This macro does no typechecking and uses temporary variables of type
677 * 'type' to make all the comparisons.
1da177e4 678 */
bdf4bbaa
HH
679#define clamp_t(type, val, min, max) ({ \
680 type __val = (val); \
681 type __min = (min); \
682 type __max = (max); \
683 __val = __val < __min ? __min: __val; \
684 __val > __max ? __max: __val; })
1da177e4 685
bdf4bbaa
HH
686/**
687 * clamp_val - return a value clamped to a given range using val's type
688 * @val: current value
689 * @min: minimum allowable value
690 * @max: maximum allowable value
691 *
692 * This macro does no typechecking and uses temporary variables of whatever
693 * type the input argument 'val' is. This is useful when val is an unsigned
694 * type and min and max are literals that will otherwise be assigned a signed
695 * integer type.
696 */
697#define clamp_val(val, min, max) ({ \
698 typeof(val) __val = (val); \
699 typeof(val) __min = (min); \
700 typeof(val) __max = (max); \
701 __val = __val < __min ? __min: __val; \
702 __val > __max ? __max: __val; })
1da177e4 703
91f68b73
WF
704
705/*
706 * swap - swap value of @a and @b
707 */
ac7b9004
PZ
708#define swap(a, b) \
709 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
91f68b73 710
1da177e4
LT
711/**
712 * container_of - cast a member of a structure out to the containing structure
1da177e4
LT
713 * @ptr: the pointer to the member.
714 * @type: the type of the container struct this is embedded in.
715 * @member: the name of the member within the struct.
716 *
717 */
718#define container_of(ptr, type, member) ({ \
78db2ad6
DW
719 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
720 (type *)( (char *)__mptr - offsetof(type,member) );})
1da177e4 721
d4d23add
KM
722struct sysinfo;
723extern int do_sysinfo(struct sysinfo *info);
724
1da177e4
LT
725#endif /* __KERNEL__ */
726
c01226c3
AB
727#ifndef __EXPORTED_HEADERS__
728#ifndef __KERNEL__
729#warning Attempt to use kernel headers from user space, see http://kernelnewbies.org/KernelHeaders
730#endif /* __KERNEL__ */
731#endif /* __EXPORTED_HEADERS__ */
732
1da177e4
LT
733#define SI_LOAD_SHIFT 16
734struct sysinfo {
735 long uptime; /* Seconds since boot */
736 unsigned long loads[3]; /* 1, 5, and 15 minute load averages */
737 unsigned long totalram; /* Total usable main memory size */
738 unsigned long freeram; /* Available memory size */
739 unsigned long sharedram; /* Amount of shared memory */
740 unsigned long bufferram; /* Memory used by buffers */
741 unsigned long totalswap; /* Total swap space size */
742 unsigned long freeswap; /* swap space still available */
743 unsigned short procs; /* Number of current processes */
744 unsigned short pad; /* explicit padding for m68k */
745 unsigned long totalhigh; /* Total high memory size */
746 unsigned long freehigh; /* Available high memory size */
747 unsigned int mem_unit; /* Memory unit size in bytes */
748 char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
749};
750
c0398ee6 751/* Force a compilation error if condition is true */
8c87df45
JB
752#define BUILD_BUG_ON(condition) ((void)BUILD_BUG_ON_ZERO(condition))
753
754/* Force a compilation error if condition is constant and true */
755#define MAYBE_BUILD_BUG_ON(cond) ((void)sizeof(char[1 - 2 * !!(cond)]))
1da177e4 756
cc8ef6eb
RD
757/* Force a compilation error if a constant expression is not a power of 2 */
758#define BUILD_BUG_ON_NOT_POWER_OF_2(n) \
759 BUILD_BUG_ON((n) == 0 || (((n) & ((n) - 1)) != 0))
760
4552d5dc
JB
761/* Force a compilation error if condition is true, but also produce a
762 result (of value 0 and type size_t), so the expression can be used
763 e.g. in a structure initializer (or where-ever else comma expressions
764 aren't permitted). */
8c87df45
JB
765#define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); }))
766#define BUILD_BUG_ON_NULL(e) ((void *)sizeof(struct { int:-!!(e); }))
4552d5dc 767
1da177e4 768/* Trap pasters of __FUNCTION__ at compile-time */
1da177e4 769#define __FUNCTION__ (__func__)
1da177e4 770
08e0f6a9
CL
771/* This helps us to avoid #ifdef CONFIG_NUMA */
772#ifdef CONFIG_NUMA
773#define NUMA_BUILD 1
774#else
775#define NUMA_BUILD 0
776#endif
777
29e71abf
SR
778/* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */
779#ifdef CONFIG_FTRACE_MCOUNT_RECORD
780# define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD
781#endif
782
1da177e4 783#endif