[dpdk-dev] [PATCH v3 2/2] librte_ether: release queue array memory in close function

2015-07-19 Thread Thomas Monjalon
2015-07-13 14:04, Bernard Iremonger: > Signed-off-by: Bernard Iremonger Applied without the first patch which seems useless.

[dpdk-dev] [PATCH 0/4] ethdev/eal API fixes

2015-07-19 Thread Thomas Monjalon
2015-07-19 12:52, Thomas Monjalon: > The main change of these patches is to improve naming consistency > across ethdev and EAL. > It should be applied shortly to be part of rc1. If some comments arise, > it can be fixed/improved in rc2. > > Thomas Monjalon (4): > doc: rename ABI chapter to depre

[dpdk-dev] [PATCH 0/2 v5] Enable hotplug support for fm10k

2015-07-19 Thread Thomas Monjalon
> Michael Qiu (2): > fm10k: Free queues when close port > fm10k: Add hotplug support for fm10k Applied, thanks

[dpdk-dev] [PATCH v6 0/6] virtio PCI Port Hotplug

2015-07-19 Thread Thomas Monjalon
> > Bernard Iremonger (6): > > virtio: add support for PCI Port Hotplug > > virtio: check vq parameter in virtqueue_detatch_unused() function > > virtio: add proper queue release > > virtio: free queue memory in virtio_dev_close() > > virtio: use queue_release in dev_uninit > > test-pmd

[dpdk-dev] [PATCH v6 0/7] i40e: PCI Port Hotplug Changes

2015-07-19 Thread Thomas Monjalon
> > Bernard Iremonger (7): > > i40e: changes to support PCI Port Hotplug > > i40e: release vmdq vsi's in dev_close > > i40e: increase ASQ_DELAY_MS to 100 and MAX_TRY_TIMES to 20 in > > i40evf_wait_cmd_done() > > i40e: call _clear_cmd() when error occurs > > i40e: clear queues in i40ev

[dpdk-dev] [PATCH v6 0/2] PCI Port Hotplug

2015-07-19 Thread Thomas Monjalon
> > Bernard Iremonger (2): > > ixgbe: changes to support PCI Port Hotplug > > ixgbe: release queue memory in close functions > > Acked-by: Konstantin Ananyev Applied, thanks

[dpdk-dev] [PATCH v7 0/2] e1000: PCI Port Hotplug changes

2015-07-19 Thread Thomas Monjalon
> Bernard Iremonger (2): > e1000: igb and em1000 PCI Port Hotplug changes > e1000: free queue memory in close functions Applied, thanks

[dpdk-dev] [PATCH v5 4/5] vhost: eventfd_link: replace copy-pasted sys_close

2015-07-19 Thread Pavel Boldin
Xie, I think it is OK to merge first three patches at the moment. I'm going to implement a new scheme in a different ioctl soon. Pavel

[dpdk-dev] [PATCH 4/4] ethdev: fix doxygen internal comments

2015-07-19 Thread Thomas Monjalon
The internal functions must be marked with the doxygen command @internal. The allocate and release_port functions are not restricted only to dummy drivers. Signed-off-by: Thomas Monjalon --- lib/librte_ether/rte_ethdev.h | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git

[dpdk-dev] [PATCH 3/4] ethdev: refactor port release

2015-07-19 Thread Thomas Monjalon
Use DEV_DETACHED constant and deduplicate code in init. Signed-off-by: Thomas Monjalon --- lib/librte_ether/rte_ethdev.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/librte_ether/rte_ethdev.c b/lib/librte_ether/rte_ethdev.c index 9596047..d00d104 100644 --- a/lib/

[dpdk-dev] [PATCH 2/4] pci: fix detach and uninit naming

2015-07-19 Thread Thomas Monjalon
There are close and detach functions in ethdev. To keep a consistent naming, PCI functions called by ethdev detach must be named "detach" instead of "close". Fix also comments which mix close and uninit names. Signed-off-by: Thomas Monjalon --- doc/guides/rel_notes/deprecation.rst|

[dpdk-dev] [PATCH 1/4] doc: rename ABI chapter to deprecation

2015-07-19 Thread Thomas Monjalon
This chapter is for ABI and API. That's why a renaming is required. Remove also the examples which are now in the referenced guidelines. Signed-off-by: Thomas Monjalon --- MAINTAINERS | 2 +- doc/guides/rel_notes/{abi.rst => deprecation.rst} | 16 +

[dpdk-dev] [PATCH 0/4] ethdev/eal API fixes

2015-07-19 Thread Thomas Monjalon
The main change of these patches is to improve naming consistency across ethdev and EAL. It should be applied shortly to be part of rc1. If some comments arise, it can be fixed/improved in rc2. Thomas Monjalon (4): doc: rename ABI chapter to deprecation pci: fix detach and uninit naming ethd