automatic DPDK test reports
 help / color / mirror / Atom feed
[dpdk-test-report] [ERROR]Intel Daily DPDK Regression Test Report
 2017-12-02  0:13 UTC 

[dpdk-test-report] |FAILURE| pw31888 [PATCH RFC v5 4/5] eventtimer: add default software implementation stub
 2017-12-01 21:20 UTC 

[dpdk-test-report] |FAILURE| pw31889 [PATCH RFC v5 5/5] test: add event timer adapter auto-test
 2017-12-01 21:09 UTC 

[dpdk-test-report] |FAILURE| pw31886 [PATCH RFC v5 2/5] eventtimer: add common code
 2017-12-01 21:03 UTC 

[dpdk-test-report] |FAILURE| pw31887 [PATCH RFC v5 3/5] eventtimer: add config variable for adapter
 2017-12-01 20:52 UTC 

[dpdk-test-report] |SUCCESS| pw31885 [PATCH RFC v5 1/5] eventtimer: introduce event timer adapter
 2017-12-01 20:52 UTC 

[dpdk-test-report] | SUCCESS | daily Intel builds (60/60)
 2017-12-01 20:17 UTC 

[dpdk-test-report] |SUCCESS| pw31889 [PATCH RFC v5 5/5] test: add event timer adapter auto-test
 2017-12-01 20:02 UTC 

[dpdk-test-report] |SUCCESS| pw31888 [PATCH RFC v5 4/5] eventtimer: add default software implementation stub
 2017-12-01 20:02 UTC 

[dpdk-test-report] |SUCCESS| pw31887 [PATCH RFC v5 3/5] eventtimer: add config variable for adapter
 2017-12-01 20:02 UTC 

[dpdk-test-report] |WARNING| pw31886 [PATCH RFC v5 2/5] eventtimer: add common code
 2017-12-01 20:02 UTC 

[dpdk-test-report] |SUCCESS| pw31885 [PATCH RFC v5 1/5] eventtimer: introduce event timer adapter
 2017-12-01 20:02 UTC 

[dpdk-test-report] |FAILURE| pw31882 [PATCH 3/4] dpdk: add __experimental tag to appropriate api calls
 2017-12-01 19:47 UTC 

[dpdk-test-report] |FAILURE| pw31883 [PATCH 4/4] Makefiles: Add experimental tag check and warnings to trigger on use
 2017-12-01 19:38 UTC 

[dpdk-test-report] |SUCCESS| pw31881 [PATCH 1/4] buildtools: Add tool to check EXPERIMENTAL api exports
 2017-12-01 19:38 UTC 

[dpdk-test-report] |SUCCESS| pw31884 [PATCH 2/4] compat: Add __experimental macro
 2017-12-01 19:34 UTC 

[dpdk-test-report] |SUCCESS| pw31880 [PATCH 2/2] doc: Fix typo
 2017-12-01 19:19 UTC 

[dpdk-test-report] |SUCCESS| pw31879 [PATCH 1/2] doc: Clarify wording regarding actions and flow rules
 2017-12-01 19:19 UTC 

[dpdk-test-report] |WARNING| pw31884 [PATCH 2/4] compat: Add __experimental macro
 2017-12-01 18:58 UTC 

[dpdk-test-report] |SUCCESS| pw31882 [PATCH 3/4] dpdk: add __experimental tag to appropriate api calls
 2017-12-01 18:58 UTC 

[dpdk-test-report] |WARNING| pw31883 [PATCH 4/4] Makefiles: Add experimental tag check and warnings to trigger on
 2017-12-01 18:58 UTC 

[dpdk-test-report] |WARNING| pw31881 [PATCH 1/4] buildtools: Add tool to check EXPERIMENTAL api exports
 2017-12-01 18:58 UTC 

[dpdk-test-report] |SUCCESS| pw31880 [PATCH 2/2] doc: Fix typo
 2017-12-01 18:30 UTC 

[dpdk-test-report] |SUCCESS| pw31879 [PATCH 1/2] doc: Clarify wording regarding actions and flow rules
 2017-12-01 18:30 UTC 

[dpdk-test-report] |FAILURE| pw31878 [PATCH v2] net/virtio: fix an incorrect behavior of device stop/start Re: [PATCH] [PATCH v2] net/virtio: fix an incorrect behavior> of device stop/start> > Hi Tiwei > > I'm doing some regression tests with v17.11-rc4. I ran> into a hitch with testpmd running into a guest VM. It happens> that no packet gets forwarded by testpmd.> The issue seems to appear after this patch was upstreamed.> > I saw there's a way to make it work ie by avoiding to> increment the last consumed descriptor:> > --- a/drivers/net/virtio/virtqueue.c> +++ b/drivers/net/virtio/virtqueue.c> @@ -80 7 +80 7 @@ virtqueue_flush(struct virtqueue *vq)> rte_pktmbuf_free(dxp->cookie); > dxp->cookie = NULL; > }> - vq->vq_used_cons_idx++; > + //vq->vq_used_cons_idx++; > vq_ring_free_chain(vq desc_idx); > > Not quite sure if this change make any sense to you?> > Some details below.> > The issue appears only if the traffic generator is already> sending packets before I launch testpmd in the guest.> > In my testbench I have Open-vSwitch (OvS-DPDK) which launches> a VM with 2 vhostuserclient ports (vhu0 and vhu1) each with> a single queue.> My OvS has 2 physical ports: dpdk0 and dpdk1.> dpdk0 forwards packets back and forth from/to the generator> to/from vhu0.> Similarly dpdk1 forwards packets back and forth from/to the generator> to/from vhu1.> > In OvS there are 2 different PMD threads serving the 2> vhostuserclient ports.> > While the traffic generator is already sending packets in the> guest VM I launch> ./testpmd -c 0x3 -n 4 --socket-mem 512 -- --burst=64 -i --> txqflags=0xf00 --disable-hw-vlan> > The issue is that I see no packet received on the traffic generator> and in fact testpmd shows> > ---------------------- Forward statistics for port 0 ------------------> ----> RX-packets: 0 RX-dropped: 0 RX-total: 0> TX-packets: 0 TX-dropped: 0 TX-total: 0> ----------------------------------------------------------------------> ------> > ---------------------- Forward statistics for port 1 ----------------> ------> RX-packets: 0 RX-dropped: 0 RX-total: 0> TX-packets: 0 TX-dropped: 0 TX-total: 0> ----------------------------------------------------------------------> ------> > +++++++++++++++ Accumulated forward statistics for all> ports+++++++++++++++> RX-packets: 0 RX-dropped: 0 RX-total: 0> TX-packets: 0 TX-dropped: 0 TX-total: 0> > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++> ++++> > Please let me know if I missed something or if you need> more info on my testbench.> > > Thanks > Antonio> > > -----Original Message-----> >
 2017-12-01 17:31 UTC 

[dpdk-test-report] |SUCCESS| pw31877 [PATCH] net/i40e: do not turn on flexible payload on driver init
 2017-12-01 17:24 UTC 

[dpdk-test-report] |WARNING| pw31878 [PATCH v2] net/virtio: fix an incorrect behavior of device stop/start
 2017-12-01 17:18 UTC 

[dpdk-test-report] |SUCCESS| pw31876 [PATCH 7/7] net/mrvl: update MRVL NET PMD documentation
 2017-12-01 17:06 UTC 

[dpdk-test-report] |SUCCESS| pw31875 [PATCH 6/7] devtools/test-build: add MRVL NET PMD to test-build
 2017-12-01 17:06 UTC 

[dpdk-test-report] |SUCCESS| pw31874 [PATCH 5/7] net/mrvl: add extra error logs
 2017-12-01 17:06 UTC 

[dpdk-test-report] |SUCCESS| pw31873 [PATCH 4/7] net/mrvl: check if ppio is initialized
 2017-12-01 17:06 UTC 

[dpdk-test-report] |SUCCESS| pw31872 [PATCH 3/7] net/mrvl: do not enable port after setting MAC address
 2017-12-01 16:55 UTC 

[dpdk-test-report] |SUCCESS| pw31871 [PATCH 2/7] net/mrvl: query link status using library API
 2017-12-01 16:55 UTC 

[dpdk-test-report] |SUCCESS| pw31870 [PATCH 1/7] net/mrvl: sync compilation with musdk-17.10
 2017-12-01 16:55 UTC 

[dpdk-test-report] |SUCCESS| pw31869 [PATCH] examples/eventdev_pipeline: add Rx adapter support
 2017-12-01 16:08 UTC 

[dpdk-test-report] |SUCCESS| pw31868 [PATCH RFC 3/3] doc: ethdev ABI change deprecation notice
 2017-12-01 15:51 UTC 

[dpdk-test-report] |SUCCESS| pw31866 [PATCH RFC 1/3] ethdev: introduce eth_queue_local
 2017-12-01 15:51 UTC 

[dpdk-test-report] |SUCCESS| pw31867 [PATCH RFC 2/3] ethdev: make it safe to remove rx/tx callback at runtime
 2017-12-01 15:51 UTC 

[dpdk-test-report] |SUCCESS| pw31877 [PATCH] net/i40e: do not turn on flexible payload on driver init
 2017-12-01 15:28 UTC 

[dpdk-test-report] |SUCCESS| pw31876 [PATCH 7/7] net/mrvl: update MRVL NET PMD documentation
 2017-12-01 15:21 UTC 

[dpdk-test-report] |SUCCESS| pw31875 [PATCH 6/7] devtools/test-build: add MRVL NET PMD to test-build
 2017-12-01 15:21 UTC 

[dpdk-test-report] |SUCCESS| pw31873 [PATCH 4/7] net/mrvl: check if ppio is initialized
 2017-12-01 15:21 UTC 

[dpdk-test-report] |SUCCESS| pw31874 [PATCH 5/7] net/mrvl: add extra error logs
 2017-12-01 15:21 UTC 

[dpdk-test-report] |SUCCESS| pw31872 [PATCH 3/7] net/mrvl: do not enable port after setting MAC address
 2017-12-01 15:21 UTC 

[dpdk-test-report] |SUCCESS| pw31871 [PATCH 2/7] net/mrvl: query link status using library API
 2017-12-01 15:21 UTC 

[dpdk-test-report] |SUCCESS| pw31870 [PATCH 1/7] net/mrvl: sync compilation with musdk-17.10
 2017-12-01 15:21 UTC 

[dpdk-test-report] |WARNING| pw31869 [PATCH] examples/eventdev_pipeline: add Rx adapter support
 2017-12-01 15:14 UTC 

[dpdk-test-report] |SUCCESS| pw31868 [PATCH RFC 3/3] doc: ethdev ABI change deprecation notice
 2017-12-01 14:49 UTC 

[dpdk-test-report] |WARNING| pw31867 [PATCH RFC 2/3] ethdev: make it safe to remove rx/tx callback at runtime
 2017-12-01 14:49 UTC 

[dpdk-test-report] |SUCCESS| pw31866 [PATCH RFC 1/3] ethdev: introduce eth_queue_local
 2017-12-01 14:48 UTC 

[dpdk-test-report] |SUCCESS| pw31865 [PATCH] contigmem: include <sys/vmmeter.h> to fix FreeBSD build
 2017-12-01 12:15 UTC 

[dpdk-test-report] |SUCCESS| pw31863 [PATCH 1/2] test/test: introduce new test-case for rte_smp_mb()
 2017-12-01 12:03 UTC 

[dpdk-test-report] |SUCCESS| pw31864 [PATCH 2/2] eal/x86: Use lock-prefixed instructions to reduce cost of rte_smp_mb()
 2017-12-01 12:03 UTC 

[dpdk-test-report] |SUCCESS| pw31862 [PATCH] maintainers: claim responsibility for virtio PMD
 2017-12-01 11:36 UTC 

[dpdk-test-report] |SUCCESS| pw31860 [PATCH v2 2/2] app/testpmd: support GENEVE pattern item in flow rules
 2017-12-01 11:23 UTC 

[dpdk-test-report] |SUCCESS| pw31865 [PATCH] contigmem: include <sys/vmmeter.h> to fix FreeBSD build
 2017-12-01 11:22 UTC 

[dpdk-test-report] |SUCCESS| pw31864 [PATCH 2/2] eal/x86: Use lock-prefixed instructions to reduce cost of
 2017-12-01 11:14 UTC 

[dpdk-test-report] |SUCCESS| pw31863 [PATCH 1/2] test/test: introduce new test-case for rte_smp_mb()
 2017-12-01 11:14 UTC 

[dpdk-test-report] |SUCCESS| pw31861 [PATCH v2 1/2] ethdev: add GENEVE flow pattern item
 2017-12-01 11:13 UTC 

[dpdk-test-report] |WARNING| pw31862 [PATCH] maintainers: claim responsibility for virtio PMD
 2017-12-01 11:07 UTC 

[dpdk-test-report] |SUCCESS| pw31861 [PATCH v2 1/2] ethdev: add GENEVE flow pattern item
 2017-12-01 10:44 UTC 

[dpdk-test-report] |SUCCESS| pw31860 [PATCH v2 2/2] app/testpmd: support GENEVE pattern item in flow rules
 2017-12-01 10:44 UTC 

[dpdk-test-report] |SUCCESS| pw31859 [PATCH] net/i40e: add fdir nvgre parameters check
 2017-12-01  9:46 UTC 

[dpdk-test-report] |SUCCESS| pw31857 [PATCH v2 1/2] Introducing SPDX License Identifiers
 2017-12-01  9:37 UTC 

[dpdk-test-report] |SUCCESS| pw31858 [PATCH v2 2/2] Change root makefile license to SPDX tag
 2017-12-01  9:37 UTC 

[dpdk-test-report] |SUCCESS| pw31856 [PATCH 3/7] ethdev: separate driver APIs
 2017-12-01  9:06 UTC 

[dpdk-test-report] |SUCCESS| pw31859 [PATCH] net/i40e: add fdir nvgre parameters check
 2017-12-01  8:56 UTC 

[dpdk-test-report] |SUCCESS| pw31858 [PATCH v2 2/2] Change root makefile license to SPDX tag
 2017-12-01  8:39 UTC 

[dpdk-test-report] |WARNING| pw31857 [PATCH v2 1/2] Introducing SPDX License Identifiers
 2017-12-01  8:39 UTC 

[dpdk-test-report] |WARNING| pw31856 [PATCH 3/7] ethdev: separate driver APIs
 2017-12-01  8:36 UTC 

[dpdk-test-report] |FAILURE| pw31855 [PATCH] mmap(2) returns MAP_FAILED not NULL on failure
 2017-12-01  7:21 UTC 

[dpdk-test-report] |WARNING| pw31855 [PATCH] mmap(2) returns MAP_FAILED not NULL on failure
 2017-12-01  6:52 UTC 

[dpdk-test-report] |SUCCESS| pw31854 [PATCH] net/ixgbe: fix parsing fdir nvgre issue
 2017-12-01  6:28 UTC 

[dpdk-test-report] |SUCCESS| pw31854 [PATCH] net/ixgbe: fix parsing fdir nvgre issue
 2017-12-01  6:00 UTC 

[dpdk-test-report] |FAILURE| pw31851 [PATCH 5/7] ethdev: reorder inline functions
 2017-12-01  3:26 UTC 

[dpdk-test-report] |FAILURE| pw31850 [PATCH 4/7] ethdev: separate internal structures into own header
 2017-12-01  3:26 UTC 

[dpdk-test-report] |FAILURE| pw31853 [PATCH 7/7] ethdev: use opaque user callback object
 2017-12-01  3:26 UTC 

[dpdk-test-report] |FAILURE| pw31852 [PATCH 6/7] ethdev: rename function parameter for consistency
 2017-12-01  3:17 UTC 

[dpdk-test-report] |FAILURE| pw31848 [PATCH 1/7] ethdev: remove unused flag from header
 2017-12-01  3:11 UTC 

[dpdk-test-report] |FAILURE| pw31849 [PATCH 2/7] ethdev: fix port id storage
 2017-12-01  3:00 UTC 

[dpdk-test-report] |SUCCESS| pw31853 [PATCH 7/7] ethdev: use opaque user callback object
 2017-12-01  2:32 UTC 

[dpdk-test-report] |SUCCESS| pw31852 [PATCH 6/7] ethdev: rename function parameter for consistency
 2017-12-01  2:32 UTC 

[dpdk-test-report] |WARNING| pw31851 [PATCH 5/7] ethdev: reorder inline functions
 2017-12-01  2:32 UTC 

[dpdk-test-report] |WARNING| pw31850 [PATCH 4/7] ethdev: separate internal structures into own header
 2017-12-01  2:32 UTC 

[dpdk-test-report] |SUCCESS| pw31849 [PATCH 2/7] ethdev: fix port id storage
 2017-12-01  2:30 UTC 

[dpdk-test-report] |SUCCESS| pw31848 [PATCH 1/7] ethdev: remove unused flag from header
 2017-12-01  2:30 UTC 

[dpdk-test-report] |SUCCESS| pw31847 [PATCH] bus/vdev: add custom scan hook
 2017-12-01  1:15 UTC 

[dpdk-test-report] |SUCCESS| pw31847 [PATCH] bus/vdev: add custom scan hook
 2017-12-01  0:37 UTC 

[dpdk-test-report] |SUCCESS| pw31846 [PATCH] net/bond: burst mode hash calculation
 2017-12-01  0:32 UTC 

[dpdk-test-report] |WARNING| pw31846 [PATCH] net/bond: burst mode hash calculation
 2017-12-01  0:10 UTC 

[dpdk-test-report] |SUCCESS| pw31845 [PATCH] net/bond: don't drop lacpdu's on slaves tx failure
 2017-12-01  0:08 UTC 

[dpdk-test-report] |SUCCESS| pw31845 [PATCH] net/bond: don't drop lacpdu's on slaves tx failure
 2017-11-30 23:31 UTC 

[dpdk-test-report] |FAILURE| pw31844 [PATCH] eal/x86: get hypervisor name
 2017-11-30 22:31 UTC 

[dpdk-test-report] |FAILURE| pw31842 [PATCH 1/2] net/softnic: enable flow classification function
 2017-11-30 22:24 UTC 

[dpdk-test-report] |FAILURE| pw31843 [PATCH 2/2] net/softnic: add flow classification ops
 2017-11-30 22:17 UTC 

[dpdk-test-report] |SUCCESS| pw31844 [PATCH] eal/x86: get hypervisor name
 2017-11-30 21:48 UTC 

[dpdk-test-report] |FAILURE| pw31841 [PATCH] bus/vdev: scan and probe vdev in secondary processes
 2017-11-30 21:44 UTC 

[dpdk-test-report] |FAILURE| pw31839 [PATCH 2/3] eal: add synchronous multi-process communication
 2017-11-30 21:32 UTC 

[dpdk-test-report] |FAILURE| pw31838 [PATCH 1/3] eal: add channel for multi-process communication
 2017-11-30 21:32 UTC 

[dpdk-test-report] |FAILURE| pw31840 [PATCH 3/3] vfio: use the generic multi-process channel
 2017-11-30 21:32 UTC 

[dpdk-test-report] |SUCCESS| pw31837 [PATCH v1] net/tap: allow user mac to be passed as args
 2017-11-30 21:08 UTC 

[dpdk-test-report] |SUCCESS| pw31836 [PATCH v4] crypto/aesni_mb: add AES-CCM support
 2017-11-30 20:55 UTC 

[dpdk-test-report] |SUCCESS| pw31835 [PATCH 2/2] crypto/mrvl: update MRVL CRYPTO PMD documentation
 2017-11-30 20:47 UTC 

[dpdk-test-report] |SUCCESS| pw31834 [PATCH 1/2] crypto/mrvl: sync compilation with musdk-17.10
 2017-11-30 20:47 UTC 

[dpdk-test-report] |SUCCESS| pw31833 [PATCH 7/7] net/mrvl: update MRVL NET PMD documentation
 2017-11-30 20:28 UTC 

[dpdk-test-report] |SUCCESS| pw31832 [PATCH 6/7] devtools/test-build: add MRVL NET PMD to test-build
 2017-11-30 20:28 UTC 

[dpdk-test-report] |SUCCESS| pw31831 [PATCH 5/7] net/mrvl: add extra error logs
 2017-11-30 20:24 UTC 

[dpdk-test-report] |SUCCESS| pw31830 [PATCH 4/7] net/mrvl: check if ppio is initialized
 2017-11-30 20:22 UTC 

[dpdk-test-report] | SUCCESS | daily Intel builds (60/60)
 2017-11-30 20:16 UTC 

[dpdk-test-report] |SUCCESS| pw31828 [PATCH 2/7] net/mrvl: query link status using library API
 2017-11-30 20:07 UTC 

[dpdk-test-report] |SUCCESS| pw31843 [PATCH 2/2] net/softnic: add flow classification ops
 2017-11-30 19:56 UTC 

[dpdk-test-report] |WARNING| pw31842 [PATCH 1/2] net/softnic: enable flow classification function
 2017-11-30 19:56 UTC 

[dpdk-test-report] |SUCCESS| pw31829 [PATCH 3/7] net/mrvl: do not enable port after setting MAC address
 2017-11-30 19:52 UTC 

[dpdk-test-report] |SUCCESS| pw31827 [PATCH 1/7] net/mrvl: sync compilation with musdk-17.10
 2017-11-30 19:48 UTC 

[dpdk-test-report] |SUCCESS| pw31841 [PATCH] bus/vdev: scan and probe vdev in secondary processes
 2017-11-30 18:58 UTC 

[dpdk-test-report] |SUCCESS| pw31823 [PATCH 07/11] doc: add document for AMD CCP crypto PMD
 2017-11-30 18:54 UTC 

[dpdk-test-report] |SUCCESS| pw31819 [PATCH 04/11] crypto/ccp: add support for AES-CMAC
 2017-11-30 18:54 UTC 

[dpdk-test-report] |SUCCESS| pw31818 [PATCH 02/11] crypto/ccp: add support for AMD CCP crypto PMD
 2017-11-30 18:54 UTC 

[dpdk-test-report] |SUCCESS| pw31840 [PATCH 3/3] vfio: use the generic multi-process channel
 2017-11-30 18:43 UTC 

[dpdk-test-report] |WARNING| pw31839 [PATCH 2/3] eal: add synchronous multi-process communication
 2017-11-30 18:43 UTC 

[dpdk-test-report] |WARNING| pw31838 [PATCH 1/3] eal: add channel for multi-process communication
 2017-11-30 18:43 UTC 

[dpdk-test-report] |SUCCESS| pw31824 [PATCH 09/11] crypto/ccp: update queue-pair release to enable reset
 2017-11-30 18:39 UTC 

[dpdk-test-report] |SUCCESS| pw31822 [PATCH 06/11] crypto/ccp: add support for SHA3 family authentication
 2017-11-30 18:39 UTC 

[dpdk-test-report] |SUCCESS| pw31825 [PATCH 10/11] test/test: add test for AMD CCP crypto PMD
 2017-11-30 18:29 UTC 

[dpdk-test-report] |WARNING| pw31837 [PATCH v1] net/tap: allow user mac to be passed as args
 2017-11-30 18:28 UTC 

[dpdk-test-report] |SUCCESS| pw31826 [PATCH 11/11] crypto/ccp: update CCP PMD code-base
 2017-11-30 18:16 UTC 

[dpdk-test-report] |SUCCESS| pw31820 [PATCH 05/11] crypto/ccp: add support for CPU based authentication
 2017-11-30 18:01 UTC 

[dpdk-test-report] |SUCCESS| pw31821 [PATCH 08/11] crypto/ccp: rename CCP crypto driver id
 2017-11-30 17:46 UTC 

[dpdk-test-report] |SUCCESS| pw31817 [PATCH 03/11] crypto: add macros for AES-CMAC and SHA3
 2017-11-30 17:46 UTC 

[dpdk-test-report] |SUCCESS| pw31816 [PATCH 01/11] cryptodev: add compile support for AMD CCP crypto PMD
 2017-11-30 17:46 UTC 

[dpdk-test-report] |SUCCESS| pw31800 [PATCH 01/16] net/axgbe: add minimal dev init and uninit support
 2017-11-30 16:31 UTC 

[dpdk-test-report] |SUCCESS| pw31801 [PATCH 02/16] net/axgbe: add register map and related macros
 2017-11-30 16:31 UTC 

[dpdk-test-report] |SUCCESS| pw31806 [PATCH 07/16] net/axgbe: add interrupt handler for autonegotiation
 2017-11-30 16:31 UTC 

[dpdk-test-report] |SUCCESS| pw31808 [PATCH 09/16] net/axgbe: add DMA programming and dev start and stop apis
 2017-11-30 16:31 UTC 

[dpdk-test-report] |SUCCESS| pw31807 [PATCH 08/16] net/axgbe: add transmit and receive queue setup apis
 2017-11-30 16:16 UTC 

[dpdk-test-report] |SUCCESS| pw31809 [PATCH 10/16] net/axgbe: add transmit and receive data path apis
 2017-11-30 16:16 UTC 

[dpdk-test-report] |SUCCESS| pw31802 [PATCH 03/16] net/axgbe: add phy register map and helper macros
 2017-11-30 16:16 UTC 

[dpdk-test-report] |SUCCESS| pw31803 [PATCH 04/16] net/axgbe: add structures for MAC initialization and reset
 2017-11-30 16:16 UTC 

[dpdk-test-report] |SUCCESS| pw31811 [PATCH 12/16] net/axgbe: add promiscuous mode support
 2017-11-30 16:02 UTC 

[dpdk-test-report] |SUCCESS| pw31810 [PATCH 11/16] net/axgbe: add configure flow control while link adjustment
 2017-11-30 16:02 UTC 

[dpdk-test-report] |SUCCESS| pw31813 [PATCH 14/16] doc: add documents for AMD axgbe Ethernet PMD
 2017-11-30 15:51 UTC 

[dpdk-test-report] |SUCCESS| pw31812 [PATCH 13/16] net/axgbe: add generic transmit and receive stats support
 2017-11-30 15:49 UTC 

[dpdk-test-report] |SUCCESS| pw31815 [PATCH 16/16] net/axgbe: add support for build 32-bit mode
 2017-11-30 15:34 UTC 

[dpdk-test-report] |SUCCESS| pw31814 [PATCH 15/16] net/axgbe: add support for icc and clang build
 2017-11-30 15:34 UTC 

[dpdk-test-report] |SUCCESS| pw31804 [PATCH 05/16] net/axgbe: add phy initialization and related apis
 2017-11-30 15:32 UTC 

[dpdk-test-report] |SUCCESS| pw31805 [PATCH 06/16] net/axgbe: add phy programming apis
 2017-11-30 15:23 UTC 

[dpdk-test-report] |SUCCESS| pw31836 [PATCH v4] crypto/aesni_mb: add AES-CCM support
 2017-11-30 14:24 UTC 

[dpdk-test-report] |SUCCESS| pw31835 [PATCH 2/2] crypto/mrvl: update MRVL CRYPTO PMD documentation
 2017-11-30 13:34 UTC 

[dpdk-test-report] |SUCCESS| pw31834 [PATCH 1/2] crypto/mrvl: sync compilation with musdk-17.10
 2017-11-30 13:34 UTC 

[dpdk-test-report] |SUCCESS| pw31833 [PATCH 7/7] net/mrvl: update MRVL NET PMD documentation
 2017-11-30 13:34 UTC 

[dpdk-test-report] |SUCCESS| pw31832 [PATCH 6/7] devtools/test-build: add MRVL NET PMD to test-build
 2017-11-30 13:34 UTC 

[dpdk-test-report] |SUCCESS| pw31830 [PATCH 4/7] net/mrvl: check if ppio is initialized
 2017-11-30 13:34 UTC 

[dpdk-test-report] |SUCCESS| pw31831 [PATCH 5/7] net/mrvl: add extra error logs
 2017-11-30 13:34 UTC 

[dpdk-test-report] |SUCCESS| pw31829 [PATCH 3/7] net/mrvl: do not enable port after setting MAC address
 2017-11-30 13:34 UTC 

[dpdk-test-report] |SUCCESS| pw31828 [PATCH 2/7] net/mrvl: query link status using library API
 2017-11-30 13:34 UTC 

[dpdk-test-report] |SUCCESS| pw31827 [PATCH 1/7] net/mrvl: sync compilation with musdk-17.10
 2017-11-30 13:34 UTC 

[dpdk-test-report] |SUCCESS| pw31826 [PATCH 11/11] crypto/ccp: update CCP PMD code-base
 2017-11-30 13:19 UTC 

[dpdk-test-report] |SUCCESS| pw31825 [PATCH 10/11] test/test: add test for AMD CCP crypto PMD
 2017-11-30 13:19 UTC 

[dpdk-test-report] |SUCCESS| pw31824 [PATCH 09/11] crypto/ccp: update queue-pair release to enable reset
 2017-11-30 13:19 UTC 

[dpdk-test-report] |SUCCESS| pw31822 [PATCH 06/11] crypto/ccp: add support for SHA3 family authentication
 2017-11-30 13:17 UTC 

[dpdk-test-report] |SUCCESS| pw31823 [PATCH 07/11] doc: add document for AMD CCP crypto PMD
 2017-11-30 13:17 UTC 

[dpdk-test-report] |SUCCESS| pw31821 [PATCH 08/11] crypto/ccp: rename CCP crypto driver id
 2017-11-30 13:14 UTC 

[dpdk-test-report] |SUCCESS| pw31820 [PATCH 05/11] crypto/ccp: add support for CPU based authentication
 2017-11-30 13:14 UTC 

[dpdk-test-report] |SUCCESS| pw31819 [PATCH 04/11] crypto/ccp: add support for AES-CMAC
 2017-11-30 13:14 UTC 

[dpdk-test-report] |WARNING| pw31818 [PATCH 02/11] crypto/ccp: add support for AMD CCP crypto PMD
 2017-11-30 13:14 UTC 

[dpdk-test-report] |SUCCESS| pw31817 [PATCH 03/11] crypto: add macros for AES-CMAC and SHA3
 2017-11-30 13:13 UTC 

[dpdk-test-report] |WARNING| pw31816 [PATCH 01/11] cryptodev: add compile support for AMD CCP crypto PMD
 2017-11-30 13:13 UTC 

[dpdk-test-report] |SUCCESS| pw31815 [PATCH 16/16] net/axgbe: add support for build 32-bit mode
 2017-11-30 13:13 UTC 

[dpdk-test-report] |SUCCESS| pw31814 [PATCH 15/16] net/axgbe: add support for icc and clang build
 2017-11-30 13:13 UTC 

[dpdk-test-report] |WARNING| pw31813 [PATCH 14/16] doc: add documents for AMD axgbe Ethernet PMD
 2017-11-30 13:13 UTC 

[dpdk-test-report] |SUCCESS| pw31812 [PATCH 13/16] net/axgbe: add generic transmit and receive stats support
 2017-11-30 13:13 UTC 

[dpdk-test-report] |SUCCESS| pw31811 [PATCH 12/16] net/axgbe: add promiscuous mode support
 2017-11-30 13:13 UTC 

[dpdk-test-report] |SUCCESS| pw31810 [PATCH 11/16] net/axgbe: add configure flow control while link adjustment
 2017-11-30 13:13 UTC 

[dpdk-test-report] |WARNING| pw31809 [PATCH 10/16] net/axgbe: add transmit and receive data path apis
 2017-11-30 13:13 UTC 

[dpdk-test-report] |WARNING| pw31808 [PATCH 09/16] net/axgbe: add DMA programming and dev start and stop apis
 2017-11-30 13:13 UTC 

[dpdk-test-report] |WARNING| pw31807 [PATCH 08/16] net/axgbe: add transmit and receive queue setup apis
 2017-11-30 13:13 UTC 

[dpdk-test-report] |WARNING| pw31805 [PATCH 06/16] net/axgbe: add phy programming apis
 2017-11-30 13:13 UTC 

[dpdk-test-report] |SUCCESS| pw31806 [PATCH 07/16] net/axgbe: add interrupt handler for autonegotiation
 2017-11-30 13:13 UTC 

[dpdk-test-report] |WARNING| pw31804 [PATCH 05/16] net/axgbe: add phy initialization and related apis
 2017-11-30 13:13 UTC 

[dpdk-test-report] |WARNING| pw31803 [PATCH 04/16] net/axgbe: add structures for MAC initialization and reset
 2017-11-30 13:13 UTC 

[dpdk-test-report] |WARNING| pw31802 [PATCH 03/16] net/axgbe: add phy register map and helper macros
 2017-11-30 13:13 UTC 

[dpdk-test-report] |WARNING| pw31801 [PATCH 02/16] net/axgbe: add register map and related macros
 2017-11-30 13:13 UTC 

[dpdk-test-report] |WARNING| pw31800 [PATCH 01/16] net/axgbe: add minimal dev init and uninit support
 2017-11-30 13:13 UTC 

[dpdk-test-report] |SUCCESS| pw31799 [PATCH v3] crypto/aesni_mb: support AES-CCM
 2017-11-30 13:03 UTC 

[dpdk-test-report] |SUCCESS| pw31796 [PATCH 1/3] kni: support for MAC addr change
 2017-11-30 12:55 UTC 

[dpdk-test-report] |SUCCESS| pw31797 [PATCH 2/3] kni: add support for promisc mode set
 2017-11-30 12:55 UTC 

[dpdk-test-report] |SUCCESS| pw31798 [PATCH 3/3] kni: set initial value for MTU
 2017-11-30 12:55 UTC 

[dpdk-test-report] |SUCCESS| pw31785 [PATCH 01/11] drivers/net: add vhostpci PMD base files
 2017-11-30 12:19 UTC 

[dpdk-test-report] |FAILURE| pw31790 [PATCH 06/11] net/vhostpci: add support for link status change
 2017-11-30 12:11 UTC 

[dpdk-test-report] |SUCCESS| pw31787 [PATCH 03/11] net/vhostpci: add debugging log macros
 2017-11-30 12:02 UTC 

[dpdk-test-report] |FAILURE| pw31794 [PATCH 10/11] net/vhostpci: support RX/TX packets statistics
 2017-11-30 11:58 UTC 

[dpdk-test-report] |SUCCESS| pw31799 [PATCH v3] crypto/aesni_mb: support AES-CCM
 2017-11-30 11:49 UTC 

[dpdk-test-report] |SUCCESS| pw31798 [PATCH 3/3] kni: set initial value for MTU
 2017-11-30 11:48 UTC 

[dpdk-test-report] |WARNING| pw31797 [PATCH 2/3] kni: add support for promisc mode set
 2017-11-30 11:48 UTC 

[dpdk-test-report] |WARNING| pw31796 [PATCH 1/3] kni: support for MAC addr change
 2017-11-30 11:48 UTC 

[dpdk-test-report] |SUCCESS| pw31786 [PATCH 02/11] net/vhostpci: public header files
 2017-11-30 11:43 UTC 

[dpdk-test-report] |FAILURE| pw31792 [PATCH 08/11] net/vhostpci: add RX function
 2017-11-30 11:43 UTC 

[dpdk-test-report] |FAILURE| pw31793 [PATCH 09/11] net/vhostpci: add TX function
 2017-11-30 11:43 UTC 

[dpdk-test-report] |FAILURE| pw31795 [PATCH 11/11] net/vhostpci: update release note
 2017-11-30 11:28 UTC 

[dpdk-test-report] |FAILURE| pw31791 [PATCH 07/11] net/vhostpci: get remote memory region and vring info
 2017-11-30 11:28 UTC 

page:  |  | latest

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).