blob: 73ccc48126bb5f5d0032709af649638eb4dc1cf6 [file] [log] [blame]
Wang Nan37fbe0a2015-06-01 07:37:47 +00001#ifndef __TOOLS_LINUX_KERNEL_H
2#define __TOOLS_LINUX_KERNEL_H
Arnaldo Carvalho de Melo43cbcd82009-07-01 12:28:37 -03003
Frederic Weisbecker5a116dd2009-10-17 17:12:33 +02004#include <stdarg.h>
Arnaldo Carvalho de Melod0761e32016-07-07 15:42:33 -03005#include <stddef.h>
Frederic Weisbecker5a116dd2009-10-17 17:12:33 +02006#include <assert.h>
Arnaldo Carvalho de Melo8607c1e2017-04-17 11:29:26 -03007#include <linux/compiler.h>
Frederic Weisbecker5a116dd2009-10-17 17:12:33 +02008
Arnaldo Carvalho de Meloeaa75b52017-02-22 17:42:40 -03009#ifndef UINT_MAX
10#define UINT_MAX (~0U)
11#endif
12
Frederic Weisbecker5a116dd2009-10-17 17:12:33 +020013#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
14
Irina Tirdea9ac3e482012-09-11 01:15:01 +030015#define PERF_ALIGN(x, a) __PERF_ALIGN_MASK(x, (typeof(x))(a)-1)
16#define __PERF_ALIGN_MASK(x, mask) (((x)+(mask))&~(mask))
Frederic Weisbecker5a116dd2009-10-17 17:12:33 +020017
Arnaldo Carvalho de Melo43cbcd82009-07-01 12:28:37 -030018#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 Melo19679362010-05-17 15:39:16 -030035#define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); }))
36
Arnaldo Carvalho de Melo52d422d2009-07-10 22:47:28 -030037#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 Weisbecker5a116dd2009-10-17 17:12:33 +020045#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 Tirdea86d5a702012-09-11 01:14:59 +030053#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 Weisbecker5a116dd2009-10-17 17:12:33 +020062#ifndef BUG_ON
Irina Tirdea8bf98b82012-09-08 08:35:51 +030063#ifdef NDEBUG
64#define BUG_ON(cond) do { if (cond) {} } while (0)
65#else
Frederic Weisbecker5a116dd2009-10-17 17:12:33 +020066#define BUG_ON(cond) assert(!(cond))
67#endif
Irina Tirdea8bf98b82012-09-08 08:35:51 +030068#endif
Frederic Weisbecker5a116dd2009-10-17 17:12:33 +020069
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 Melod0761e32016-07-07 15:42:33 -030077int vscnprintf(char *buf, size_t size, const char *fmt, va_list args);
78int scnprintf(char * buf, size_t size, const char * fmt, ...);
Frederic Weisbecker5a116dd2009-10-17 17:12:33 +020079
Arnaldo Carvalho de Melo8607c1e2017-04-17 11:29:26 -030080#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
81
Jiri Olsa339ce002012-06-19 17:48:11 +020082/*
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 Melo43cbcd82009-07-01 12:28:37 -030092#endif