diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-09-29 01:20:24 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-09-29 01:20:24 +0200 |
commit | 53061afee43bc5041b67a45b6d793e7afdcf9ca7 (patch) | |
tree | ed7e918bd7323ded4bdd899aded6384488dad9a4 /scripts/recordmcount.c | |
parent | Merge tag 'for-linus-20160928' of git://git.infradead.org/linux-mtd (diff) | |
parent | mem-hotplug: use nodes that contain memory as mask in new_node_page() (diff) | |
download | linux-53061afee43bc5041b67a45b6d793e7afdcf9ca7.tar.xz linux-53061afee43bc5041b67a45b6d793e7afdcf9ca7.zip |
Merge branch 'akpm' (patches from Andrew)
Merge fixes from Andrew Morton:
"4 fixes"
* emailed patches from Andrew Morton <akpm@linux-foundation.org>:
mem-hotplug: use nodes that contain memory as mask in new_node_page()
scripts/recordmcount.c: account for .softirqentry.text
dma-mapping.h: preserve unmap info for CONFIG_DMA_API_DEBUG
mm,ksm: fix endless looping in allocating memory when ksm enable
Diffstat (limited to 'scripts/recordmcount.c')
-rw-r--r-- | scripts/recordmcount.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/recordmcount.c b/scripts/recordmcount.c index 42396a74405d..a68f03133df9 100644 --- a/scripts/recordmcount.c +++ b/scripts/recordmcount.c @@ -363,6 +363,7 @@ is_mcounted_section_name(char const *const txtname) strcmp(".sched.text", txtname) == 0 || strcmp(".spinlock.text", txtname) == 0 || strcmp(".irqentry.text", txtname) == 0 || + strcmp(".softirqentry.text", txtname) == 0 || strcmp(".kprobes.text", txtname) == 0 || strcmp(".text.unlikely", txtname) == 0; } |