random shrinkage of statics, -60 bytes saved
authorDenis Vlasenko <vda.linux@googlemail.com>
Thu, 21 Jun 2007 12:43:45 +0000 (12:43 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Thu, 21 Jun 2007 12:43:45 +0000 (12:43 -0000)
Makefile.custom
Makefile.flags
archival/tar.c
coreutils/fold.c
libbb/dump.c
modutils/insmod.c

index bb59776978c324366b6d12bf4d560b48217296b1..a011d53fd99e340d9cd2a5af199b17612010f626 100644 (file)
@@ -67,6 +67,7 @@ sizes: busybox_unstripped
 .PHONY: bloatcheck
 bloatcheck: busybox_old busybox_unstripped
        @$(srctree)/scripts/bloat-o-meter busybox_old busybox_unstripped
+       @$(CROSS_COMPILE)size busybox_old busybox_unstripped
 
 .PHONY: baseline
 baseline: busybox_unstripped
index e73cf9d31e6bdffc2093ad72a9e8f18f333726e7..b54679047c86c69cfcd3caf6527310a03383d488 100644 (file)
@@ -79,6 +79,6 @@ SKIP_STRIP = y
 endif
 
 # Busybox is a stack-fatty so make sure we increase default size
-# TODO: use "make stksizes" to find & fix big stack users; should
-#       just steal scripts/checkstack.pl from the kernel ...
+# TODO: use "make stksizes" to find & fix big stack users
+# (we stole scripts/checkstack.pl from the kernel... thanks guys!)
 FLTFLAGS += -s 20000
index adcedf615ee938602542f99cd3ceead1c51fe549..bcbb7a9945f469ef437c3e2a5db2542f6a575d9f 100644 (file)
@@ -417,11 +417,11 @@ static int writeFileToTarball(const char *fileName, struct stat *statbuf,
 
        header_name = fileName;
        while (header_name[0] == '/') {
-               static int alreadyWarned = FALSE;
+               static smallint warned;
 
-               if (alreadyWarned == FALSE) {
+               if (!warned) {
                        bb_error_msg("removing leading '/' from member names");
-                       alreadyWarned = TRUE;
+                       warned = 1;
                }
                header_name++;
        }
index d5e3a4d723e3a33c0ed12ad78ebbd403654a88da..11b880969898d8e12bee3173a227439e077ce7ae 100644 (file)
@@ -41,6 +41,8 @@ static int adjust_column(int column, char c)
 int fold_main(int argc, char **argv);
 int fold_main(int argc, char **argv)
 {
+       char *line_out = NULL;
+       int allocated_out = 0;
        char *w_opt;
        int width = 80;
        int i;
@@ -75,8 +77,6 @@ int fold_main(int argc, char **argv)
                int c;
                int column = 0;         /* Screen column where next char will go. */
                int offset_out = 0;     /* Index in `line_out' for next char. */
-               static char *line_out = NULL;
-               static int allocated_out = 0;
 
                if (istream == NULL) {
                        errs |= EXIT_FAILURE;
@@ -95,8 +95,7 @@ int fold_main(int argc, char **argv)
                                column = offset_out = 0;
                                continue;
                        }
-
-rescan:
+ rescan:
                        column = adjust_column(column, c);
 
                        if (column > width) {
index f078afc1cb818284957c403350f7b9b3a237db64..6dbbd9f8414004f9a354b80c5430f0ecedf04fb6 100644 (file)
@@ -317,7 +317,8 @@ static void do_skip(const char *fname, int statok)
 
 static int next(char **argv)
 {
-       static int done;
+       static smallint done;
+
        int statok;
 
        if (argv) {
@@ -332,10 +333,11 @@ static int next(char **argv)
                                ++_argv;
                                continue;
                        }
-                       statok = done = 1;
+                       done = statok = 1;
                } else {
-                       if (done++)
+                       if (done)
                                return 0;
+                       done = 1;
                        statok = 0;
                }
                if (bb_dump_skip)
@@ -350,8 +352,9 @@ static int next(char **argv)
 
 static unsigned char *get(void)
 {
-       static int ateof = 1;
-       static unsigned char *curp=NULL, *savp; /*DBU:[dave@cray.com]initialize curp */
+       static smallint ateof = 1;
+       static unsigned char *curp = NULL, *savp; /*DBU:[dave@cray.com]initialize curp */
+
        int n;
        int need, nread;
        unsigned char *tmpp;
@@ -399,7 +402,8 @@ static unsigned char *get(void)
                if (bb_dump_length != -1) {
                        bb_dump_length -= n;
                }
-               if (!(need -= n)) {
+               need -= n;
+               if (!need) {
                        if (bb_dump_vflag == ALL || bb_dump_vflag == FIRST
                                || memcmp(curp, savp, bb_dump_blocksize)) {
                                if (bb_dump_vflag == DUP || bb_dump_vflag == FIRST) {
index b9d8a0243f84448e057368686122c81aef9c770a..cba8dc4a058a30615ca0dfc3be1d5e1bfe98bae9 100644 (file)
@@ -3656,16 +3656,18 @@ static int obj_gpl_license(struct obj_file *f, const char **license)
 static void set_tainted(struct obj_file *f, int fd, char *m_name,
                int kernel_has_tainted, int taint, const char *text1, const char *text2)
 {
+       static smallint printed_info;
+
        char buf[80];
        int oldval;
-       static int first = 1;
+
        if (fd < 0 && !kernel_has_tainted)
                return;         /* New modutils on old kernel */
        printf("Warning: loading %s will taint the kernel: %s%s\n",
                        m_name, text1, text2);
-       if (first) {
+       if (!printed_info) {
                printf("  See %s for information about tainted modules\n", TAINT_URL);
-               first = 0;
+               printed_info = 1;
        }
        if (fd >= 0) {
                read(fd, buf, sizeof(buf)-1);