diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-08 22:56:18 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-08 22:56:18 +0000 |
commit | efb545b9bdd3934dcdbf9bc0890a42081b330049 (patch) | |
tree | 4dc9212e49a5dae9890bd324bcc9bf4941e2321d /networking/zcip.c | |
parent | d1a84a2880073f6cc5e2f9f4e5f236cd110f01a0 (diff) | |
download | busybox-w32-efb545b9bdd3934dcdbf9bc0890a42081b330049.tar.gz busybox-w32-efb545b9bdd3934dcdbf9bc0890a42081b330049.tar.bz2 busybox-w32-efb545b9bdd3934dcdbf9bc0890a42081b330049.zip |
optimize 16- and 32-bit moves
function old new delta
udhcpd_main 1239 1257 +18
udhcp_add_simple_option 93 92 -1
buffer_read_le_u32 19 18 -1
unpack_gz_stream_with_info 526 520 -6
dnsd_main 1470 1463 -7
udhcp_run_script 1208 1186 -22
send_ACK 255 229 -26
arping_main 1661 1623 -38
send_offer 470 428 -42
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 1/8 up/down: 18/-143) Total: -125 bytes
Diffstat (limited to 'networking/zcip.c')
-rw-r--r-- | networking/zcip.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/networking/zcip.c b/networking/zcip.c index 3a349a5af..df4c0ec2d 100644 --- a/networking/zcip.c +++ b/networking/zcip.c | |||
@@ -279,7 +279,8 @@ int zcip_main(int argc, char **argv) | |||
279 | // NOTE: the sequence of addresses we try changes only | 279 | // NOTE: the sequence of addresses we try changes only |
280 | // depending on when we detect conflicts. | 280 | // depending on when we detect conflicts. |
281 | { | 281 | { |
282 | uint32_t t = get_unaligned_u32p((uint32_t *) ((char *)ð_addr + 2)); | 282 | uint32_t t; |
283 | move_from_unaligned32(t, ((char *)ð_addr + 2)); | ||
283 | srand(t); | 284 | srand(t); |
284 | } | 285 | } |
285 | if (ip.s_addr == 0) | 286 | if (ip.s_addr == 0) |