From: Andrew Morton <akpm@linux-foundation.org>
To: mm-commits@vger.kernel.org, arnd@arndb.de,
geert+renesas@glider.be, akpm@linux-foundation.org
Subject: [merged mm-nonmm-stable] scripts-bloat-o-meter-count-weak-symbol-sizes.patch removed from -mm tree
Date: Mon, 21 Aug 2023 13:47:13 -0700 [thread overview]
Message-ID: <20230821204714.3951EC433C7@smtp.kernel.org> (raw)
The quilt patch titled
Subject: scripts/bloat-o-meter: count weak symbol sizes
has been removed from the -mm tree. Its filename was
scripts-bloat-o-meter-count-weak-symbol-sizes.patch
This patch was dropped because it was merged into the mm-nonmm-stable branch
of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
------------------------------------------------------
From: Geert Uytterhoeven <geert+renesas@glider.be>
Subject: scripts/bloat-o-meter: count weak symbol sizes
Date: Wed, 16 Aug 2023 17:33:34 +0200
Currently, bloat-o-meter does not take into account weak symbols, and
thus ignores any size changes in code or data marked __weak.
Fix this by handling weak code ("w"/"W") and data ("v"/"V").
Link: https://lkml.kernel.org/r/a1e7abd2571c3bbfe75345d6ee98b276d2d5c39d.1692200010.git.geert+renesas@glider.be
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
scripts/bloat-o-meter | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
--- a/scripts/bloat-o-meter~scripts-bloat-o-meter-count-weak-symbol-sizes
+++ a/scripts/bloat-o-meter
@@ -100,12 +100,12 @@ def print_result(symboltype, symbolforma
print("Total: Before=%d, After=%d, chg %+.2f%%" % (otot, ntot, percent))
if args.c:
- print_result("Function", "tT")
- print_result("Data", "dDbB")
+ print_result("Function", "tTwW")
+ print_result("Data", "dDbBvV")
print_result("RO Data", "rR")
elif args.d:
- print_result("Data", "dDbBrR")
+ print_result("Data", "dDbBrRvV")
elif args.t:
- print_result("Function", "tT")
+ print_result("Function", "tTwW")
else:
- print_result("Function", "tTdDbBrR")
+ print_result("Function", "tTdDbBrRvVwW")
_
Patches currently in -mm which might be from geert+renesas@glider.be are
reply other threads:[~2023-08-21 20:47 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=20230821204714.3951EC433C7@smtp.kernel.org \
--to=akpm@linux-foundation.org \
--cc=arnd@arndb.de \
--cc=geert+renesas@glider.be \
--cc=linux-kernel@vger.kernel.org \
--cc=mm-commits@vger.kernel.org \
/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.