diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 14:35:37 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 14:35:37 +0200 |
commit | adf922ec2800d53f5eedd469cf99c55946caeb43 (patch) | |
tree | d6b51f80928fdbf1892c3d4dbaae72fb288b88b9 /networking | |
parent | a7bb3c1396056248a71ea188f217de3f4876947e (diff) | |
download | busybox-w32-adf922ec2800d53f5eedd469cf99c55946caeb43.tar.gz busybox-w32-adf922ec2800d53f5eedd469cf99c55946caeb43.tar.bz2 busybox-w32-adf922ec2800d53f5eedd469cf99c55946caeb43.zip |
*: a few more NOINLINEs
function old new delta
print_linkinfo - 815 +815
do_msg - 783 +783
INET_setroute - 757 +757
varvalue - 746 +746
do_sem - 637 +637
inflate_codes - 617 +617
INET6_setroute - 491 +491
edir - 370 +370
sync_cursor - 298 +298
update_utmp - 246 +246
searchLines - 165 +165
setup_alarm - 144 +144
may_wakeup - 101 +101
getNum 566 371 -195
refresh 1166 848 -318
rtcwake_main 809 479 -330
getty_main 2396 1921 -475
chpst_main 1373 746 -627
inflate_unzip_internal 1335 567 -768
evalvar 1384 612 -772
ipaddr_list_or_flush 2160 1246 -914
route_main 1585 245 -1340
ipcs_main 2523 1049 -1474
------------------------------------------------------------------------------
(add/remove: 13/0 grow/shrink: 0/10 up/down: 6170/-7213) Total: -1043 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/libiproute/ipaddress.c | 2 | ||||
-rw-r--r-- | networking/route.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/networking/libiproute/ipaddress.c b/networking/libiproute/ipaddress.c index d042af07b..39af88324 100644 --- a/networking/libiproute/ipaddress.c +++ b/networking/libiproute/ipaddress.c | |||
@@ -94,7 +94,7 @@ static void print_queuelen(char *name) | |||
94 | printf("qlen %d", ifr.ifr_qlen); | 94 | printf("qlen %d", ifr.ifr_qlen); |
95 | } | 95 | } |
96 | 96 | ||
97 | static int print_linkinfo(const struct nlmsghdr *n) | 97 | static NOINLINE int print_linkinfo(const struct nlmsghdr *n) |
98 | { | 98 | { |
99 | struct ifinfomsg *ifi = NLMSG_DATA(n); | 99 | struct ifinfomsg *ifi = NLMSG_DATA(n); |
100 | struct rtattr * tb[IFLA_MAX+1]; | 100 | struct rtattr * tb[IFLA_MAX+1]; |
diff --git a/networking/route.c b/networking/route.c index 5d2540802..241be8e09 100644 --- a/networking/route.c +++ b/networking/route.c | |||
@@ -151,7 +151,7 @@ static int kw_lookup(const char *kwtbl, char ***pargs) | |||
151 | 151 | ||
152 | /* Add or delete a route, depending on action. */ | 152 | /* Add or delete a route, depending on action. */ |
153 | 153 | ||
154 | static void INET_setroute(int action, char **args) | 154 | static NOINLINE void INET_setroute(int action, char **args) |
155 | { | 155 | { |
156 | struct rtentry rt; | 156 | struct rtentry rt; |
157 | const char *netmask = NULL; | 157 | const char *netmask = NULL; |
@@ -336,7 +336,7 @@ static void INET_setroute(int action, char **args) | |||
336 | 336 | ||
337 | #if ENABLE_FEATURE_IPV6 | 337 | #if ENABLE_FEATURE_IPV6 |
338 | 338 | ||
339 | static void INET6_setroute(int action, char **args) | 339 | static NOINLINE void INET6_setroute(int action, char **args) |
340 | { | 340 | { |
341 | struct sockaddr_in6 sa6; | 341 | struct sockaddr_in6 sa6; |
342 | struct in6_rtmsg rt; | 342 | struct in6_rtmsg rt; |