[dpdk-dev] [PATCH] net/enic: fix another case of memory not being freed

2016-09-27 Thread Bruce Richardson
On Thu, Sep 22, 2016 at 10:02:45AM -0700, John Daley wrote: > From: Nelson Escobar > > The function vnic_dev_free_desc_ring() didn't actually free memory. Fix > this by first changing vnic_dev_alloc_desc_ring() to use the common > allocation function, then in vnic_dev_free_desc_ring call the comm

[dpdk-dev] [PATCH] net/enic: fix another case of memory not being freed

2016-09-22 Thread John Daley
From: Nelson Escobar The function vnic_dev_free_desc_ring() didn't actually free memory. Fix this by first changing vnic_dev_alloc_desc_ring() to use the common allocation function, then in vnic_dev_free_desc_ring call the common free function. Fixes: fefed3d1e62c ("enic: new driver") Signed-of