[dpdk-dev] [PATCH] librte_log: add function to retrieve log_level

2014-09-14 Thread Matthew Hall
Signed-off-by: Matthew Hall --- lib/librte_eal/common/eal_common_log.c | 7 +++ lib/librte_eal/common/include/rte_log.h | 6 ++ 2 files changed, 13 insertions(+) diff --git a/lib/librte_eal/common/eal_common_log.c b/lib/librte_eal/common/eal_common_log.c index e4df0b9..d979f28 100644 -

[dpdk-dev] [PATCH] librte_log: add function to retrieve log_level

2014-09-14 Thread Matthew Hall
On Sun, Sep 14, 2014 at 01:34:46AM -0700, Matthew Hall wrote: > Signed-off-by: Matthew Hall > --- > lib/librte_eal/common/eal_common_log.c | 7 +++ > lib/librte_eal/common/include/rte_log.h | 6 ++ > 2 files changed, 13 insertions(+) I forgot to mention in the comments, this patch is he

[dpdk-dev] l2fwd mmap memory failed

2014-09-14 Thread jerry
Hi all, The l2fwd sample application starts failed in my environment with 9 2M hugepages set up. It tells me that mmap failed: Cannot allocate memory. Is there a limited max hugepages or memory size for dpdk to mmap EAL memory? Some information as follows: 1. Environment: Host OS: Suse11 Sp

[dpdk-dev] l2fwd mmap memory failed

2014-09-14 Thread Zhang, Jerry
Hi, >-Original Message- >From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of jerry >Sent: Sunday, September 14, 2014 5:01 PM >To: dev at dpdk.org >Cc: luonengjun at huawei.com >Subject: [dpdk-dev] l2fwd mmap memory failed > >Hi all, > >The l2fwd sample application starts failed in my e

[dpdk-dev] [PATCH v2 0/5] support of configurable CRC stripping in VF

2014-09-14 Thread Helin Zhang
To support configurable CRC stripping in both PF host and VF, a new operation and a new structure are added to carry more configurations from VF to PF host. v2 changes: * Put all the renaming and code style fixes into a patch. * Put processing crc stripping configuration in PF host into a single p

[dpdk-dev] [PATCH v2 2/5] i40e: renaming and code style fix

2014-09-14 Thread Helin Zhang
Rename some local variables in i40e_pf.c and i40e_ethdev_vf.c, to express more accurately and briefly. Fix several issues in i40e_pf.c reported by checkpatch.pl. Line warpping for some source lines which has more than 80 characters, and merge lines together for those source lines which does not nee

[dpdk-dev] [PATCH v2 3/5] i40e: support of processing crc stripping config in PF host

2014-09-14 Thread Helin Zhang
To support processing the extra configuration of crc stripping in DPDK PF host, new 'struct i40e_virtchnl_queue_pair_extra_info' and a new virtual channel operation of 'I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES_EX' are added, and also functions are reworked to support configuring VSI queues with or withou

[dpdk-dev] [PATCH v2 5/5] i40evf: support of configurable crc stripping in VF

2014-09-14 Thread Helin Zhang
Configurable crc stripping is supported in DPDK PF host, while not in Linux PF host. Two functions have been defined to talk with the those PF hosts respectively. v2 changes: * Put configuring crc stripping in VF into a single patch. Signed-off-by: Helin Zhang Reviewed-by: Jingjing Wu Reviewed-

[dpdk-dev] [PATCH v2 1/5] config: remove useless i40e items in config files

2014-09-14 Thread Helin Zhang
Remove 'CONFIG_RTE_LIBRTE_I40E_PF_DISABLE_STRIP_CRC' from config files of 'common_bsdapp' and 'common_linuxapp', as nowhere uses it. Signed-off-by: Helin Zhang Reviewed-by: Jingjing Wu Reviewed-by: Jing Chen --- config/common_bsdapp | 1 - config/common_linuxapp | 1 - 2 files changed, 2 del

[dpdk-dev] [PATCH v2 4/5] i40e: set crc stripping in rx queue configuration

2014-09-14 Thread Helin Zhang
It enables/disables the crc stripping in the rx queue contexts, according to the extra configuration carried from VF. v2 changes: * Put setting the crc stripping into a single patch. Signed-off-by: Helin Zhang Reviewed-by: Jingjing Wu Reviewed-by: Jing Chen --- lib/librte_pmd_i40e/i40e_pf.c |