diff options
| author | Josh Triplett <josh@joshtriplett.org> | 2014-08-17 20:45:46 -0400 |
|---|---|---|
| committer | Josh Triplett <josh@joshtriplett.org> | 2014-08-23 16:08:48 -0400 |
| commit | b25c2ff547530f63d71fc67048543ae54b434476 (patch) | |
| tree | 0066f2eccf97881a371c2f21b762daaf7267da58 /scripts | |
| parent | 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9 (diff) | |
bloat-o-meter: Ignore syscall aliases SyS_ and compat_SyS_
This avoids double-counting size changes in syscall implementations.
Signed-off-by: Josh Triplett <josh@joshtriplett.org>
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/bloat-o-meter | 2 |
1 files changed, 2 insertions, 0 deletions
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): | |||
| 20 | if type in "tTdDbBrR": | 20 | if type in "tTdDbBrR": |
| 21 | # strip generated symbols | 21 | # strip generated symbols |
| 22 | if name.startswith("__mod_"): continue | 22 | if name.startswith("__mod_"): continue |
| 23 | if name.startswith("SyS_"): continue | ||
| 24 | if name.startswith("compat_SyS_"): continue | ||
| 23 | if name == "linux_banner": continue | 25 | if name == "linux_banner": continue |
| 24 | # statics and some other optimizations adds random .NUMBER | 26 | # statics and some other optimizations adds random .NUMBER |
| 25 | name = re.sub(r'\.[0-9]+', '', name) | 27 | name = re.sub(r'\.[0-9]+', '', name) |
