Matthew Wilcox | 1366c37 | 2016-03-17 14:21:45 -0700 | [diff] [blame] | 1 | #ifndef _KERNEL_H |
| 2 | #define _KERNEL_H |
| 3 | |
| 4 | #include <assert.h> |
| 5 | #include <string.h> |
| 6 | #include <stdio.h> |
| 7 | #include <stddef.h> |
| 8 | #include <limits.h> |
| 9 | |
Matthew Wilcox | f518b16 | 2016-05-20 17:01:36 -0700 | [diff] [blame] | 10 | #include "../../include/linux/compiler.h" |
Ross Zwisler | 21ef533 | 2016-05-20 17:02:26 -0700 | [diff] [blame] | 11 | #include "../../../include/linux/kconfig.h" |
Matthew Wilcox | d42cb1a | 2016-05-20 17:01:39 -0700 | [diff] [blame] | 12 | |
Konstantin Khlebnikov | cfa40bc | 2016-12-14 15:08:14 -0800 | [diff] [blame] | 13 | #ifdef BENCHMARK |
| 14 | #define RADIX_TREE_MAP_SHIFT 6 |
| 15 | #else |
Ross Zwisler | 97d778b | 2016-05-20 17:01:42 -0700 | [diff] [blame] | 16 | #define RADIX_TREE_MAP_SHIFT 3 |
Konstantin Khlebnikov | cfa40bc | 2016-12-14 15:08:14 -0800 | [diff] [blame] | 17 | #endif |
Ross Zwisler | 97d778b | 2016-05-20 17:01:42 -0700 | [diff] [blame] | 18 | |
Matthew Wilcox | 1366c37 | 2016-03-17 14:21:45 -0700 | [diff] [blame] | 19 | #ifndef NULL |
| 20 | #define NULL 0 |
| 21 | #endif |
| 22 | |
| 23 | #define BUG_ON(expr) assert(!(expr)) |
Matthew Wilcox | f518b16 | 2016-05-20 17:01:36 -0700 | [diff] [blame] | 24 | #define WARN_ON(expr) assert(!(expr)) |
Matthew Wilcox | 1366c37 | 2016-03-17 14:21:45 -0700 | [diff] [blame] | 25 | #define __init |
Konstantin Khlebnikov | 2d6f45b | 2016-03-17 14:22:08 -0700 | [diff] [blame] | 26 | #define __must_check |
Matthew Wilcox | 1366c37 | 2016-03-17 14:21:45 -0700 | [diff] [blame] | 27 | #define panic(expr) |
| 28 | #define printk printf |
| 29 | #define __force |
Matthew Wilcox | 1366c37 | 2016-03-17 14:21:45 -0700 | [diff] [blame] | 30 | #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) |
Matthew Wilcox | f518b16 | 2016-05-20 17:01:36 -0700 | [diff] [blame] | 31 | #define pr_debug printk |
| 32 | |
| 33 | #define smp_rmb() barrier() |
| 34 | #define smp_wmb() barrier() |
| 35 | #define cpu_relax() barrier() |
Matthew Wilcox | 1366c37 | 2016-03-17 14:21:45 -0700 | [diff] [blame] | 36 | |
| 37 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) |
| 38 | |
| 39 | #define container_of(ptr, type, member) ({ \ |
| 40 | const typeof( ((type *)0)->member ) *__mptr = (ptr); \ |
| 41 | (type *)( (char *)__mptr - offsetof(type, member) );}) |
| 42 | #define min(a, b) ((a) < (b) ? (a) : (b)) |
| 43 | |
Matthew Wilcox | f518b16 | 2016-05-20 17:01:36 -0700 | [diff] [blame] | 44 | #define cond_resched() sched_yield() |
| 45 | |
Matthew Wilcox | 1366c37 | 2016-03-17 14:21:45 -0700 | [diff] [blame] | 46 | static inline int in_interrupt(void) |
| 47 | { |
| 48 | return 0; |
| 49 | } |
Matthew Wilcox | 0629573 | 2016-12-14 15:08:29 -0800 | [diff] [blame^] | 50 | |
| 51 | /* |
| 52 | * This looks more complex than it should be. But we need to |
| 53 | * get the type for the ~ right in round_down (it needs to be |
| 54 | * as wide as the result!), and we want to evaluate the macro |
| 55 | * arguments just once each. |
| 56 | */ |
| 57 | #define __round_mask(x, y) ((__typeof__(x))((y)-1)) |
| 58 | #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) |
| 59 | #define round_down(x, y) ((x) & ~__round_mask(x, y)) |
| 60 | |
Matthew Wilcox | 1366c37 | 2016-03-17 14:21:45 -0700 | [diff] [blame] | 61 | #endif /* _KERNEL_H */ |