diff options
author | Damjan Marion <damarion@cisco.com> | 2016-11-23 23:47:53 +0100 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2016-11-24 09:24:05 +0000 |
commit | f3ebeda1da8b0646af7be6a04696f72572112f90 (patch) | |
tree | 6da47f0c167be9c7c5e3eefb00dfaef9daa6b614 /dpdk/dpdk-16.04_patches/0018-enic-fix-segfault-on-Tx-path-after-restarting-a-devi.patch | |
parent | e99007b3df4c6dafff044e47a1c417955094b8c2 (diff) |
dpdk: remove old patches
Change-Id: I31244207ca5420558c6ff00b2021126ff5628e08
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'dpdk/dpdk-16.04_patches/0018-enic-fix-segfault-on-Tx-path-after-restarting-a-devi.patch')
-rw-r--r-- | dpdk/dpdk-16.04_patches/0018-enic-fix-segfault-on-Tx-path-after-restarting-a-devi.patch | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/dpdk/dpdk-16.04_patches/0018-enic-fix-segfault-on-Tx-path-after-restarting-a-devi.patch b/dpdk/dpdk-16.04_patches/0018-enic-fix-segfault-on-Tx-path-after-restarting-a-devi.patch deleted file mode 100644 index 10b66375b44..00000000000 --- a/dpdk/dpdk-16.04_patches/0018-enic-fix-segfault-on-Tx-path-after-restarting-a-devi.patch +++ /dev/null @@ -1,46 +0,0 @@ -From 60971e62dcbb50a7ef1c3839e8b33b5aef6a48fe Mon Sep 17 00:00:00 2001 -From: John Daley <johndale@cisco.com> -Date: Fri, 1 Jul 2016 12:24:45 -0700 -Subject: [PATCH 18/25] enic: fix segfault on Tx path after restarting a device - -If you stop then start a port that had already sent some packets, -there was a segfault due to not resetting the number of completed -sends to zero. - -Fixes: d5d882fe1a11 ("Tx path rewrite to reduce Host CPU overhead") - -Signed-off-by: Nelson Escobar <neescoba@cisco.com> -Reviewed-by: John Daley <johndale@cisco.com> ---- - drivers/net/enic/base/vnic_wq.c | 2 ++ - drivers/net/enic/base/vnic_wq.h | 1 + - 2 files changed, 3 insertions(+) - -diff --git a/drivers/net/enic/base/vnic_wq.c b/drivers/net/enic/base/vnic_wq.c -index ccbbd61..7026bfe 100644 ---- a/drivers/net/enic/base/vnic_wq.c -+++ b/drivers/net/enic/base/vnic_wq.c -@@ -206,6 +206,8 @@ void vnic_wq_clean(struct vnic_wq *wq, - - wq->head_idx = 0; - wq->tail_idx = 0; -+ wq->last_completed_index = 0; -+ *((uint32_t *)wq->cqmsg_rz->addr) = 0; - - iowrite32(0, &wq->ctrl->fetch_index); - iowrite32(0, &wq->ctrl->posted_index); -diff --git a/drivers/net/enic/base/vnic_wq.h b/drivers/net/enic/base/vnic_wq.h -index 37c3ff9..faf3bfa 100644 ---- a/drivers/net/enic/base/vnic_wq.h -+++ b/drivers/net/enic/base/vnic_wq.h -@@ -38,6 +38,7 @@ - - #include "vnic_dev.h" - #include "vnic_cq.h" -+#include <rte_memzone.h> - - /* Work queue control */ - struct vnic_wq_ctrl { --- -2.7.0 - |