Your message dated Thu, 14 Aug 2014 00:05:32 -0400
with message-id
<CANTw=MMdTSsSdckCYDC_WX46BP9fq-A=ydrswxyagtbbpe3...@mail.gmail.com>
and subject line re: isc-dhcp-client: unnecessary delay before first package
has caused the Debian Bug report #592801,
regarding isc-dhcp-client: unnecessary delay before first packet
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
592801: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=592801
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: isc-dhcp-client
Version: 4.1.1-P1-9
Severity: normal
Tags: patch
dhclient delays the first packet for up to five seconds for no good reason.
This is especially annoying on laptops because it increases the time from
suspend/resume (with the WiFi turned off) until the system is fully usable
again.
More information and a trivial patch [3] (also attached to this ticket) are
available from the Fedora bugtracker (ticket #587070 [1]). Upstream has
promised to remove the delay [2] several years ago but it's still there.
[1] https://bugzilla.redhat.com/show_bug.cgi?id=587070
[2] https://lists.isc.org/mailman/htdig/dhcp-users/2006-June/000933.html
[3]
https://bugzilla.redhat.com/attachment.cgi?id=409949&action=diff&context=patch&collapsed=&headers=1&format=raw
-- System Information:
Debian Release: squeeze/sid
APT prefers testing
APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.31.6-xo1.5-2-00377-g7f5e423 (PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages isc-dhcp-client depends on:
ii debianutils 3.4 Miscellaneous utilities specific t
ii isc-dhcp-common 4.1.1-P1-9 common files used by all the isc-d
ii libc6 2.11.2-2 Embedded GNU C Library: Shared lib
ii libssl0.9.8 0.9.8o-1 SSL shared libraries
isc-dhcp-client recommends no packages.
Versions of packages isc-dhcp-client suggests:
ii avahi-autoipd 0.6.26-1 Avahi IPv4LL network address confi
pn resolvconf <none> (no description available)
-- no debconf information
--- client/dhclient.c 2010/04/28 19:13:43 1.1
+++ client/dhclient.c 2010/04/28 19:17:01
@@ -594,9 +594,12 @@
else {
client->state = S_INIT;
/* Set up a timeout to start the
- * initialization process.
+ * initialization process,
+ * _immediately_, as agreed but never
+ * applied by the ISC upstream
+ https://lists.isc.org/mailman/htdig/dhcp-users/2006-June/thread.html#928
*/
- tv.tv_sec = cur_time + random() % 5;
+ tv.tv_sec = cur_time - 1;
tv.tv_usec = 0;
add_timeout(&tv, state_reboot,
client, 0, 0);
--- End Message ---
--- Begin Message ---
The upstream code has been significantly revised, and it looks like
initial delay should be much reduced. Please reopen if that isn't the
case.
Best wishes,
Mike
--- End Message ---