diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-06-05 12:06:05 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-06-05 12:06:05 +0200 |
commit | d5f1b1bbe0a881f66b6bb6951fa54e553002c24d (patch) | |
tree | a3da20d19fa86c77e63c08f01d052b196cb1b192 /networking/udhcp | |
parent | 8507e1f10927bc6498cf38eb8324a53bde8e0a61 (diff) | |
download | busybox-w32-d5f1b1bbe0a881f66b6bb6951fa54e553002c24d.tar.gz busybox-w32-d5f1b1bbe0a881f66b6bb6951fa54e553002c24d.tar.bz2 busybox-w32-d5f1b1bbe0a881f66b6bb6951fa54e553002c24d.zip |
*: add FAST_FUNC to function ptrs where it makes sense
function old new delta
evalcommand 1195 1209 +14
testcmd - 10 +10
printfcmd - 10 +10
echocmd - 10 +10
func_exec 270 276 +6
echo_dg 104 109 +5
store_nlmsg 85 89 +4
pseudo_exec_argv 195 198 +3
dotcmd 287 290 +3
machtime_stream 29 31 +2
discard_stream 24 26 +2
argstr 1299 1301 +2
killcmd 108 109 +1
evalfor 226 227 +1
daytime_stream 43 44 +1
run_list 2544 2543 -1
lookupvar 62 61 -1
ipaddr_modify 1310 1309 -1
...
parse_stream 2254 2245 -9
evalpipe 356 347 -9
collect_if 210 197 -13
read_opt 869 851 -18
handle_dollar 681 658 -23
print_addrinfo 1342 1303 -39
iterate_on_dir 156 59 -97
print_route 1709 1609 -100
------------------------------------------------------------------------------
(add/remove: 3/0 grow/shrink: 12/130 up/down: 74/-767) Total: -693 bytes
text data bss dec hex filename
841748 467 7872 850087 cf8a7 busybox_old
841061 467 7872 849400 cf5f8 busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp')
-rw-r--r-- | networking/udhcp/files.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/networking/udhcp/files.c b/networking/udhcp/files.c index b13897608..af7730890 100644 --- a/networking/udhcp/files.c +++ b/networking/udhcp/files.c | |||
@@ -24,7 +24,7 @@ static inline uint64_t hton64(uint64_t v) | |||
24 | 24 | ||
25 | 25 | ||
26 | /* on these functions, make sure your datatype matches */ | 26 | /* on these functions, make sure your datatype matches */ |
27 | static int read_ip(const char *line, void *arg) | 27 | static int FAST_FUNC read_ip(const char *line, void *arg) |
28 | { | 28 | { |
29 | len_and_sockaddr *lsa; | 29 | len_and_sockaddr *lsa; |
30 | 30 | ||
@@ -37,13 +37,13 @@ static int read_ip(const char *line, void *arg) | |||
37 | } | 37 | } |
38 | 38 | ||
39 | 39 | ||
40 | static int read_mac(const char *line, void *arg) | 40 | static int FAST_FUNC read_mac(const char *line, void *arg) |
41 | { | 41 | { |
42 | return NULL == ether_aton_r(line, (struct ether_addr *)arg); | 42 | return NULL == ether_aton_r(line, (struct ether_addr *)arg); |
43 | } | 43 | } |
44 | 44 | ||
45 | 45 | ||
46 | static int read_str(const char *line, void *arg) | 46 | static int FAST_FUNC read_str(const char *line, void *arg) |
47 | { | 47 | { |
48 | char **dest = arg; | 48 | char **dest = arg; |
49 | 49 | ||
@@ -53,14 +53,14 @@ static int read_str(const char *line, void *arg) | |||
53 | } | 53 | } |
54 | 54 | ||
55 | 55 | ||
56 | static int read_u32(const char *line, void *arg) | 56 | static int FAST_FUNC read_u32(const char *line, void *arg) |
57 | { | 57 | { |
58 | *(uint32_t*)arg = bb_strtou32(line, NULL, 10); | 58 | *(uint32_t*)arg = bb_strtou32(line, NULL, 10); |
59 | return errno == 0; | 59 | return errno == 0; |
60 | } | 60 | } |
61 | 61 | ||
62 | 62 | ||
63 | static int read_yn(const char *line, void *arg) | 63 | static int FAST_FUNC read_yn(const char *line, void *arg) |
64 | { | 64 | { |
65 | char *dest = arg; | 65 | char *dest = arg; |
66 | 66 | ||
@@ -156,7 +156,7 @@ static void attach_option(struct option_set **opt_list, | |||
156 | 156 | ||
157 | 157 | ||
158 | /* read a dhcp option and add it to opt_list */ | 158 | /* read a dhcp option and add it to opt_list */ |
159 | static int read_opt(const char *const_line, void *arg) | 159 | static int FAST_FUNC read_opt(const char *const_line, void *arg) |
160 | { | 160 | { |
161 | struct option_set **opt_list = arg; | 161 | struct option_set **opt_list = arg; |
162 | char *opt, *val, *endptr; | 162 | char *opt, *val, *endptr; |
@@ -251,7 +251,7 @@ static int read_opt(const char *const_line, void *arg) | |||
251 | return retval; | 251 | return retval; |
252 | } | 252 | } |
253 | 253 | ||
254 | static int read_staticlease(const char *const_line, void *arg) | 254 | static int FAST_FUNC read_staticlease(const char *const_line, void *arg) |
255 | { | 255 | { |
256 | char *line; | 256 | char *line; |
257 | char *mac_string; | 257 | char *mac_string; |
@@ -278,7 +278,7 @@ static int read_staticlease(const char *const_line, void *arg) | |||
278 | 278 | ||
279 | struct config_keyword { | 279 | struct config_keyword { |
280 | const char *keyword; | 280 | const char *keyword; |
281 | int (*handler)(const char *line, void *var); | 281 | int (*handler)(const char *line, void *var) FAST_FUNC; |
282 | void *var; | 282 | void *var; |
283 | const char *def; | 283 | const char *def; |
284 | }; | 284 | }; |