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/0031-enic-fix-bug-introduced-with-scatter-rx.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/0031-enic-fix-bug-introduced-with-scatter-rx.patch')
-rw-r--r-- | dpdk/dpdk-16.04_patches/0031-enic-fix-bug-introduced-with-scatter-rx.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/dpdk/dpdk-16.04_patches/0031-enic-fix-bug-introduced-with-scatter-rx.patch b/dpdk/dpdk-16.04_patches/0031-enic-fix-bug-introduced-with-scatter-rx.patch deleted file mode 100644 index 88586ebc238..00000000000 --- a/dpdk/dpdk-16.04_patches/0031-enic-fix-bug-introduced-with-scatter-rx.patch +++ /dev/null @@ -1,24 +0,0 @@ -commit f0ca43396ebeb85228f9737a52caa68fc06aa9ee -Author: Nelson Escobar <neescoba@cisco.com> -Date: Mon Jun 13 17:24:41 2016 -0700 - - enic: fix bug introduced with scatter rx - - We did not properly set the rq pointers we pass up to dpdk when - rx scatter was introduced. This resulted in segfaults whenever - more than one rq was being used. - -diff --git a/drivers/net/enic/enic_ethdev.c b/drivers/net/enic/enic_ethdev.c -index e5b84e1..66fddb1 100644 ---- a/drivers/net/enic/enic_ethdev.c -+++ b/drivers/net/enic/enic_ethdev.c -@@ -279,7 +279,8 @@ static int enicpmd_dev_rx_queue_setup(struct rte_eth_dev *eth_dev, - return -EINVAL; - } - -- eth_dev->data->rx_queues[queue_idx] = (void *)&enic->rq[queue_idx]; -+ eth_dev->data->rx_queues[queue_idx] = -+ (void *)&enic->rq[enic_sop_rq(enic, queue_idx)]; - - ret = enic_alloc_rq(enic, queue_idx, socket_id, mp, nb_desc); - if (ret) { |