From b25c2ff547530f63d71fc67048543ae54b434476 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Sun, 17 Aug 2014 19:45:46 -0500 Subject: bloat-o-meter: Ignore syscall aliases SyS_ and compat_SyS_ This avoids double-counting size changes in syscall implementations. Signed-off-by: Josh Triplett --- scripts/bloat-o-meter | 2 ++ 1 file changed, 2 insertions(+) (limited to 'scripts/bloat-o-meter') diff --git a/scripts/bloat-o-meter b/scripts/bloat-o-meter index 549d0ab8c662..23e78dcd12bf 100755 --- a/scripts/bloat-o-meter +++ b/scripts/bloat-o-meter @@ -20,6 +20,8 @@ def getsizes(file): if type in "tTdDbBrR": # strip generated symbols if name.startswith("__mod_"): continue + if name.startswith("SyS_"): continue + if name.startswith("compat_SyS_"): continue if name == "linux_banner": continue # statics and some other optimizations adds random .NUMBER name = re.sub(r'\.[0-9]+', '', name) -- cgit v1.2.3