automatic DPDK test reports
 help / color / mirror / Atom feed
From: dpdklab@iol.unh.edu
To: test-report@dpdk.org
Cc: dpdk-test-reports@iol.unh.edu
Subject: |WARNING| pw127660 [PATCH] [v1] drivers/cnxk: improve the build time for non arm64 build
Date: Mon, 29 May 2023 03:01:16 -0700 (PDT)	[thread overview]
Message-ID: <647477ec.050a0220.8c388.79adSMTPIN_ADDED_MISSING@mx.google.com> (raw)

Test-Label: iol-testing
Test-Status: WARNING
http://dpdk.org/patch/127660

_apply patch failure_

Submitter: Jerin Jacob Kollanukkaran <jerinj@marvell.com>
Date: Monday, May 29 2023 09:23:12 
Applied on: CommitID:c9df59bcc9bec67783de98486879594e52bdc418
Apply patch set 127660 failed:

Checking patch drivers/event/cnxk/cn10k_eventdev.c...
Checking patch drivers/event/cnxk/cn9k_eventdev.c...
Hunk #1 succeeded at 325 (offset 16 lines).
Hunk #2 succeeded at 679 (offset 16 lines).
Checking patch drivers/event/cnxk/meson.build...
error: while searching for:
sources += files(
        'cn9k_eventdev.c',
        'cn9k_worker.c',
        'deq/cn9k/deq_0_15_burst.c',
        'deq/cn9k/deq_16_31_burst.c',
        'deq/cn9k/deq_32_47_burst.c',

error: patch failed: drivers/event/cnxk/meson.build:31
error: while searching for:
        'tx/cn9k/tx_112_127_dual_seg.c',
)
endif

if soc_type == 'cn10k' or soc_type == 'all'
sources += files(
        'cn10k_eventdev.c',
        'cn10k_worker.c',
        'deq/cn10k/deq_0_15_burst.c',
        'deq/cn10k/deq_16_31_burst.c',
        'deq/cn10k/deq_32_47_burst.c',

error: patch failed: drivers/event/cnxk/meson.build:330
error: while searching for:
        'tx/cn10k/tx_112_127_seg.c',
)
endif

extra_flags = ['-flax-vector-conversions', '-Wno-strict-aliasing']
foreach flag: extra_flags

error: patch failed: drivers/event/cnxk/meson.build:484
Checking patch drivers/net/cnxk/cn10k_rx_select.c...
Hunk #3 succeeded at 111 (offset -1 lines).
Checking patch drivers/net/cnxk/cn10k_tx_select.c...
Checking patch drivers/net/cnxk/cn9k_rx_select.c...
Checking patch drivers/net/cnxk/cn9k_tx_select.c...
Checking patch drivers/net/cnxk/meson.build...
Hunk #1 succeeded at 34 (offset -11 lines).
error: while searching for:
        'tx/cn9k/tx_112_127_vec_mseg.c',
)
endif

if soc_type == 'cn10k' or soc_type == 'all'
# CN10K

error: patch failed: drivers/net/cnxk/meson.build:115
Hunk #3 succeeded at 114 (offset -14 lines).
error: while searching for:
        'tx/cn10k/tx_112_127_vec_mseg.c',
)
endif

deps += ['bus_pci', 'cryptodev', 'eventdev', 'security']
deps += ['common_cnxk', 'mempool_cnxk']

error: patch failed: drivers/net/cnxk/meson.build:196
Applied patch drivers/event/cnxk/cn10k_eventdev.c cleanly.
Applied patch drivers/event/cnxk/cn9k_eventdev.c cleanly.
Applying patch drivers/event/cnxk/meson.build with 3 rejects...
Rejected hunk #1.
Rejected hunk #2.
Rejected hunk #3.
Applied patch drivers/net/cnxk/cn10k_rx_select.c cleanly.
Applied patch drivers/net/cnxk/cn10k_tx_select.c cleanly.
Applied patch drivers/net/cnxk/cn9k_rx_select.c cleanly.
Applied patch drivers/net/cnxk/cn9k_tx_select.c cleanly.
Applying patch drivers/net/cnxk/meson.build with 2 rejects...
Hunk #1 applied cleanly.
Rejected hunk #2.
Hunk #3 applied cleanly.
Rejected hunk #4.
hint: Use 'git am --show-current-patch' to see the failed patch
diff a/drivers/event/cnxk/meson.build b/drivers/event/cnxk/meson.build	(rejected hunks)
@@ -31,6 +31,10 @@ if soc_type == 'cn9k' or soc_type == 'all'
 sources += files(
         'cn9k_eventdev.c',
         'cn9k_worker.c',
+)
+
+if host_machine.cpu_family().startswith('aarch')
+sources += files(
         'deq/cn9k/deq_0_15_burst.c',
         'deq/cn9k/deq_16_31_burst.c',
         'deq/cn9k/deq_32_47_burst.c',
@@ -330,11 +334,16 @@ sources += files(
         'tx/cn9k/tx_112_127_dual_seg.c',
 )
 endif
+endif
 
 if soc_type == 'cn10k' or soc_type == 'all'
 sources += files(
         'cn10k_eventdev.c',
         'cn10k_worker.c',
+)
+
+if host_machine.cpu_family().startswith('aarch')
+sources += files(
         'deq/cn10k/deq_0_15_burst.c',
         'deq/cn10k/deq_16_31_burst.c',
         'deq/cn10k/deq_32_47_burst.c',
@@ -484,6 +493,7 @@ sources += files(
         'tx/cn10k/tx_112_127_seg.c',
 )
 endif
+endif
 
 extra_flags = ['-flax-vector-conversions', '-Wno-strict-aliasing']
 foreach flag: extra_flags
diff a/drivers/net/cnxk/meson.build b/drivers/net/cnxk/meson.build	(rejected hunks)
@@ -115,6 +116,7 @@ sources += files(
         'tx/cn9k/tx_112_127_vec_mseg.c',
 )
 endif
+endif
 
 if soc_type == 'cn10k' or soc_type == 'all'
 # CN10K
@@ -196,6 +199,7 @@ sources += files(
         'tx/cn10k/tx_112_127_vec_mseg.c',
 )
 endif
+endif
 
 deps += ['bus_pci', 'cryptodev', 'eventdev', 'security']
 deps += ['common_cnxk', 'mempool_cnxk']

https://lab.dpdk.org/results/dashboard/patchsets/26434/

UNH-IOL DPDK Community Lab

             reply	other threads:[~2023-05-29 10:01 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-29 10:01 dpdklab [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-06-11 18:27 dpdklab
     [not found] <20230529092312.3855432-1-jerinj@marvell.com>
2023-05-29  9:25 ` |WARNING| pw127660 [PATCH v1] " qemudev

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=647477ec.050a0220.8c388.79adSMTPIN_ADDED_MISSING@mx.google.com \
    --to=dpdklab@iol.unh.edu \
    --cc=dpdk-test-reports@iol.unh.edu \
    --cc=test-report@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).