* [merged mm-nonmm-stable] scripts-bloat-o-meter-rename-file-arguments-to-match-output.patch removed from -mm tree
@ 2026-03-28 4:24 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2026-03-28 4:24 UTC (permalink / raw)
To: mm-commits, vkoskiv, akpm
The quilt patch titled
Subject: scripts/bloat-o-meter: rename file arguments to match output
has been removed from the -mm tree. Its filename was
scripts-bloat-o-meter-rename-file-arguments-to-match-output.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: Valtteri Koskivuori <vkoskiv@gmail.com>
Subject: scripts/bloat-o-meter: rename file arguments to match output
Date: Thu, 12 Feb 2026 23:39:33 +0200
The output of bloat-o-meter already uses the words 'old' and 'new' for
symbol size in the table header, so reflect that in the corresponding
argument names.
Link: https://lkml.kernel.org/r/20260212213941.3984330-1-vkoskiv@gmail.com
Signed-off-by: Valtteri Koskivuori <vkoskiv@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
scripts/bloat-o-meter | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--- a/scripts/bloat-o-meter~scripts-bloat-o-meter-rename-file-arguments-to-match-output
+++ a/scripts/bloat-o-meter
@@ -18,8 +18,8 @@ group.add_argument('-c', help='categoriz
group.add_argument('-d', help='Show delta of Data Section', action='store_true')
group.add_argument('-t', help='Show delta of text Section', action='store_true')
parser.add_argument('-p', dest='prefix', help='Arch prefix for the tool being used. Useful in cross build scenarios')
-parser.add_argument('file1', help='First file to compare')
-parser.add_argument('file2', help='Second file to compare')
+parser.add_argument('file_old', help='First file to compare')
+parser.add_argument('file_new', help='Second file to compare')
args = parser.parse_args()
@@ -86,7 +86,7 @@ def calc(oldfile, newfile, format):
def print_result(symboltype, symbolformat):
grow, shrink, add, remove, up, down, delta, old, new, otot, ntot = \
- calc(args.file1, args.file2, symbolformat)
+ calc(args.file_old, args.file_new, symbolformat)
print("add/remove: %s/%s grow/shrink: %s/%s up/down: %s/%s (%s)" % \
(add, remove, grow, shrink, up, -down, up-down))
_
Patches currently in -mm which might be from vkoskiv@gmail.com are
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-03-28 4:24 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-28 4:24 [merged mm-nonmm-stable] scripts-bloat-o-meter-rename-file-arguments-to-match-output.patch removed from -mm tree Andrew Morton
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.