patches for DPDK stable branches
 help / color / mirror / Atom feed
* Re: [dpdk-stable] [PATCH] drivers: fix the event dependency on crypto
  2020-03-05 12:04 [dpdk-stable] [PATCH] drivers: fix the event dependency on crypto Hemant Agrawal
@ 2020-03-05  8:04 ` David Marchand
  2020-03-05 13:56   ` David Marchand
  0 siblings, 1 reply; 3+ messages in thread
From: David Marchand @ 2020-03-05  8:04 UTC (permalink / raw)
  To: Hemant Agrawal; +Cc: dev, Yigit, Ferruh, dpdk stable

On Thu, Mar 5, 2020 at 7:32 AM Hemant Agrawal <hemant.agrawal@nxp.com> wrote:
>
> Since the introduction of crypto event adapters, event drivers
> have dependencies on crypto drivers.
>
> /usr/bin/ld: cannot find -lrte_pmd_dpaa_sec
> collect2: error: ld returned 1 exit status
> make[9]: *** [.../mk/rte.lib.mk:100:
>         librte_pmd_dpaa_event.so.20.0.2] Error 1
>
> Fixes: b0f66a68ca74 ("event/dpaa: support crypto adapter")
> Fixes: 3721c39f405a ("event/dpaa2: support crypto adapter")
> Cc: stable@dpdk.org
>

Reported-by: David Marchand <david.marchand@redhat.com>

> Suggested-by: Ferruh Yigit <ferruh.yigit@intel.com>
> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> ---
>  drivers/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/Makefile b/drivers/Makefile
> index 46374ca69..c70bdf9cc 100644
> --- a/drivers/Makefile
> +++ b/drivers/Makefile
> @@ -21,7 +21,7 @@ DEPDIRS-compress := bus mempool
>  DIRS-$(CONFIG_RTE_LIBRTE_VHOST) += vdpa
>  DEPDIRS-vdpa := common bus mempool
>  DIRS-$(CONFIG_RTE_LIBRTE_EVENTDEV) += event
> -DEPDIRS-event := common bus mempool net
> +DEPDIRS-event := common bus mempool net crypto
>  DIRS-$(CONFIG_RTE_LIBRTE_RAWDEV) += raw
>  DEPDIRS-raw := common bus mempool net event

Acked-by: David Marchand <david.marchand@redhat.com>


-- 
David Marchand


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [dpdk-stable] [PATCH] drivers: fix the event dependency on crypto
@ 2020-03-05 12:04 Hemant Agrawal
  2020-03-05  8:04 ` David Marchand
  0 siblings, 1 reply; 3+ messages in thread
From: Hemant Agrawal @ 2020-03-05 12:04 UTC (permalink / raw)
  To: dev; +Cc: ferruh.yigit, stable, Hemant Agrawal

Since the introduction of crypto event adapters, event drivers
have dependencies on crypto drivers.

/usr/bin/ld: cannot find -lrte_pmd_dpaa_sec
collect2: error: ld returned 1 exit status
make[9]: *** [.../mk/rte.lib.mk:100:
	librte_pmd_dpaa_event.so.20.0.2] Error 1

Fixes: b0f66a68ca74 ("event/dpaa: support crypto adapter")
Fixes: 3721c39f405a ("event/dpaa2: support crypto adapter")
Cc: stable@dpdk.org

Suggested-by: Ferruh Yigit <ferruh.yigit@intel.com>
Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
---
 drivers/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/Makefile b/drivers/Makefile
index 46374ca69..c70bdf9cc 100644
--- a/drivers/Makefile
+++ b/drivers/Makefile
@@ -21,7 +21,7 @@ DEPDIRS-compress := bus mempool
 DIRS-$(CONFIG_RTE_LIBRTE_VHOST) += vdpa
 DEPDIRS-vdpa := common bus mempool
 DIRS-$(CONFIG_RTE_LIBRTE_EVENTDEV) += event
-DEPDIRS-event := common bus mempool net
+DEPDIRS-event := common bus mempool net crypto
 DIRS-$(CONFIG_RTE_LIBRTE_RAWDEV) += raw
 DEPDIRS-raw := common bus mempool net event
 
-- 
2.17.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-stable] [PATCH] drivers: fix the event dependency on crypto
  2020-03-05  8:04 ` David Marchand
@ 2020-03-05 13:56   ` David Marchand
  0 siblings, 0 replies; 3+ messages in thread
From: David Marchand @ 2020-03-05 13:56 UTC (permalink / raw)
  To: Hemant Agrawal; +Cc: dev, Yigit, Ferruh, dpdk stable

On Thu, Mar 5, 2020 at 9:04 AM David Marchand <david.marchand@redhat.com> wrote:
> On Thu, Mar 5, 2020 at 7:32 AM Hemant Agrawal <hemant.agrawal@nxp.com> wrote:
> >
> > Since the introduction of crypto event adapters, event drivers
> > have dependencies on crypto drivers.
> >
> > /usr/bin/ld: cannot find -lrte_pmd_dpaa_sec
> > collect2: error: ld returned 1 exit status
> > make[9]: *** [.../mk/rte.lib.mk:100:
> >         librte_pmd_dpaa_event.so.20.0.2] Error 1
> >
> > Fixes: b0f66a68ca74 ("event/dpaa: support crypto adapter")
> > Fixes: 3721c39f405a ("event/dpaa2: support crypto adapter")
> > Cc: stable@dpdk.org
> >
>
> Reported-by: David Marchand <david.marchand@redhat.com>
> > Suggested-by: Ferruh Yigit <ferruh.yigit@intel.com>
> > Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> Acked-by: David Marchand <david.marchand@redhat.com>
>

Applied.


-- 
David Marchand


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-03-05 13:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-05 12:04 [dpdk-stable] [PATCH] drivers: fix the event dependency on crypto Hemant Agrawal
2020-03-05  8:04 ` David Marchand
2020-03-05 13:56   ` David Marchand

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).