Subject: + scripts-bloat-o-meter-ignore-changes-in-the-size-of-linux_banner.patch added to -mm tree To: josh@xxxxxxxxxxxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Thu, 31 Oct 2013 14:20:33 -0700 The patch titled Subject: scripts/bloat-o-meter: ignore changes in the size of linux_banner has been added to the -mm tree. Its filename is scripts-bloat-o-meter-ignore-changes-in-the-size-of-linux_banner.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/scripts-bloat-o-meter-ignore-changes-in-the-size-of-linux_banner.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/scripts-bloat-o-meter-ignore-changes-in-the-size-of-linux_banner.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Josh Triplett <josh@xxxxxxxxxxxxxxxx> Subject: scripts/bloat-o-meter: ignore changes in the size of linux_banner linux_banner can change size due to changes in the compiler, build number, or the user@host the system was compiled on; ignore size changes in linux_banner entirely. Signed-off-by: Josh Triplett <josh@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/bloat-o-meter | 1 + 1 file changed, 1 insertion(+) diff -puN scripts/bloat-o-meter~scripts-bloat-o-meter-ignore-changes-in-the-size-of-linux_banner scripts/bloat-o-meter --- a/scripts/bloat-o-meter~scripts-bloat-o-meter-ignore-changes-in-the-size-of-linux_banner +++ a/scripts/bloat-o-meter @@ -20,6 +20,7 @@ def getsizes(file): if type in "tTdDbBrR": # strip generated symbols if name[:6] == "__mod_": continue + if name == "linux_banner": continue # function names begin with '.' on 64-bit powerpc if "." in name[1:]: name = "static." + name.split(".")[0] sym[name] = sym.get(name, 0) + int(size, 16) _ Patches currently in -mm which might be from josh@xxxxxxxxxxxxxxxx are checkpatch-report-missing-spaces-around-trigraphs-with-strict.patch checkpatchpl-check-for-the-fsf-mailing-address.patch scripts-bloat-o-meter-ignore-changes-in-the-size-of-linux_banner.patch scripts-bloat-o-meter-use-startswith-rather-than-fragile-slicing.patch linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html