patches for DPDK stable branches
 help / color / mirror / Atom feed
From: Yongseok Koh <yskoh@mellanox.com>
To: David Christensen <drc@linux.vnet.ibm.com>
Cc: "stable@dpdk.org" <stable@dpdk.org>
Subject: Re: [dpdk-stable] [PATCH 17.11] examples/vm_power_manager: add	conditional compilation for PMD specific code
Date: Thu, 1 Aug 2019 23:57:29 +0000	[thread overview]
Message-ID: <237C4C7B-6E88-455B-A54A-ED961CB2F26E@mellanox.com> (raw)
In-Reply-To: <1563992744-39034-1-git-send-email-drc@linux.vnet.ibm.com>

> On Jul 24, 2019, at 11:25 AM, David Christensen <drc@linux.vnet.ibm.com> wrote:
> 
> Running the devtools/test-build.sh script on IBM Power systems fails
> because the IXGBE_PMD is explicity disabled for Power as an untested
> driver, but the examples/vm_power_manager application has a hard
> dependency on a function call in the IXGBE_PMD.
> 
> Modify the example application so that all dependencies on PMD code
> are conditionally compiled.
> 
> Bugzilla ID: 237
> Fixes: Running test-build.sh fails on ppc_64 due to hard-coded
>       requirement for IXGBE_PMD in examples/vm_power_manager
> 
> Signed-off-by: David Christensen <drc@linux.vnet.ibm.com>
> ---

Acked-by: Yongseok Koh <yskoh@mellanox.com>

applied to stable/17.11

> examples/vm_power_manager/main.c | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
> 
> diff --git a/examples/vm_power_manager/main.c b/examples/vm_power_manager/main.c
> index 399fbdd..2ad6ff6 100644
> --- a/examples/vm_power_manager/main.c
> +++ b/examples/vm_power_manager/main.c
> @@ -58,9 +58,16 @@
> #include "channel_monitor.h"
> #include "power_manager.h"
> #include "vm_power_cli.h"
> +
> +#ifdef RTE_LIBRTE_IXGBE_PMD
> #include <rte_pmd_ixgbe.h>
> +#endif
> +#ifdef RTE_LIBRTE_I40E_PMD
> #include <rte_pmd_i40e.h>
> +#endif
> +#ifdef RTE_LIBRTE_BNXT_PMD
> #include <rte_pmd_bnxt.h>
> +#endif
> 
> #define RX_RING_SIZE 512
> #define TX_RING_SIZE 512
> @@ -324,15 +331,21 @@
> 		for (w = 0; w < MAX_VFS; w++) {
> 			eth.addr_bytes[5] = w + 0xf0;
> 
> +#ifdef RTE_LIBRTE_IXGBE_PMD
> 			if (ret == -ENOTSUP)
> 				ret = rte_pmd_ixgbe_set_vf_mac_addr(portid,
> 						w, &eth);
> +#endif
> +#ifdef RTE_LIBRTE_I40E_PMD
> 			if (ret == -ENOTSUP)
> 				ret = rte_pmd_i40e_set_vf_mac_addr(portid,
> 						w, &eth);
> +#endif
> +#ifdef RTE_LIBRTE_BNXT_PMD
> 			if (ret == -ENOTSUP)
> 				ret = rte_pmd_bnxt_set_vf_mac_addr(portid,
> 						w, &eth);
> +#endif
> 
> 			switch (ret) {
> 			case 0:
> -- 
> 1.8.3.1
> 


      reply	other threads:[~2019-08-01 23:57 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-24 18:25 David Christensen
2019-08-01 23:57 ` Yongseok Koh [this message]

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=237C4C7B-6E88-455B-A54A-ED961CB2F26E@mellanox.com \
    --to=yskoh@mellanox.com \
    --cc=drc@linux.vnet.ibm.com \
    --cc=stable@dpdk.org \
    /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).