DPDK patches and discussions
 help / color / mirror / Atom feed
From: Akhil Goyal <akhil.goyal@nxp.com>
To: Nicolas Chautru <nicolas.chautru@intel.com>,
	"dev@dpdk.org" <dev@dpdk.org>
Cc: "bruce.richardson@intel.com" <bruce.richardson@intel.com>
Subject: Re: [dpdk-dev] [PATCH v4 00/11] drivers/baseband: PMD for FPGA 5GNR FEC
Date: Sat, 18 Apr 2020 07:09:25 +0000	[thread overview]
Message-ID: <VI1PR04MB3168A160CEE3BE4B7A094EFFE6D60@VI1PR04MB3168.eurprd04.prod.outlook.com> (raw)
In-Reply-To: <1587179056-133714-1-git-send-email-nicolas.chautru@intel.com>

Hi Nicolas,

I am seeing some compilation issues again on individual patches. Please be careful. This is causing a lot of duplicate effort.

/home/akhil/up/dpdk-next-crypto/drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c: In function âdequeue_ldpc_enc_one_op_cbâ:
/home/akhil/up/dpdk-next-crypto/drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c:984:76: error: unused parameter âopâ [-Werror=unused-parameter]
 dequeue_ldpc_enc_one_op_cb(struct fpga_queue *q, struct rte_bbdev_enc_op **op,
                                                                            ^~
  LD librte_pmd_octeontx_zip.so.20.0.2
  LD librte_pmd_null_crypto.so.20.0.2
  INSTALL-LIB librte_pmd_octeontx_zip.so.20.0.2
== Build drivers/vdpa
  INSTALL-LIB librte_pmd_null_crypto.so.20.0.2
== Build drivers/crypto/dpaa2_sec
  LD librte_pmd_axgbe.so.20.0.2
/home/akhil/up/dpdk-next-crypto/drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c: At top level:
cc1: error: unrecognized command line option â-Wno-address-of-packed-memberâ [-Werror]
cc1: all warnings being treated as errors
/home/akhil/up/dpdk-next-crypto/mk/internal/rte.compile-pre.mk:114: recipe for target 'rte_fpga_5gnr_fec.o' failed
make[6]: *** [rte_fpga_5gnr_fec.o] Error 1
/home/akhil/up/dpdk-next-crypto/mk/rte.subdir.mk:35: recipe for target 'fpga_5gnr_fec' failed
make[5]: *** [fpga_5gnr_fec] Error 2
/home/akhil/up/dpdk-next-crypto/mk/rte.subdir.mk:35: recipe for target 'baseband' failed
make[4]: *** [baseband] Error 2
make[4]: *** Waiting for unfinished jobs....


Apart from the above compilation issue. Please make some other changes. I was doing this myself but since I am asking another version, please include following changes.
1. Rebase your release note just below the other baseband PMD change.
2. remove DALLOW_EXPERIMENTAL_API from Makefile
3. remove allow_experimental_apis = true from meson.build
4. header installation in meson.build is not correct
-headers = files(
-       'rte_pmd_fpga_5gnr_fec.h',
-)
+install_headers('rte_pmd_fpga_5gnr_fec.h')

Please do the above changes and make sure you check meson build/clang/gcc shared/static builds on all patches separately. I don't want to spend more time on this.

Regards,
Akhil
> 
> v4: Fix incremental patch build and expose PMD header file to meson.
> v3: Incremental changes from reviews : file name change, moving few inline
> function to .h, adding missing inline, doxygen markup fix.
> 
> Adding new baseband PMD for FPGA 5GNR FEC implementation.
> 
> 
> Nicolas Chautru (11):
>   drivers/baseband: add PMD for FPGA 5GNR FEC
>   baseband/fpga_5gnr_fec: add register definition file
>   baseband/fpga_5gnr_fec: add info_get function
>   baseband/fpga_5gnr_fec: add queue configuration
>   baseband/fpga_5gnr_fec: add LDPC processing functions
>   baseband/fpga_5gnr_fec: add HW error capture
>   baseband/fpga_5gnr_fec: add debug functionality
>   baseband/fpga_5gnr_fec: add configure function
>   baseband/fpga_5gnr_fec: add harq loopback capability
>   baseband/fpga_5gnr_fec: add interrupt support
>   doc: add feature matrix table for bbdev devices
> 
>  .gitignore                                         |    1 +
>  app/test-bbdev/Makefile                            |    3 +
>  app/test-bbdev/meson.build                         |    3 +
>  app/test-bbdev/test_bbdev_perf.c                   |   57 +
>  config/common_base                                 |    5 +
>  doc/guides/bbdevs/features/default.ini             |   16 +
>  doc/guides/bbdevs/features/fpga_5gnr_fec.ini       |   11 +
>  doc/guides/bbdevs/features/fpga_lte_fec.ini        |   10 +
>  doc/guides/bbdevs/features/mbc.ini                 |   14 +
>  doc/guides/bbdevs/features/null.ini                |    7 +
>  doc/guides/bbdevs/features/turbo_sw.ini            |   11 +
>  doc/guides/bbdevs/fpga_5gnr_fec.rst                |  297 +++
>  doc/guides/bbdevs/index.rst                        |    2 +
>  doc/guides/bbdevs/overview.rst                     |   15 +
>  doc/guides/conf.py                                 |    5 +
>  doc/guides/rel_notes/release_20_05.rst             |    5 +
>  drivers/baseband/Makefile                          |    2 +
>  drivers/baseband/fpga_5gnr_fec/Makefile            |   29 +
>  drivers/baseband/fpga_5gnr_fec/fpga_5gnr_fec.h     |  388 ++++
>  drivers/baseband/fpga_5gnr_fec/meson.build         |   10 +
>  drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c | 2186
> ++++++++++++++++++++
>  .../rte_pmd_bbdev_fpga_5gnr_fec_version.map        |   10 +
>  .../baseband/fpga_5gnr_fec/rte_pmd_fpga_5gnr_fec.h |   74 +
>  drivers/baseband/meson.build                       |    2 +-
>  mk/rte.app.mk                                      |    1 +
>  25 files changed, 3163 insertions(+), 1 deletion(-)
>  create mode 100644 doc/guides/bbdevs/features/default.ini
>  create mode 100644 doc/guides/bbdevs/features/fpga_5gnr_fec.ini
>  create mode 100644 doc/guides/bbdevs/features/fpga_lte_fec.ini
>  create mode 100644 doc/guides/bbdevs/features/mbc.ini
>  create mode 100644 doc/guides/bbdevs/features/null.ini
>  create mode 100644 doc/guides/bbdevs/features/turbo_sw.ini
>  create mode 100644 doc/guides/bbdevs/fpga_5gnr_fec.rst
>  create mode 100644 doc/guides/bbdevs/overview.rst
>  create mode 100644 drivers/baseband/fpga_5gnr_fec/Makefile
>  create mode 100644 drivers/baseband/fpga_5gnr_fec/fpga_5gnr_fec.h
>  create mode 100644 drivers/baseband/fpga_5gnr_fec/meson.build
>  create mode 100644 drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c
>  create mode 100644
> drivers/baseband/fpga_5gnr_fec/rte_pmd_bbdev_fpga_5gnr_fec_version.map
>  create mode 100644
> drivers/baseband/fpga_5gnr_fec/rte_pmd_fpga_5gnr_fec.h
> 
> --
> 1.8.3.1


  parent reply	other threads:[~2020-04-18  7:09 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-18  3:04 Nicolas Chautru
2020-04-18  3:04 ` [dpdk-dev] [PATCH v4 01/11] drivers/baseband: add " Nicolas Chautru
2020-04-18  3:04 ` [dpdk-dev] [PATCH v4 02/11] baseband/fpga_5gnr_fec: add register definition file Nicolas Chautru
2020-04-18  3:04 ` [dpdk-dev] [PATCH v4 03/11] baseband/fpga_5gnr_fec: add info_get function Nicolas Chautru
2020-04-18  3:04 ` [dpdk-dev] [PATCH v4 04/11] baseband/fpga_5gnr_fec: add queue configuration Nicolas Chautru
2020-04-18  3:04 ` [dpdk-dev] [PATCH v4 05/11] baseband/fpga_5gnr_fec: add LDPC processing functions Nicolas Chautru
2020-04-18  3:04 ` [dpdk-dev] [PATCH v4 06/11] baseband/fpga_5gnr_fec: add HW error capture Nicolas Chautru
2020-04-18  3:04 ` [dpdk-dev] [PATCH v4 07/11] baseband/fpga_5gnr_fec: add debug functionality Nicolas Chautru
2020-04-18  3:04 ` [dpdk-dev] [PATCH v4 08/11] baseband/fpga_5gnr_fec: add configure function Nicolas Chautru
2020-04-18  3:04 ` [dpdk-dev] [PATCH v4 09/11] baseband/fpga_5gnr_fec: add harq loopback capability Nicolas Chautru
2020-04-18  3:04 ` [dpdk-dev] [PATCH v4 10/11] baseband/fpga_5gnr_fec: add interrupt support Nicolas Chautru
2020-04-18  3:04 ` [dpdk-dev] [PATCH v4 11/11] doc: add feature matrix table for bbdev devices Nicolas Chautru
2020-04-18  7:09 ` Akhil Goyal [this message]
2020-04-18 20:51   ` [dpdk-dev] [PATCH v4 00/11] drivers/baseband: PMD for FPGA 5GNR FEC Chautru, Nicolas

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=VI1PR04MB3168A160CEE3BE4B7A094EFFE6D60@VI1PR04MB3168.eurprd04.prod.outlook.com \
    --to=akhil.goyal@nxp.com \
    --cc=bruce.richardson@intel.com \
    --cc=dev@dpdk.org \
    --cc=nicolas.chautru@intel.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).