Blame SOURCES/0002-Use-spec-compliant-timeouts.patch

22decc
From bc252caa54fcfb2e9fd0ddb01ebaa50192e85c38 Mon Sep 17 00:00:00 2001
22decc
From: Alex Williamson <alex.williamson@redhat.com>
22decc
Date: Wed, 21 Oct 2015 11:18:40 +0200
22decc
Subject: Use spec compliant timeouts
22decc
22decc
Message-id: <20150428212403.31299.29391.stgit@gimli.home>
22decc
Patchwork-id: 64951
22decc
O-Subject: [RHEL7.2 ipxe PATCH 2/2] [dhcp][RHEL-only] Use spec compliant timeouts
22decc
Bugzilla: 1196352
22decc
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
22decc
RH-Acked-by: Gerd Hoffmann <kraxel@redhat.com>
22decc
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
22decc
22decc
Use local config to override iPXE's abbreviated DHCP timeouts using
22decc
the recommended values for spec compliance.  This matches the state
22decc
of RHEL6 gPXE DHCP timeouts after bz968474 + bz1206042
22decc
22decc
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
22decc
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
22decc
(cherry picked from commit 7038f41c0131d263de5165b416500009acdbf550)
22decc
---
22decc
 src/config/local/.gitignore |  1 -
22decc
 src/config/local/dhcp.h     | 62 +++++++++++++++++++++++++++++++++++++++++++++
22decc
 2 files changed, 62 insertions(+), 1 deletion(-)
22decc
 delete mode 100644 src/config/local/.gitignore
22decc
 create mode 100644 src/config/local/dhcp.h
22decc
22decc
diff --git a/src/config/local/dhcp.h b/src/config/local/dhcp.h
22decc
new file mode 100644
22decc
index 0000000..83df5b8
22decc
--- /dev/null
22decc
+++ b/src/config/local/dhcp.h
22decc
@@ -0,0 +1,62 @@
22decc
+/*
22decc
+ * Downstream localization
22decc
+ *
22decc
+ * For RHEL, use spec compliant DHCP timeouts (bz1196352)
22decc
+ */
22decc
+
22decc
+/*
22decc
+ * PXE spec defines timeouts of 4, 8, 16, 32 seconds
22decc
+ */
22decc
+#undef DHCP_DISC_START_TIMEOUT_SEC
22decc
+#define DHCP_DISC_START_TIMEOUT_SEC 4
22decc
+#undef DHCP_DISC_END_TIMEOUT_SEC
22decc
+#define DHCP_DISC_END_TIMEOUT_SEC   32
22decc
+
22decc
+/*
22decc
+ * Elapsed time used for early break waiting for ProxyDHCP, this therefore
22decc
+ * needs to be less than the cumulative time for the first 2 timeouts.
22decc
+ */
22decc
+#undef DHCP_DISC_PROXY_TIMEOUT_SEC
22decc
+#define DHCP_DISC_PROXY_TIMEOUT_SEC 11
22decc
+
22decc
+/*
22decc
+ * Approximate PXE spec requirement using minimum timeout (0.25s) for
22decc
+ * timeouts of 0.25, 0.5, 1, 2, 4
22decc
+ */
22decc
+#undef DHCP_REQ_START_TIMEOUT_SEC
22decc
+#define DHCP_REQ_START_TIMEOUT_SEC  0
22decc
+#undef DHCP_REQ_END_TIMEOUT_SEC
22decc
+#define DHCP_REQ_END_TIMEOUT_SEC    4
22decc
+
22decc
+/*
22decc
+ * Same as normal request phase, except non-fatal, so we extend the timer
22decc
+ * to 8 and set the early timeout to an elapsed time value that causes a
22decc
+ * break after the 4 second timeout.  At least that's what we'd like to do,
22decc
+ * but our timer operates at 18Hz and has a minimum resolution of 7 cycles.
22decc
+ * Therefore the above quarter-second starting timeout looks more like
22decc
+ * 0.39s, 0.78s, 1.56s, 3.11s, 6.22s.  If we had an ideal timer, we could
22decc
+ * set the timeout to 7s (0.25 + 0.5 + 1 + 2 + 4 = 7.75s) and exit without
22decc
+ * failure when the timer rolls over to 8s.  With our timer, we get 0.39 +
22decc
+ * 0.78 + 1.56 + 3.11 = 5.84s.  The next timeout would take us to 12.06s
22decc
+ * (+6.22).  That seems like a long time to wait for an optional reply, so
22decc
+ * we reduce the early timeout to 5s to exit before the timer exceeds the
22decc
+ * max and causes a failure.  This still adds one extra cycle vs the
22decc
+ * upstream defaults.
22decc
+ */
22decc
+#undef DHCP_PROXY_START_TIMEOUT_SEC
22decc
+#define DHCP_PROXY_START_TIMEOUT_SEC        0
22decc
+#undef DHCP_PROXY_END_TIMEOUT_SEC
22decc
+#define DHCP_PROXY_END_TIMEOUT_SEC  8
22decc
+#undef DHCP_REQ_PROXY_TIMEOUT_SEC
22decc
+#define DHCP_REQ_PROXY_TIMEOUT_SEC  5
22decc
+
22decc
+/*
22decc
+ * Same as above, retry each server using our approximation of standard
22decc
+ * timeouts and exit before timer induced failure.
22decc
+ */
22decc
+#undef PXEBS_START_TIMEOUT_SEC
22decc
+#define PXEBS_START_TIMEOUT_SEC             0
22decc
+#undef PXEBS_END_TIMEOUT_SEC
22decc
+#define PXEBS_END_TIMEOUT_SEC               8
22decc
+#undef PXEBS_MAX_TIMEOUT_SEC
22decc
+#define PXEBS_MAX_TIMEOUT_SEC               5
22decc
-- 
22decc
1.8.3.1
22decc