kernel.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:9k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_KERNEL_H
  2. #define _LINUX_KERNEL_H
  3. /*
  4.  * 'kernel.h' contains some often-used function prototypes etc
  5.  */
  6. #ifdef __KERNEL__
  7. #include <stdarg.h>
  8. #include <linux/linkage.h>
  9. #include <linux/stddef.h>
  10. #include <linux/types.h>
  11. #include <linux/compiler.h>
  12. #include <linux/bitops.h>
  13. #include <asm/byteorder.h>
  14. #include <asm/bug.h>
  15. extern const char linux_banner[];
  16. #define INT_MAX ((int)(~0U>>1))
  17. #define INT_MIN (-INT_MAX - 1)
  18. #define UINT_MAX (~0U)
  19. #define LONG_MAX ((long)(~0UL>>1))
  20. #define LONG_MIN (-LONG_MAX - 1)
  21. #define ULONG_MAX (~0UL)
  22. #define STACK_MAGIC 0xdeadbeef
  23. #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
  24. #define ALIGN(x,a) (((x)+(a)-1)&~((a)-1))
  25. #define KERN_EMERG "<0>" /* system is unusable */
  26. #define KERN_ALERT "<1>" /* action must be taken immediately */
  27. #define KERN_CRIT "<2>" /* critical conditions */
  28. #define KERN_ERR "<3>" /* error conditions */
  29. #define KERN_WARNING "<4>" /* warning conditions */
  30. #define KERN_NOTICE "<5>" /* normal but significant condition */
  31. #define KERN_INFO "<6>" /* informational */
  32. #define KERN_DEBUG "<7>" /* debug-level messages */
  33. extern int console_printk[];
  34. #define console_loglevel (console_printk[0])
  35. #define default_message_loglevel (console_printk[1])
  36. #define minimum_console_loglevel (console_printk[2])
  37. #define default_console_loglevel (console_printk[3])
  38. struct completion;
  39. /**
  40.  * might_sleep - annotation for functions that can sleep
  41.  *
  42.  * this macro will print a stack trace if it is executed in an atomic
  43.  * context (spinlock, irq-handler, ...).
  44.  *
  45.  * This is a useful debugging help to be able to catch problems early and not
  46.  * be biten later when the calling function happens to sleep when it is not
  47.  * supposed to.
  48.  */
  49. #ifdef CONFIG_PREEMPT_VOLUNTARY
  50. extern int cond_resched(void);
  51. # define might_resched() cond_resched()
  52. #else
  53. # define might_resched() do { } while (0)
  54. #endif
  55. #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
  56.   void __might_sleep(char *file, int line);
  57. # define might_sleep() 
  58. do { __might_sleep(__FILE__, __LINE__); might_resched(); } while (0)
  59. #else
  60. # define might_sleep() do { might_resched(); } while (0)
  61. #endif
  62. #define might_sleep_if(cond) do { if (unlikely(cond)) might_sleep(); } while (0)
  63. #define abs(x) ({
  64. int __x = (x);
  65. (__x < 0) ? -__x : __x;
  66. })
  67. #define labs(x) ({
  68. long __x = (x);
  69. (__x < 0) ? -__x : __x;
  70. })
  71. extern struct notifier_block *panic_notifier_list;
  72. extern long (*panic_blink)(long time);
  73. NORET_TYPE void panic(const char * fmt, ...)
  74. __attribute__ ((NORET_AND format (printf, 1, 2)));
  75. fastcall NORET_TYPE void do_exit(long error_code)
  76. ATTRIB_NORET;
  77. NORET_TYPE void complete_and_exit(struct completion *, long)
  78. ATTRIB_NORET;
  79. extern unsigned long simple_strtoul(const char *,char **,unsigned int);
  80. extern long simple_strtol(const char *,char **,unsigned int);
  81. extern unsigned long long simple_strtoull(const char *,char **,unsigned int);
  82. extern long long simple_strtoll(const char *,char **,unsigned int);
  83. extern int sprintf(char * buf, const char * fmt, ...)
  84. __attribute__ ((format (printf, 2, 3)));
  85. extern int vsprintf(char *buf, const char *, va_list)
  86. __attribute__ ((format (printf, 2, 0)));
  87. extern int snprintf(char * buf, size_t size, const char * fmt, ...)
  88. __attribute__ ((format (printf, 3, 4)));
  89. extern int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
  90. __attribute__ ((format (printf, 3, 0)));
  91. extern int scnprintf(char * buf, size_t size, const char * fmt, ...)
  92. __attribute__ ((format (printf, 3, 4)));
  93. extern int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
  94. __attribute__ ((format (printf, 3, 0)));
  95. extern int sscanf(const char *, const char *, ...)
  96. __attribute__ ((format (scanf, 2, 3)));
  97. extern int vsscanf(const char *, const char *, va_list)
  98. __attribute__ ((format (scanf, 2, 0)));
  99. extern int get_option(char **str, int *pint);
  100. extern char *get_options(const char *str, int nints, int *ints);
  101. extern unsigned long long memparse(char *ptr, char **retptr);
  102. extern int __kernel_text_address(unsigned long addr);
  103. extern int kernel_text_address(unsigned long addr);
  104. extern int session_of_pgrp(int pgrp);
  105. #ifdef CONFIG_PRINTK
  106. asmlinkage int vprintk(const char *fmt, va_list args)
  107. __attribute__ ((format (printf, 1, 0)));
  108. asmlinkage int printk(const char * fmt, ...)
  109. __attribute__ ((format (printf, 1, 2)));
  110. #else
  111. static inline int vprintk(const char *s, va_list args)
  112. __attribute__ ((format (printf, 1, 0)));
  113. static inline int vprintk(const char *s, va_list args) { return 0; }
  114. static inline int printk(const char *s, ...)
  115. __attribute__ ((format (printf, 1, 2)));
  116. static inline int printk(const char *s, ...) { return 0; }
  117. #endif
  118. unsigned long int_sqrt(unsigned long);
  119. static inline int __attribute_pure__ long_log2(unsigned long x)
  120. {
  121. int r = 0;
  122. for (x >>= 1; x > 0; x >>= 1)
  123. r++;
  124. return r;
  125. }
  126. static inline unsigned long __attribute_const__ roundup_pow_of_two(unsigned long x)
  127. {
  128. return (1UL << fls(x - 1));
  129. }
  130. extern int printk_ratelimit(void);
  131. extern int __printk_ratelimit(int ratelimit_jiffies, int ratelimit_burst);
  132. static inline void console_silent(void)
  133. {
  134. console_loglevel = 0;
  135. }
  136. static inline void console_verbose(void)
  137. {
  138. if (console_loglevel)
  139. console_loglevel = 15;
  140. }
  141. extern void bust_spinlocks(int yes);
  142. extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */
  143. extern int panic_timeout;
  144. extern int panic_on_oops;
  145. extern int tainted;
  146. extern const char *print_tainted(void);
  147. extern void add_taint(unsigned);
  148. /* Values used for system_state */
  149. extern enum system_states {
  150. SYSTEM_BOOTING,
  151. SYSTEM_RUNNING,
  152. SYSTEM_HALT,
  153. SYSTEM_POWER_OFF,
  154. SYSTEM_RESTART,
  155. } system_state;
  156. #define TAINT_PROPRIETARY_MODULE (1<<0)
  157. #define TAINT_FORCED_MODULE (1<<1)
  158. #define TAINT_UNSAFE_SMP (1<<2)
  159. #define TAINT_FORCED_RMMOD (1<<3)
  160. #define TAINT_MACHINE_CHECK (1<<4)
  161. #define TAINT_BAD_PAGE (1<<5)
  162. extern void dump_stack(void);
  163. #ifdef DEBUG
  164. #define pr_debug(fmt,arg...) 
  165. printk(KERN_DEBUG fmt,##arg)
  166. #else
  167. #define pr_debug(fmt,arg...) 
  168. do { } while (0)
  169. #endif
  170. #define pr_info(fmt,arg...) 
  171. printk(KERN_INFO fmt,##arg)
  172. /*
  173.  *      Display an IP address in readable format.
  174.  */
  175. #define NIPQUAD(addr) 
  176. ((unsigned char *)&addr)[0], 
  177. ((unsigned char *)&addr)[1], 
  178. ((unsigned char *)&addr)[2], 
  179. ((unsigned char *)&addr)[3]
  180. #define NIP6(addr) 
  181. ntohs((addr).s6_addr16[0]), 
  182. ntohs((addr).s6_addr16[1]), 
  183. ntohs((addr).s6_addr16[2]), 
  184. ntohs((addr).s6_addr16[3]), 
  185. ntohs((addr).s6_addr16[4]), 
  186. ntohs((addr).s6_addr16[5]), 
  187. ntohs((addr).s6_addr16[6]), 
  188. ntohs((addr).s6_addr16[7])
  189. #if defined(__LITTLE_ENDIAN)
  190. #define HIPQUAD(addr) 
  191. ((unsigned char *)&addr)[3], 
  192. ((unsigned char *)&addr)[2], 
  193. ((unsigned char *)&addr)[1], 
  194. ((unsigned char *)&addr)[0]
  195. #elif defined(__BIG_ENDIAN)
  196. #define HIPQUAD NIPQUAD
  197. #else
  198. #error "Please fix asm/byteorder.h"
  199. #endif /* __LITTLE_ENDIAN */
  200. /*
  201.  * min()/max() macros that also do
  202.  * strict type-checking.. See the
  203.  * "unnecessary" pointer comparison.
  204.  */
  205. #define min(x,y) ({ 
  206. typeof(x) _x = (x);
  207. typeof(y) _y = (y);
  208. (void) (&_x == &_y);
  209. _x < _y ? _x : _y; })
  210. #define max(x,y) ({ 
  211. typeof(x) _x = (x);
  212. typeof(y) _y = (y);
  213. (void) (&_x == &_y);
  214. _x > _y ? _x : _y; })
  215. /*
  216.  * ..and if you can't take the strict
  217.  * types, you can specify one yourself.
  218.  *
  219.  * Or not use min/max at all, of course.
  220.  */
  221. #define min_t(type,x,y) 
  222. ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
  223. #define max_t(type,x,y) 
  224. ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
  225. /**
  226.  * container_of - cast a member of a structure out to the containing structure
  227.  *
  228.  * @ptr: the pointer to the member.
  229.  * @type: the type of the container struct this is embedded in.
  230.  * @member: the name of the member within the struct.
  231.  *
  232.  */
  233. #define container_of(ptr, type, member) ({
  234.         const typeof( ((type *)0)->member ) *__mptr = (ptr);
  235.         (type *)( (char *)__mptr - offsetof(type,member) );})
  236. /*
  237.  * Check at compile time that something is of a particular type.
  238.  * Always evaluates to 1 so you may use it easily in comparisons.
  239.  */
  240. #define typecheck(type,x) 
  241. ({ type __dummy; 
  242. typeof(x) __dummy2; 
  243. (void)(&__dummy == &__dummy2); 
  244. 1; 
  245. })
  246. #endif /* __KERNEL__ */
  247. #define SI_LOAD_SHIFT 16
  248. struct sysinfo {
  249. long uptime; /* Seconds since boot */
  250. unsigned long loads[3]; /* 1, 5, and 15 minute load averages */
  251. unsigned long totalram; /* Total usable main memory size */
  252. unsigned long freeram; /* Available memory size */
  253. unsigned long sharedram; /* Amount of shared memory */
  254. unsigned long bufferram; /* Memory used by buffers */
  255. unsigned long totalswap; /* Total swap space size */
  256. unsigned long freeswap; /* swap space still available */
  257. unsigned short procs; /* Number of current processes */
  258. unsigned short pad; /* explicit padding for m68k */
  259. unsigned long totalhigh; /* Total high memory size */
  260. unsigned long freehigh; /* Available high memory size */
  261. unsigned int mem_unit; /* Memory unit size in bytes */
  262. char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
  263. };
  264. /* Force a compilation error if condition is false */
  265. #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
  266. #ifdef CONFIG_SYSCTL
  267. extern int randomize_va_space;
  268. #else
  269. #define randomize_va_space 1
  270. #endif
  271. /* Trap pasters of __FUNCTION__ at compile-time */
  272. #if __GNUC__ > 2 || __GNUC_MINOR__ >= 95
  273. #define __FUNCTION__ (__func__)
  274. #endif
  275. #endif