From: Andrew Morton <akpm@linux-foundation.org>
To: mm-commits@vger.kernel.org, paul.gortmaker@windriver.com,
akpm@linux-foundation.org
Subject: + scripts-bloat-o-meter-filter-out-vermagic-as-it-is-not-relevant.patch added to -mm tree
Date: Thu, 28 Apr 2022 16:24:03 -0700 [thread overview]
Message-ID: <20220428232403.DB021C385AD@smtp.kernel.org> (raw)
The patch titled
Subject: scripts/bloat-o-meter: filter out vermagic as it is not relevant
has been added to the -mm tree. Its filename is
scripts-bloat-o-meter-filter-out-vermagic-as-it-is-not-relevant.patch
This patch should soon appear at
https://ozlabs.org/~akpm/mmots/broken-out/scripts-bloat-o-meter-filter-out-vermagic-as-it-is-not-relevant.patch
and later at
https://ozlabs.org/~akpm/mmotm/broken-out/scripts-bloat-o-meter-filter-out-vermagic-as-it-is-not-relevant.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/process/submit-checklist.rst when testing your code ***
The -mm tree is included into linux-next and is updated
there every 3-4 working days
------------------------------------------------------
From: Paul Gortmaker <paul.gortmaker@windriver.com>
Subject: scripts/bloat-o-meter: filter out vermagic as it is not relevant
Seeing it as a false positive increase at the top is just noise:
linux-head$./scripts/bloat-o-meter ../pre/vmlinux ../post/vmlinux
add/remove: 0/571 grow/shrink: 1/9 up/down: 20/-64662 (-64642)
Function old new delta
vermagic 49 69 +20
Since it really doesn't "grow", it makes sense to filter it out.
Link: https://lkml.kernel.org/r/20220428035824.7934-1-paul.gortmaker@windriver.com
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
scripts/bloat-o-meter | 1 +
1 file changed, 1 insertion(+)
--- a/scripts/bloat-o-meter~scripts-bloat-o-meter-filter-out-vermagic-as-it-is-not-relevant
+++ a/scripts/bloat-o-meter
@@ -36,6 +36,7 @@ def getsizes(file, format):
if name.startswith("__se_compat_sys"): continue
if name.startswith("__addressable_"): continue
if name == "linux_banner": continue
+ if name == "vermagic": continue
# statics and some other optimizations adds random .NUMBER
name = re_NUMBER.sub('', name)
sym[name] = sym.get(name, 0) + int(size, 16)
_
Patches currently in -mm which might be from paul.gortmaker@windriver.com are
scripts-bloat-o-meter-filter-out-vermagic-as-it-is-not-relevant.patch
reply other threads:[~2022-04-28 23:24 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220428232403.DB021C385AD@smtp.kernel.org \
--to=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mm-commits@vger.kernel.org \
--cc=paul.gortmaker@windriver.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.