diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-27 02:52:20 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-27 02:52:20 +0000 |
commit | defc1ea34074e7882724c460260d307cdf981a70 (patch) | |
tree | fca9b9a5fe243f9c0c76b84824ea2ff92ea8e589 /e2fsprogs | |
parent | 26bc57d8b26425f23f4be974cce7bf35c95c9a1a (diff) | |
download | busybox-w32-defc1ea34074e7882724c460260d307cdf981a70.tar.gz busybox-w32-defc1ea34074e7882724c460260d307cdf981a70.tar.bz2 busybox-w32-defc1ea34074e7882724c460260d307cdf981a70.zip |
*: introduce and use FAST_FUNC: regparm on i386, otherwise no-on
text data bss dec hex filename
808035 611 6868 815514 c719a busybox_old
804472 611 6868 811951 c63af busybox_unstripped
Diffstat (limited to 'e2fsprogs')
-rw-r--r-- | e2fsprogs/old_e2fsprogs/e2p/e2p.h | 6 | ||||
-rw-r--r-- | e2fsprogs/old_e2fsprogs/e2p/pf.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/e2fsprogs/old_e2fsprogs/e2p/e2p.h b/e2fsprogs/old_e2fsprogs/e2p/e2p.h index 452470047..bad2d6ac9 100644 --- a/e2fsprogs/old_e2fsprogs/e2p/e2p.h +++ b/e2fsprogs/old_e2fsprogs/e2p/e2p.h | |||
@@ -37,9 +37,9 @@ int iterate_on_dir (const char * dir_name, | |||
37 | /*void list_super(struct ext2_super_block * s);*/ | 37 | /*void list_super(struct ext2_super_block * s);*/ |
38 | void list_super2(struct ext2_super_block * s, FILE *f); | 38 | void list_super2(struct ext2_super_block * s, FILE *f); |
39 | #define list_super(s) list_super2(s, stdout) | 39 | #define list_super(s) list_super2(s, stdout) |
40 | void print_fs_errors (FILE * f, unsigned short errors); | 40 | void print_fs_errors (FILE *f, unsigned short errors); |
41 | void print_flags (FILE * f, unsigned long flags, unsigned options); | 41 | void print_flags (FILE *f, unsigned long flags, unsigned options); |
42 | void print_fs_state (FILE * f, unsigned short state); | 42 | void print_fs_state (FILE *f, unsigned short state); |
43 | int setflags (int fd, unsigned long flags); | 43 | int setflags (int fd, unsigned long flags); |
44 | int setversion (int fd, unsigned long version); | 44 | int setversion (int fd, unsigned long version); |
45 | 45 | ||
diff --git a/e2fsprogs/old_e2fsprogs/e2p/pf.c b/e2fsprogs/old_e2fsprogs/e2p/pf.c index 55d4bc487..02cbec7e0 100644 --- a/e2fsprogs/old_e2fsprogs/e2p/pf.c +++ b/e2fsprogs/old_e2fsprogs/e2p/pf.c | |||
@@ -48,7 +48,7 @@ static const struct flags_name flags_array[] = { | |||
48 | { 0, NULL, NULL } | 48 | { 0, NULL, NULL } |
49 | }; | 49 | }; |
50 | 50 | ||
51 | void print_flags (FILE * f, unsigned long flags, unsigned options) | 51 | void print_flags (FILE *f, unsigned long flags, unsigned options) |
52 | { | 52 | { |
53 | int long_opt = (options & PFOPT_LONG); | 53 | int long_opt = (options & PFOPT_LONG); |
54 | const struct flags_name *fp; | 54 | const struct flags_name *fp; |