diff options
author | Sergey Senozhatsky <sergey.senozhatsky@gmail.com> | 2015-11-06 16:29:29 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-06 17:50:42 -0800 |
commit | 759b26b29885a8ef6101aa554d9990803f6ef792 (patch) | |
tree | 7a16991c990dc202594e71fa420bbf703099f921 /mm/zsmalloc.c | |
parent | 12a7bfad58cd604616dd5205efa6dc2be6f299eb (diff) | |
download | linux-stable-759b26b29885a8ef6101aa554d9990803f6ef792.tar.gz linux-stable-759b26b29885a8ef6101aa554d9990803f6ef792.tar.bz2 linux-stable-759b26b29885a8ef6101aa554d9990803f6ef792.zip |
zsmalloc: use preempt.h for in_interrupt()
A cosmetic change.
Commit c60369f01125 ("staging: zsmalloc: prevent mappping in interrupt
context") added in_interrupt() check to zs_map_object() and 'hardirq.h'
include; but in_interrupt() macro is defined in 'preempt.h' not in
'hardirq.h', so include it instead.
Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Acked-by: Minchan Kim <minchan@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/zsmalloc.c')
-rw-r--r-- | mm/zsmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/zsmalloc.c b/mm/zsmalloc.c index 1fe9928d0ff1..c4811067bec7 100644 --- a/mm/zsmalloc.c +++ b/mm/zsmalloc.c @@ -59,7 +59,7 @@ #include <linux/cpumask.h> #include <linux/cpu.h> #include <linux/vmalloc.h> -#include <linux/hardirq.h> +#include <linux/preempt.h> #include <linux/spinlock.h> #include <linux/types.h> #include <linux/debugfs.h> |