DPDK patches and discussions
 help / color / mirror / Atom feed
From: Ferruh Yigit <ferruh.yigit@intel.com>
To: Rasesh Mody <rasesh.mody@cavium.com>, dev@dpdk.org
Cc: Dept-EngDPDKDev@cavium.com
Subject: Re: [dpdk-dev] [PATCH 0/9] net/qede: update PMD to 2.5.1.1
Date: Thu, 29 Jun 2017 13:16:28 +0100	[thread overview]
Message-ID: <c92932ff-dee9-921c-40bc-05119d3de3d5@intel.com> (raw)
In-Reply-To: <1498729889-21524-1-git-send-email-rasesh.mody@cavium.com>

On 6/29/2017 10:51 AM, Rasesh Mody wrote:
> Hi,
> 
> This patch set contains minor enhancements and bug fixes for QEDE PMD.
> It updates the driver version to 2.5.1.1. The patch set is tested
> against dpdk-next-net.
> 
> Thanks!
> Rasesh
> 
> Harish Patil (3):
>   net/qede: fix DMA memory leak
>   net/qede: add notifying HW errors
>   net/qede: limit ring size to 32k
> 
> Rasesh Mody (6):
>   net/qede: comments traces and format changes
>   net/qede: change debug verbosity of PMD messages
>   net/qede: set mdump flag
>   net/qede: add missing check for VNI
>   net/qede: use newer packet mbuf allocate API
>   net/qede: update PMD version to 2.5.1.1

Getting following build error [1] for i686 target.

Qede feature document only claims x86_64 support, but driver not
disabled in other config files. Is driver supports 32bits arch?

Can you please update config and/or features document to reflect actual
support status?

Thanks,
ferruh


[1]
In file included from/dpdk/drivers/net/qede/base/ecore.h:47:0,
                 from.../dpdk/drivers/net/qede/base/bcm_osal.c:13:
.../dpdk/drivers/net/qede/base/bcm_osal.c: In function
‘osal_dma_alloc_coherent’:
.../dpdk/drivers/net/qede/base/../qede_logs.h:51:4: error: format ‘%lx’
expects argument of type ‘long unsigned int’, but argument 8 has type
‘unsigned int’ [-Werror=format=]
    "[%s:%d(%s)]" fmt, \
    ^
.../dpdk/drivers/net/qede/base/bcm_osal.c:149:2: note: in expansion of
macro ‘DP_VERBOSE’
  DP_VERBOSE(p_dev, ECORE_MSG_SP,
  ^~~~~~~~~~
.../dpdk/drivers/net/qede/base/bcm_osal.c:150:46: note: format string is
defined here
      "Allocated dma memory size=%zu phys=0x%lx"
                                            ~~^
                                            %x
In file included from.../dpdk/drivers/net/qede/base/ecore.h:47:0,
                 from.../dpdk/drivers/net/qede/base/bcm_osal.c:13:
.../dpdk/drivers/net/qede/base/bcm_osal.c: In function
‘osal_dma_alloc_coherent_aligned’:
.../dpdk/drivers/net/qede/base/../qede_logs.h:51:4: error: format ‘%lx’
expects argument of type ‘long unsigned int’, but argument 8 has type
‘unsigned int’ [-Werror=format=]
    "[%s:%d(%s)]" fmt, \
    ^
.../dpdk/drivers/net/qede/base/bcm_osal.c:187:2: note: in expansion of
macro ‘DP_VERBOSE’
  DP_VERBOSE(p_dev, ECORE_MSG_SP,
  ^~~~~~~~~~
.../dpdk/drivers/net/qede/base/bcm_osal.c:188:54: note: format string is
defined here
      "Allocated aligned dma memory size=%zu phys=0x%lx"
                                                    ~~^
                                                    %x

  parent reply	other threads:[~2017-06-29 12:16 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-29  9:51 Rasesh Mody
2017-06-29  9:51 ` [dpdk-dev] [PATCH 1/9] net/qede: fix DMA memory leak Rasesh Mody
2017-06-29  9:51 ` [dpdk-dev] [PATCH 2/9] net/qede: add notifying HW errors Rasesh Mody
2017-06-29  9:51 ` [dpdk-dev] [PATCH 3/9] net/qede: limit ring size to 32k Rasesh Mody
2017-06-29  9:51 ` [dpdk-dev] [PATCH 4/9] net/qede: comments traces and format changes Rasesh Mody
2017-06-29  9:51 ` [dpdk-dev] [PATCH 5/9] net/qede: change debug verbosity of PMD messages Rasesh Mody
2017-06-29  9:51 ` [dpdk-dev] [PATCH 6/9] net/qede: set mdump flag Rasesh Mody
2017-06-29  9:51 ` [dpdk-dev] [PATCH 7/9] net/qede: add missing check for VNI Rasesh Mody
2017-06-29  9:51 ` [dpdk-dev] [PATCH 8/9] net/qede: use newer packet mbuf allocate API Rasesh Mody
2017-06-29 12:55   ` Ferruh Yigit
2017-07-01 19:34     ` Mody, Rasesh
2017-06-29  9:51 ` [dpdk-dev] [PATCH 9/9] net/qede: update PMD version to 2.5.1.1 Rasesh Mody
2017-06-29 12:16 ` Ferruh Yigit [this message]
2017-07-01 19:29 ` [dpdk-dev] [PATCH v2 0/8] net/qede: update PMD " Rasesh Mody
2017-07-05 10:01   ` Ferruh Yigit
2017-07-08 18:35     ` Mody, Rasesh
2017-07-01 19:29 ` [dpdk-dev] [PATCH v2 1/8] net/qede: fix DMA memory leak Rasesh Mody
2017-07-01 19:29 ` [dpdk-dev] [PATCH v2 2/8] net/qede: add notifying HW errors Rasesh Mody
2017-07-01 19:29 ` [dpdk-dev] [PATCH v2 3/8] net/qede: limit ring size to 32k Rasesh Mody
2017-07-01 19:29 ` [dpdk-dev] [PATCH v2 4/8] net/qede: comments traces and format changes Rasesh Mody
2017-07-01 19:29 ` [dpdk-dev] [PATCH v2 5/8] net/qede: change debug verbosity of PMD messages Rasesh Mody
2017-07-01 19:30 ` [dpdk-dev] [PATCH v2 6/8] net/qede: set mdump flag Rasesh Mody
2017-07-01 19:30 ` [dpdk-dev] [PATCH v2 7/8] net/qede: add missing check for VNI Rasesh Mody
2017-07-03 10:08   ` Ferruh Yigit
2017-07-01 19:30 ` [dpdk-dev] [PATCH v2 8/8] net/qede: update PMD version to 2.5.1.1 Rasesh Mody
2017-07-03 10:06   ` Ferruh Yigit
2017-07-05  9:57     ` Ferruh Yigit

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=c92932ff-dee9-921c-40bc-05119d3de3d5@intel.com \
    --to=ferruh.yigit@intel.com \
    --cc=Dept-EngDPDKDev@cavium.com \
    --cc=dev@dpdk.org \
    --cc=rasesh.mody@cavium.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).