diff options
author | Damjan Marion <damarion@cisco.com> | 2018-09-21 12:27:45 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2018-09-21 17:51:25 +0000 |
commit | 561f2730e8b137cd4e7132b05dab49f6e768ae23 (patch) | |
tree | 102d8db51c4d9ea5ecd7d355cdf9fdeb12394539 /build/external/patches/dpdk_18.05/0002-ixgbe-link-wait-longer.patch | |
parent | d974cd4262238168db65b9d837066f7c7511a9c5 (diff) |
add: nasm and ipsec-mb into vpp-ext-deps packaging
Change-Id: Ie5d85af84ae0d8b15edf5962213ed1b1953bee2f
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'build/external/patches/dpdk_18.05/0002-ixgbe-link-wait-longer.patch')
-rw-r--r-- | build/external/patches/dpdk_18.05/0002-ixgbe-link-wait-longer.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/build/external/patches/dpdk_18.05/0002-ixgbe-link-wait-longer.patch b/build/external/patches/dpdk_18.05/0002-ixgbe-link-wait-longer.patch new file mode 100644 index 00000000000..fb71e94c7ba --- /dev/null +++ b/build/external/patches/dpdk_18.05/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); + |