diff options
author | Matthew Smith <mgsmith@netgate.com> | 2018-07-06 17:00:00 -0500 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-07-08 11:21:45 +0000 |
commit | 7b13e0df704b5262a4602c51126a4f12ff00ca35 (patch) | |
tree | 62afae962bac6f35c543b58b64659d3f21542165 /dpdk/dpdk-18.05_patches/0002-ixgbe-link-wait-longer.patch | |
parent | 95e0ce05470554e403ade1db322800e489165b1b (diff) |
ixgbe link update patch for DPDK 18.05
Add patch for DPDK 18.05 that was previously applied
to DPDK 18.02.1. Issue with ixgbe on x550 SFP+ still
exists.
Bug report submitted to DPDK:
https://bugs.dpdk.org/show_bug.cgi?id=69
Change-Id: I9b005709ddf2a72192b1288ba8b4bac85bf12685
Signed-off-by: Matthew Smith <mgsmith@netgate.com>
Diffstat (limited to 'dpdk/dpdk-18.05_patches/0002-ixgbe-link-wait-longer.patch')
-rw-r--r-- | dpdk/dpdk-18.05_patches/0002-ixgbe-link-wait-longer.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dpdk/dpdk-18.05_patches/0002-ixgbe-link-wait-longer.patch b/dpdk/dpdk-18.05_patches/0002-ixgbe-link-wait-longer.patch new file mode 100644 index 00000000000..fb71e94c7ba --- /dev/null +++ b/dpdk/dpdk-18.05_patches/0002-ixgbe-link-wait-longer.patch @@ -0,0 +1,13 @@ +diff --git a/drivers/net/ixgbe/base/ixgbe_common.c b/drivers/net/ixgbe/base/ixgbe_common.c +index e7e9256e5..2fb0a072c 100644 +--- a/drivers/net/ixgbe/base/ixgbe_common.c ++++ b/drivers/net/ixgbe/base/ixgbe_common.c +@@ -5296,7 +5296,7 @@ s32 ixgbe_setup_mac_link_multispeed_fiber(struct ixgbe_hw *hw, + * Section 73.10.2, we may have to wait up to 500ms if KR is + * attempted. 82599 uses the same timing for 10g SFI. + */ +- for (i = 0; i < 5; i++) { ++ for (i = 0; i < 10; i++) { + /* Wait for the link partner to also set speed */ + msec_delay(100); + |