Merge branch 'master' of /repos/git/net-next-2.6
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / kernel.h
bloba38d6bd6fde649aec168cc1f8e51c62f37ec9f75
1 #ifndef _LINUX_KERNEL_H
2 #define _LINUX_KERNEL_H
4 /*
5 * 'kernel.h' contains some often-used function prototypes etc
6 */
7 #define __ALIGN_KERNEL(x, a) __ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1)
8 #define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask))
10 #ifdef __KERNEL__
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>
18 #include <linux/log2.h>
19 #include <linux/typecheck.h>
20 #include <linux/dynamic_debug.h>
21 #include <asm/byteorder.h>
22 #include <asm/bug.h>
24 extern const char linux_banner[];
25 extern const char linux_proc_banner[];
27 #define USHORT_MAX ((u16)(~0U))
28 #define SHORT_MAX ((s16)(USHORT_MAX>>1))
29 #define SHORT_MIN (-SHORT_MAX - 1)
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)
36 #define LLONG_MAX ((long long)(~0ULL>>1))
37 #define LLONG_MIN (-LLONG_MAX - 1)
38 #define ULLONG_MAX (~0ULL)
40 #define STACK_MAGIC 0xdeadbeef
42 #define ALIGN(x, a) __ALIGN_KERNEL((x), (a))
43 #define __ALIGN_MASK(x, mask) __ALIGN_KERNEL_MASK((x), (mask))
44 #define PTR_ALIGN(p, a) ((typeof(p))ALIGN((unsigned long)(p), (a)))
45 #define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0)
47 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
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.
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))
59 #define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f))
60 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
61 #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
62 #define DIV_ROUND_CLOSEST(x, divisor)( \
63 { \
64 typeof(divisor) __divisor = divisor; \
65 (((x) + ((__divisor) / 2)) / (__divisor)); \
66 } \
69 #define _RET_IP_ (unsigned long)__builtin_return_address(0)
70 #define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; })
72 #ifdef CONFIG_LBDAF
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 } \
84 #endif
86 /**
87 * upper_32_bits - return bits 32-63 of a number
88 * @n: the number we're accessing
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.
94 #define upper_32_bits(n) ((u32)(((n) >> 16) >> 16))
96 /**
97 * lower_32_bits - return bits 0-31 of a number
98 * @n: the number we're accessing
100 #define lower_32_bits(n) ((u32)(n))
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 */
111 /* Use the default kernel loglevel */
112 #define KERN_DEFAULT "<d>"
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).
118 #define KERN_CONT "<c>"
120 extern int console_printk[];
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])
127 struct completion;
128 struct pt_regs;
129 struct user;
131 #ifdef CONFIG_PREEMPT_VOLUNTARY
132 extern int _cond_resched(void);
133 # define might_resched() _cond_resched()
134 #else
135 # define might_resched() do { } while (0)
136 #endif
138 #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
139 void __might_sleep(const char *file, int line, int preempt_offset);
141 * might_sleep - annotation for functions that can sleep
143 * this macro will print a stack trace if it is executed in an atomic
144 * context (spinlock, irq-handler, ...).
146 * This is a useful debugging help to be able to catch problems early and not
147 * be bitten later when the calling function happens to sleep when it is not
148 * supposed to.
150 # define might_sleep() \
151 do { __might_sleep(__FILE__, __LINE__, 0); might_resched(); } while (0)
152 #else
153 static inline void __might_sleep(const char *file, int line,
154 int preempt_offset) { }
155 # define might_sleep() do { might_resched(); } while (0)
156 #endif
158 #define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0)
160 #define abs(x) ({ \
161 long __x = (x); \
162 (__x < 0) ? -__x : __x; \
165 #ifdef CONFIG_PROVE_LOCKING
166 void might_fault(void);
167 #else
168 static inline void might_fault(void)
170 might_sleep();
172 #endif
174 extern struct atomic_notifier_head panic_notifier_list;
175 extern long (*panic_blink)(long time);
176 NORET_TYPE void panic(const char * fmt, ...)
177 __attribute__ ((NORET_AND format (printf, 1, 2))) __cold;
178 extern void oops_enter(void);
179 extern void oops_exit(void);
180 extern int oops_may_print(void);
181 NORET_TYPE void do_exit(long error_code)
182 ATTRIB_NORET;
183 NORET_TYPE void complete_and_exit(struct completion *, long)
184 ATTRIB_NORET;
185 extern unsigned long simple_strtoul(const char *,char **,unsigned int);
186 extern long simple_strtol(const char *,char **,unsigned int);
187 extern unsigned long long simple_strtoull(const char *,char **,unsigned int);
188 extern long long simple_strtoll(const char *,char **,unsigned int);
189 extern int strict_strtoul(const char *, unsigned int, unsigned long *);
190 extern int strict_strtol(const char *, unsigned int, long *);
191 extern int strict_strtoull(const char *, unsigned int, unsigned long long *);
192 extern int strict_strtoll(const char *, unsigned int, long long *);
193 extern int sprintf(char * buf, const char * fmt, ...)
194 __attribute__ ((format (printf, 2, 3)));
195 extern int vsprintf(char *buf, const char *, va_list)
196 __attribute__ ((format (printf, 2, 0)));
197 extern int snprintf(char * buf, size_t size, const char * fmt, ...)
198 __attribute__ ((format (printf, 3, 4)));
199 extern int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
200 __attribute__ ((format (printf, 3, 0)));
201 extern int scnprintf(char * buf, size_t size, const char * fmt, ...)
202 __attribute__ ((format (printf, 3, 4)));
203 extern int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
204 __attribute__ ((format (printf, 3, 0)));
205 extern char *kasprintf(gfp_t gfp, const char *fmt, ...)
206 __attribute__ ((format (printf, 2, 3)));
207 extern char *kvasprintf(gfp_t gfp, const char *fmt, va_list args);
209 extern int sscanf(const char *, const char *, ...)
210 __attribute__ ((format (scanf, 2, 3)));
211 extern int vsscanf(const char *, const char *, va_list)
212 __attribute__ ((format (scanf, 2, 0)));
214 extern int get_option(char **str, int *pint);
215 extern char *get_options(const char *str, int nints, int *ints);
216 extern unsigned long long memparse(const char *ptr, char **retptr);
218 extern int core_kernel_text(unsigned long addr);
219 extern int __kernel_text_address(unsigned long addr);
220 extern int kernel_text_address(unsigned long addr);
221 extern int func_ptr_is_kernel_text(void *ptr);
223 struct pid;
224 extern struct pid *session_of_pgrp(struct pid *pgrp);
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.
234 * Use it for definite and high priority BIOS bugs.
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.
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.
244 * Use it for information or very low priority BIOS bugs.
246 #define FW_BUG "[Firmware Bug]: "
247 #define FW_WARN "[Firmware Warn]: "
248 #define FW_INFO "[Firmware Info]: "
250 #ifdef CONFIG_PRINTK
251 asmlinkage int vprintk(const char *fmt, va_list args)
252 __attribute__ ((format (printf, 1, 0)));
253 asmlinkage int printk(const char * fmt, ...)
254 __attribute__ ((format (printf, 1, 2))) __cold;
256 extern int __printk_ratelimit(const char *func);
257 #define printk_ratelimit() __printk_ratelimit(__func__)
258 extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
259 unsigned int interval_msec);
261 extern int printk_delay_msec;
264 * Print a one-time message (analogous to WARN_ONCE() et al):
266 #define printk_once(x...) ({ \
267 static bool __print_once; \
269 if (!__print_once) { \
270 __print_once = true; \
271 printk(x); \
275 void log_buf_kexec_setup(void);
276 #else
277 static inline int vprintk(const char *s, va_list args)
278 __attribute__ ((format (printf, 1, 0)));
279 static inline int vprintk(const char *s, va_list args) { return 0; }
280 static inline int printk(const char *s, ...)
281 __attribute__ ((format (printf, 1, 2)));
282 static inline int __cold printk(const char *s, ...) { return 0; }
283 static inline int printk_ratelimit(void) { return 0; }
284 static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies, \
285 unsigned int interval_msec) \
286 { return false; }
288 /* No effect, but we still get type checking even in the !PRINTK case: */
289 #define printk_once(x...) printk(x)
291 static inline void log_buf_kexec_setup(void)
294 #endif
296 extern int printk_needs_cpu(int cpu);
297 extern void printk_tick(void);
299 extern void asmlinkage __attribute__((format(printf, 1, 2)))
300 early_printk(const char *fmt, ...);
302 unsigned long int_sqrt(unsigned long);
304 static inline void console_silent(void)
306 console_loglevel = 0;
309 static inline void console_verbose(void)
311 if (console_loglevel)
312 console_loglevel = 15;
315 extern void bust_spinlocks(int yes);
316 extern void wake_up_klogd(void);
317 extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */
318 extern int panic_timeout;
319 extern int panic_on_oops;
320 extern int panic_on_unrecovered_nmi;
321 extern int panic_on_io_nmi;
322 extern const char *print_tainted(void);
323 extern void add_taint(unsigned flag);
324 extern int test_taint(unsigned flag);
325 extern unsigned long get_taint(void);
326 extern int root_mountflags;
328 /* Values used for system_state */
329 extern enum system_states {
330 SYSTEM_BOOTING,
331 SYSTEM_RUNNING,
332 SYSTEM_HALT,
333 SYSTEM_POWER_OFF,
334 SYSTEM_RESTART,
335 SYSTEM_SUSPEND_DISK,
336 } system_state;
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
348 #define TAINT_CRAP 10
350 extern void dump_stack(void) __cold;
352 enum {
353 DUMP_PREFIX_NONE,
354 DUMP_PREFIX_ADDRESS,
355 DUMP_PREFIX_OFFSET
357 extern void hex_dump_to_buffer(const void *buf, size_t len,
358 int rowsize, int groupsize,
359 char *linebuf, size_t linebuflen, bool ascii);
360 extern void print_hex_dump(const char *level, const char *prefix_str,
361 int prefix_type, int rowsize, int groupsize,
362 const void *buf, size_t len, bool ascii);
363 extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
364 const void *buf, size_t len);
366 extern 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]
370 static inline char *pack_hex_byte(char *buf, u8 byte)
372 *buf++ = hex_asc_hi(byte);
373 *buf++ = hex_asc_lo(byte);
374 return buf;
377 #ifndef pr_fmt
378 #define pr_fmt(fmt) fmt
379 #endif
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__)
395 #define pr_cont(fmt, ...) \
396 printk(KERN_CONT fmt, ##__VA_ARGS__)
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
407 /* If you are writing a driver, please use dev_dbg instead */
408 #if defined(DEBUG)
409 #define pr_debug(fmt, ...) \
410 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
411 #elif defined(CONFIG_DYNAMIC_DEBUG)
412 /* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */
413 #define pr_debug(fmt, ...) \
414 dynamic_pr_debug(fmt, ##__VA_ARGS__)
415 #else
416 #define pr_debug(fmt, ...) \
417 ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; })
418 #endif
421 * ratelimited messages with local ratelimit_state,
422 * no local ratelimit_state used in the !PRINTK case
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 }; \
431 if (__ratelimit(&_rs)) \
432 printk(fmt, ##__VA_ARGS__); \
434 #else
435 /* No effect, but we still get type checking even in the !PRINTK case: */
436 #define printk_ratelimited printk
437 #endif
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
465 * General tracing related utility functions - trace_printk(),
466 * tracing_on/tracing_off and tracing_start()/tracing_stop
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.
470 * This also corresponds to the user space /sys/kernel/debug/tracing/tracing_on
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.
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.
481 * Most likely, you want to use tracing_on/tracing_off.
483 #ifdef CONFIG_RING_BUFFER
484 void tracing_on(void);
485 void tracing_off(void);
486 /* trace_off_permanent stops recording with no way to bring it back */
487 void tracing_off_permanent(void);
488 int tracing_is_on(void);
489 #else
490 static inline void tracing_on(void) { }
491 static inline void tracing_off(void) { }
492 static inline void tracing_off_permanent(void) { }
493 static inline int tracing_is_on(void) { return 0; }
494 #endif
495 #ifdef CONFIG_TRACING
496 extern void tracing_start(void);
497 extern void tracing_stop(void);
498 extern void ftrace_off_permanent(void);
500 extern void
501 ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3);
503 static inline void __attribute__ ((format (printf, 1, 2)))
504 ____trace_printk_check_format(const char *fmt, ...)
507 #define __trace_printk_check_format(fmt, args...) \
508 do { \
509 if (0) \
510 ____trace_printk_check_format(fmt, ##args); \
511 } while (0)
514 * trace_printk - printf formatting in the ftrace buffer
515 * @fmt: the printf format for printing
517 * Note: __trace_printk is an internal function for trace_printk and
518 * the @ip is passed in via the trace_printk macro.
520 * This function allows a kernel developer to debug fast path sections
521 * that printk is not appropriate for. By scattering in various
522 * printk like tracing in the code, a developer can quickly see
523 * where problems are occurring.
525 * This is intended as a debugging tool for the developer only.
526 * Please refrain from leaving trace_printks scattered around in
527 * your code.
530 #define trace_printk(fmt, args...) \
531 do { \
532 __trace_printk_check_format(fmt, ##args); \
533 if (__builtin_constant_p(fmt)) { \
534 static const char *trace_printk_fmt \
535 __attribute__((section("__trace_printk_fmt"))) = \
536 __builtin_constant_p(fmt) ? fmt : NULL; \
538 __trace_bprintk(_THIS_IP_, trace_printk_fmt, ##args); \
539 } else \
540 __trace_printk(_THIS_IP_, fmt, ##args); \
541 } while (0)
543 extern int
544 __trace_bprintk(unsigned long ip, const char *fmt, ...)
545 __attribute__ ((format (printf, 2, 3)));
547 extern int
548 __trace_printk(unsigned long ip, const char *fmt, ...)
549 __attribute__ ((format (printf, 2, 3)));
551 extern void trace_dump_stack(void);
554 * The double __builtin_constant_p is because gcc will give us an error
555 * if we try to allocate the static variable to fmt if it is not a
556 * constant. Even with the outer if statement.
558 #define ftrace_vprintk(fmt, vargs) \
559 do { \
560 if (__builtin_constant_p(fmt)) { \
561 static const char *trace_printk_fmt \
562 __attribute__((section("__trace_printk_fmt"))) = \
563 __builtin_constant_p(fmt) ? fmt : NULL; \
565 __ftrace_vbprintk(_THIS_IP_, trace_printk_fmt, vargs); \
566 } else \
567 __ftrace_vprintk(_THIS_IP_, fmt, vargs); \
568 } while (0)
570 extern int
571 __ftrace_vbprintk(unsigned long ip, const char *fmt, va_list ap);
573 extern int
574 __ftrace_vprintk(unsigned long ip, const char *fmt, va_list ap);
576 extern void ftrace_dump(void);
577 #else
578 static inline void
579 ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3) { }
580 static inline int
581 trace_printk(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
583 static inline void tracing_start(void) { }
584 static inline void tracing_stop(void) { }
585 static inline void ftrace_off_permanent(void) { }
586 static inline void trace_dump_stack(void) { }
587 static inline int
588 trace_printk(const char *fmt, ...)
590 return 0;
592 static inline int
593 ftrace_vprintk(const char *fmt, va_list ap)
595 return 0;
597 static inline void ftrace_dump(void) { }
598 #endif /* CONFIG_TRACING */
601 * Display an IP address in readable format.
604 #define NIPQUAD(addr) \
605 ((unsigned char *)&addr)[0], \
606 ((unsigned char *)&addr)[1], \
607 ((unsigned char *)&addr)[2], \
608 ((unsigned char *)&addr)[3]
609 #define NIPQUAD_FMT "%u.%u.%u.%u"
612 * min()/max()/clamp() macros that also do
613 * strict type-checking.. See the
614 * "unnecessary" pointer comparison.
616 #define min(x, y) ({ \
617 typeof(x) _min1 = (x); \
618 typeof(y) _min2 = (y); \
619 (void) (&_min1 == &_min2); \
620 _min1 < _min2 ? _min1 : _min2; })
622 #define max(x, y) ({ \
623 typeof(x) _max1 = (x); \
624 typeof(y) _max2 = (y); \
625 (void) (&_max1 == &_max2); \
626 _max1 > _max2 ? _max1 : _max2; })
629 * clamp - return a value clamped to a given range with strict typechecking
630 * @val: current value
631 * @min: minimum allowable value
632 * @max: maximum allowable value
634 * This macro does strict typechecking of min/max to make sure they are of the
635 * same type as val. See the unnecessary pointer comparisons.
637 #define clamp(val, min, max) ({ \
638 typeof(val) __val = (val); \
639 typeof(min) __min = (min); \
640 typeof(max) __max = (max); \
641 (void) (&__val == &__min); \
642 (void) (&__val == &__max); \
643 __val = __val < __min ? __min: __val; \
644 __val > __max ? __max: __val; })
647 * ..and if you can't take the strict
648 * types, you can specify one yourself.
650 * Or not use min/max/clamp at all, of course.
652 #define min_t(type, x, y) ({ \
653 type __min1 = (x); \
654 type __min2 = (y); \
655 __min1 < __min2 ? __min1: __min2; })
657 #define max_t(type, x, y) ({ \
658 type __max1 = (x); \
659 type __max2 = (y); \
660 __max1 > __max2 ? __max1: __max2; })
663 * clamp_t - return a value clamped to a given range using a given type
664 * @type: the type of variable to use
665 * @val: current value
666 * @min: minimum allowable value
667 * @max: maximum allowable value
669 * This macro does no typechecking and uses temporary variables of type
670 * 'type' to make all the comparisons.
672 #define clamp_t(type, val, min, max) ({ \
673 type __val = (val); \
674 type __min = (min); \
675 type __max = (max); \
676 __val = __val < __min ? __min: __val; \
677 __val > __max ? __max: __val; })
680 * clamp_val - return a value clamped to a given range using val's type
681 * @val: current value
682 * @min: minimum allowable value
683 * @max: maximum allowable value
685 * This macro does no typechecking and uses temporary variables of whatever
686 * type the input argument 'val' is. This is useful when val is an unsigned
687 * type and min and max are literals that will otherwise be assigned a signed
688 * integer type.
690 #define clamp_val(val, min, max) ({ \
691 typeof(val) __val = (val); \
692 typeof(val) __min = (min); \
693 typeof(val) __max = (max); \
694 __val = __val < __min ? __min: __val; \
695 __val > __max ? __max: __val; })
699 * swap - swap value of @a and @b
701 #define swap(a, b) \
702 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
705 * container_of - cast a member of a structure out to the containing structure
706 * @ptr: the pointer to the member.
707 * @type: the type of the container struct this is embedded in.
708 * @member: the name of the member within the struct.
711 #define container_of(ptr, type, member) ({ \
712 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
713 (type *)( (char *)__mptr - offsetof(type,member) );})
715 struct sysinfo;
716 extern int do_sysinfo(struct sysinfo *info);
718 #endif /* __KERNEL__ */
720 #ifndef __EXPORTED_HEADERS__
721 #ifndef __KERNEL__
722 #warning Attempt to use kernel headers from user space, see http://kernelnewbies.org/KernelHeaders
723 #endif /* __KERNEL__ */
724 #endif /* __EXPORTED_HEADERS__ */
726 #define SI_LOAD_SHIFT 16
727 struct sysinfo {
728 long uptime; /* Seconds since boot */
729 unsigned long loads[3]; /* 1, 5, and 15 minute load averages */
730 unsigned long totalram; /* Total usable main memory size */
731 unsigned long freeram; /* Available memory size */
732 unsigned long sharedram; /* Amount of shared memory */
733 unsigned long bufferram; /* Memory used by buffers */
734 unsigned long totalswap; /* Total swap space size */
735 unsigned long freeswap; /* swap space still available */
736 unsigned short procs; /* Number of current processes */
737 unsigned short pad; /* explicit padding for m68k */
738 unsigned long totalhigh; /* Total high memory size */
739 unsigned long freehigh; /* Available high memory size */
740 unsigned int mem_unit; /* Memory unit size in bytes */
741 char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
744 /* Force a compilation error if condition is true */
745 #define BUILD_BUG_ON(condition) ((void)BUILD_BUG_ON_ZERO(condition))
747 /* Force a compilation error if condition is constant and true */
748 #define MAYBE_BUILD_BUG_ON(cond) ((void)sizeof(char[1 - 2 * !!(cond)]))
750 /* Force a compilation error if a constant expression is not a power of 2 */
751 #define BUILD_BUG_ON_NOT_POWER_OF_2(n) \
752 BUILD_BUG_ON((n) == 0 || (((n) & ((n) - 1)) != 0))
754 /* Force a compilation error if condition is true, but also produce a
755 result (of value 0 and type size_t), so the expression can be used
756 e.g. in a structure initializer (or where-ever else comma expressions
757 aren't permitted). */
758 #define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); }))
759 #define BUILD_BUG_ON_NULL(e) ((void *)sizeof(struct { int:-!!(e); }))
761 /* Trap pasters of __FUNCTION__ at compile-time */
762 #define __FUNCTION__ (__func__)
764 /* This helps us to avoid #ifdef CONFIG_NUMA */
765 #ifdef CONFIG_NUMA
766 #define NUMA_BUILD 1
767 #else
768 #define NUMA_BUILD 0
769 #endif
771 /* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */
772 #ifdef CONFIG_FTRACE_MCOUNT_RECORD
773 # define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD
774 #endif
776 #endif