lkml.org 
[lkml]   [2013]   [Oct]   [31]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH 1/2] scripts/bloat-o-meter: Ignore changes in the size of linux_banner
linux_banner can change size due to changes in the compiler, build
number, or the user@host the system was compiled on; ignore size changes
in linux_banner entirely.

Signed-off-by: Josh Triplett <josh@joshtriplett.org>
---
scripts/bloat-o-meter | 1 +
1 file changed, 1 insertion(+)

diff --git a/scripts/bloat-o-meter b/scripts/bloat-o-meter
index 6129020..bf24f50 100755
--- a/scripts/bloat-o-meter
+++ b/scripts/bloat-o-meter
@@ -20,6 +20,7 @@ def getsizes(file):
if type in "tTdDbBrR":
# strip generated symbols
if name[:6] == "__mod_": continue
+ if name == "linux_banner": continue
# function names begin with '.' on 64-bit powerpc
if "." in name[1:]: name = "static." + name.split(".")[0]
sym[name] = sym.get(name, 0) + int(size, 16)
--
1.8.4.2


\
 
 \ /
  Last update: 2013-10-31 13:41    [W:0.020 / U:1.744 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site