Wang Nan | 37fbe0a | 2015-06-01 07:37:47 +0000 | [diff] [blame] | 1 | #ifndef __TOOLS_LINUX_KERNEL_H |
| 2 | #define __TOOLS_LINUX_KERNEL_H |
Arnaldo Carvalho de Melo | 43cbcd8 | 2009-07-01 12:28:37 -0300 | [diff] [blame] | 3 | |
Frederic Weisbecker | 5a116dd | 2009-10-17 17:12:33 +0200 | [diff] [blame] | 4 | #include <stdarg.h> |
Arnaldo Carvalho de Melo | d0761e3 | 2016-07-07 15:42:33 -0300 | [diff] [blame] | 5 | #include <stddef.h> |
Frederic Weisbecker | 5a116dd | 2009-10-17 17:12:33 +0200 | [diff] [blame] | 6 | #include <assert.h> |
Arnaldo Carvalho de Melo | 8607c1e | 2017-04-17 11:29:26 -0300 | [diff] [blame^] | 7 | #include <linux/compiler.h> |
Frederic Weisbecker | 5a116dd | 2009-10-17 17:12:33 +0200 | [diff] [blame] | 8 | |
Arnaldo Carvalho de Melo | eaa75b5 | 2017-02-22 17:42:40 -0300 | [diff] [blame] | 9 | #ifndef UINT_MAX |
| 10 | #define UINT_MAX (~0U) |
| 11 | #endif |
| 12 | |
Frederic Weisbecker | 5a116dd | 2009-10-17 17:12:33 +0200 | [diff] [blame] | 13 | #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) |
| 14 | |
Irina Tirdea | 9ac3e48 | 2012-09-11 01:15:01 +0300 | [diff] [blame] | 15 | #define PERF_ALIGN(x, a) __PERF_ALIGN_MASK(x, (typeof(x))(a)-1) |
| 16 | #define __PERF_ALIGN_MASK(x, mask) (((x)+(mask))&~(mask)) |
Frederic Weisbecker | 5a116dd | 2009-10-17 17:12:33 +0200 | [diff] [blame] | 17 | |
Arnaldo Carvalho de Melo | 43cbcd8 | 2009-07-01 12:28:37 -0300 | [diff] [blame] | 18 | #ifndef offsetof |
| 19 | #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) |
| 20 | #endif |
| 21 | |
| 22 | #ifndef container_of |
| 23 | /** |
| 24 | * container_of - cast a member of a structure out to the containing structure |
| 25 | * @ptr: the pointer to the member. |
| 26 | * @type: the type of the container struct this is embedded in. |
| 27 | * @member: the name of the member within the struct. |
| 28 | * |
| 29 | */ |
| 30 | #define container_of(ptr, type, member) ({ \ |
| 31 | const typeof(((type *)0)->member) * __mptr = (ptr); \ |
| 32 | (type *)((char *)__mptr - offsetof(type, member)); }) |
| 33 | #endif |
| 34 | |
Arnaldo Carvalho de Melo | 1967936 | 2010-05-17 15:39:16 -0300 | [diff] [blame] | 35 | #define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); })) |
| 36 | |
Arnaldo Carvalho de Melo | 52d422d | 2009-07-10 22:47:28 -0300 | [diff] [blame] | 37 | #ifndef max |
| 38 | #define max(x, y) ({ \ |
| 39 | typeof(x) _max1 = (x); \ |
| 40 | typeof(y) _max2 = (y); \ |
| 41 | (void) (&_max1 == &_max2); \ |
| 42 | _max1 > _max2 ? _max1 : _max2; }) |
| 43 | #endif |
| 44 | |
Frederic Weisbecker | 5a116dd | 2009-10-17 17:12:33 +0200 | [diff] [blame] | 45 | #ifndef min |
| 46 | #define min(x, y) ({ \ |
| 47 | typeof(x) _min1 = (x); \ |
| 48 | typeof(y) _min2 = (y); \ |
| 49 | (void) (&_min1 == &_min2); \ |
| 50 | _min1 < _min2 ? _min1 : _min2; }) |
| 51 | #endif |
| 52 | |
Irina Tirdea | 86d5a70 | 2012-09-11 01:14:59 +0300 | [diff] [blame] | 53 | #ifndef roundup |
| 54 | #define roundup(x, y) ( \ |
| 55 | { \ |
| 56 | const typeof(y) __y = y; \ |
| 57 | (((x) + (__y - 1)) / __y) * __y; \ |
| 58 | } \ |
| 59 | ) |
| 60 | #endif |
| 61 | |
Frederic Weisbecker | 5a116dd | 2009-10-17 17:12:33 +0200 | [diff] [blame] | 62 | #ifndef BUG_ON |
Irina Tirdea | 8bf98b8 | 2012-09-08 08:35:51 +0300 | [diff] [blame] | 63 | #ifdef NDEBUG |
| 64 | #define BUG_ON(cond) do { if (cond) {} } while (0) |
| 65 | #else |
Frederic Weisbecker | 5a116dd | 2009-10-17 17:12:33 +0200 | [diff] [blame] | 66 | #define BUG_ON(cond) assert(!(cond)) |
| 67 | #endif |
Irina Tirdea | 8bf98b8 | 2012-09-08 08:35:51 +0300 | [diff] [blame] | 68 | #endif |
Frederic Weisbecker | 5a116dd | 2009-10-17 17:12:33 +0200 | [diff] [blame] | 69 | |
| 70 | /* |
| 71 | * Both need more care to handle endianness |
| 72 | * (Don't use bitmap_copy_le() for now) |
| 73 | */ |
| 74 | #define cpu_to_le64(x) (x) |
| 75 | #define cpu_to_le32(x) (x) |
| 76 | |
Arnaldo Carvalho de Melo | d0761e3 | 2016-07-07 15:42:33 -0300 | [diff] [blame] | 77 | int vscnprintf(char *buf, size_t size, const char *fmt, va_list args); |
| 78 | int scnprintf(char * buf, size_t size, const char * fmt, ...); |
Frederic Weisbecker | 5a116dd | 2009-10-17 17:12:33 +0200 | [diff] [blame] | 79 | |
Arnaldo Carvalho de Melo | 8607c1e | 2017-04-17 11:29:26 -0300 | [diff] [blame^] | 80 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr)) |
| 81 | |
Jiri Olsa | 339ce00 | 2012-06-19 17:48:11 +0200 | [diff] [blame] | 82 | /* |
| 83 | * This looks more complex than it should be. But we need to |
| 84 | * get the type for the ~ right in round_down (it needs to be |
| 85 | * as wide as the result!), and we want to evaluate the macro |
| 86 | * arguments just once each. |
| 87 | */ |
| 88 | #define __round_mask(x, y) ((__typeof__(x))((y)-1)) |
| 89 | #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) |
| 90 | #define round_down(x, y) ((x) & ~__round_mask(x, y)) |
| 91 | |
Arnaldo Carvalho de Melo | 43cbcd8 | 2009-07-01 12:28:37 -0300 | [diff] [blame] | 92 | #endif |