[dpdk-dev] [PATCH] mk: --no-as-needed by default for linux exec-env

2014-11-29 Thread Thomas Monjalon
> > Do you agree to add this comment (before applying this *needed* patch)? > > > > +# Workaround lack of DT_NEEDED entry > > > Acked-by: Neil Horman Applied with above comment and Neil's explanations in commit log. Thanks > We can solve the larger dependency chain issue later if we need to

[dpdk-dev] [PATCH] ixgbe: fix clang compile - remove truncation errors

2014-11-29 Thread Neil Horman
On Fri, Nov 28, 2014 at 03:31:00PM +, Bruce Richardson wrote: > When compiling with clang, errors were being emitted due to truncation > of values when assigning to the tx_offload_mask bit fields. > > dpdk.org/lib/librte_pmd_ixgbe/ixgbe_rxtx.c:404:27: fatal error: implicit > truncation from

[dpdk-dev] [PATCH] enicpd: Warnings and one error when built using clang compiler

2014-11-29 Thread Sujith Sankar (ssujith)
On 29/11/14 4:47 pm, "Thomas Monjalon" wrote: >29/11/2014 07:22, Sujith Sankar : >> Sorry for the typo in the subject. It is enicpmd. > >Actually no, it should be enic. Usually we use enic to denote the kernel mode driver and enicpmd to denote the PMD. But it is alright to follow what?s being

[dpdk-dev] [PATCH] enicpd: Warnings and one error when built using clang compiler

2014-11-29 Thread Sujith Sankar
This patch fixes the warnings and error reported by clang compiler on Linux. Reported-by: Bruce Richardson Signed-off-by: Sujith Sankar --- lib/librte_pmd_enic/enic.h | 40 + lib/librte_pmd_enic/enic_compat.h | 1 +

[dpdk-dev] [PATCH] enicpd: Warnings and one error when built using clang compiler

2014-11-29 Thread Thomas Monjalon
29/11/2014 07:22, Sujith Sankar : > Sorry for the typo in the subject. It is enicpmd. Actually no, it should be enic. For virtio, it is not virtiopmd, for ixgbe, it is not ixgbepmd, etc :) Talking about title, please start with lower case and a verb, e.g. fix build with clang. To have a good

[dpdk-dev] [RFC] Clang errors with bit fields and setting value of ~0.

2014-11-29 Thread Keith Wiles
error: implicit truncation from 'int' to bitfield changes value from -1 to 127 [-Werror,-Wbitfield-constant-conversion] tx_offload_mask.l2_len = ~0; Converted to use correct bit values tx_offload_mask.l2_len = 0x7f;

[dpdk-dev] [PATCH v6 01/10] Channel Manager and Monitor for VM Power Management(Host).

2014-11-29 Thread Neil Horman
On Tue, Nov 25, 2014 at 04:18:02PM +, Pablo de Lara wrote: > From: Alan Carew > > The manager is responsible for adding communications channels to the Monitor > thread, tracking and reporting VM state and employs the libvirt API for > synchronization with the KVM Hypervisor. The manager

[dpdk-dev] [PATCH] mk: --no-as-needed by default for linux exec-env

2014-11-29 Thread Neil Horman
On Fri, Nov 28, 2014 at 04:35:04PM +0100, Thomas Monjalon wrote: > Hi Sergio, Neil, > > Do you agree to add this comment (before applying this *needed* patch)? > > +# Workaround lack of DT_NEEDED entry > Acked-by: Neil Horman We can solve the larger dependency chain issue later if we need to