diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-12-18 14:25:57 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-12-18 14:25:57 -0800 |
commit | 8b4414f51d098ca6f9fa3c6b6b31926f3b45d4bc (patch) | |
tree | b2d955d6a43db368b7d4bdd786b3f3020acee07b /include | |
parent | 65d70e79cdb96b208c72a30b34525a850ee640cb (diff) | |
parent | 1d5cda4076d930d6d52088ed2c7753f7c564cbd7 (diff) | |
download | linux-8b4414f51d098ca6f9fa3c6b6b31926f3b45d4bc.tar.bz2 |
Merge branch 'akpm' (patches from Andrew)
Merge misc fixes from Andrew Morton:
"Three patches"
* emailed patches from Andrew Morton <akpm@linux-foundation.org>:
include/linux/mmdebug.h: should include linux/bug.h
mm/zswap: change incorrect strncmp use to strcmp
proc: fix -ESRCH error when writing to /proc/$pid/coredump_filter
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mmdebug.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mmdebug.h b/include/linux/mmdebug.h index 877ef226f90f..772362adf471 100644 --- a/include/linux/mmdebug.h +++ b/include/linux/mmdebug.h @@ -1,6 +1,7 @@ #ifndef LINUX_MM_DEBUG_H #define LINUX_MM_DEBUG_H 1 +#include <linux/bug.h> #include <linux/stringify.h> struct page; |