automatic DPDK test reports
 help / color / mirror / Atom feed
* |WARNING| pw152450-152460 [PATCH v3 01/11] build: add generalized AVX handling for drivers
       [not found] <20250318173505.314529-2-bruce.richardson@intel.com>
@ 2025-03-18 17:10 ` qemudev
  2025-03-18 17:36 ` |SUCCESS| pw152450 " checkpatch
  1 sibling, 0 replies; 2+ messages in thread
From: qemudev @ 2025-03-18 17:10 UTC (permalink / raw)
  To: test-report; +Cc: Bruce Richardson, zhoumin

Test-Label: loongarch-compilation
Test-Status: WARNING
http://dpdk.org/patch/152450

_apply patch failure_

Submitter: Bruce Richardson <bruce.richardson@intel.com>
Date: Tue, 18 Mar 2025 17:34:54 +0000
DPDK git baseline: Repo:dpdk
  Branch: main
  CommitID: 44a86bcf2447d7d914d7195448285aa82eaedcba

Apply patch set 152450-152460 failed:

Checking patch drivers/net/intel/i40e/meson.build...
error: while searching for:

if arch_subdir == 'x86'
    sources += files('i40e_rxtx_vec_sse.c')

    if is_windows and cc.get_id() != 'clang'
        cflags += ['-fno-asynchronous-unwind-tables']
    endif

    i40e_avx2_lib = static_library('i40e_avx2_lib',
            'i40e_rxtx_vec_avx2.c',
            dependencies: [static_rte_ethdev, static_rte_kvargs, static_rte_hash],
            include_directories: includes,
            c_args: [cflags, cc_avx2_flags])
    objs += i40e_avx2_lib.extract_objects('i40e_rxtx_vec_avx2.c')

    if cc_has_avx512
        cflags += ['-DCC_AVX512_SUPPORT']
        avx512_args = cflags + cc_avx512_flags
        if cc.has_argument('-march=skylake-avx512')
            avx512_args += '-march=skylake-avx512'
            if cc.has_argument('-Wno-overriding-option')
                avx512_args += '-Wno-overriding-option'
            endif
        endif
        i40e_avx512_lib = static_library('i40e_avx512_lib',
                'i40e_rxtx_vec_avx512.c',
                dependencies: [static_rte_ethdev,
                    static_rte_kvargs, static_rte_hash],
                include_directories: includes,
                c_args: avx512_args)
        objs += i40e_avx512_lib.extract_objects('i40e_rxtx_vec_avx512.c')
    endif
elif arch_subdir == 'ppc'
       sources += files('i40e_rxtx_vec_altivec.c')
elif arch_subdir == 'arm'

error: patch failed: drivers/net/intel/i40e/meson.build:40
error: drivers/net/intel/i40e/meson.build: patch does not apply
Checking patch drivers/net/intel/iavf/meson.build...
error: while searching for:

if arch_subdir == 'x86'
    sources += files('iavf_rxtx_vec_sse.c')

    if is_windows and cc.get_id() != 'clang'
        cflags += ['-fno-asynchronous-unwind-tables']
    endif

    iavf_avx2_lib = static_library('iavf_avx2_lib',
            'iavf_rxtx_vec_avx2.c',
            dependencies: [static_rte_ethdev],
            include_directories: includes,
            c_args: [cflags, cc_avx2_flags])
    objs += iavf_avx2_lib.extract_objects('iavf_rxtx_vec_avx2.c')

    if cc_has_avx512
        cflags += ['-DCC_AVX512_SUPPORT']
        avx512_args = cflags + cc_avx512_flags
        if cc.has_argument('-march=skylake-avx512')
            avx512_args += '-march=skylake-avx512'
            if cc.has_argument('-Wno-overriding-option')
                avx512_args += '-Wno-overriding-option'
            endif
        endif
        iavf_avx512_lib = static_library('iavf_avx512_lib',
                'iavf_rxtx_vec_avx512.c',
                dependencies: [static_rte_ethdev],
                include_directories: includes,
                c_args: avx512_args)
        objs += iavf_avx512_lib.extract_objects('iavf_rxtx_vec_avx512.c')
    endif
elif arch_subdir == 'arm'
    sources += files('iavf_rxtx_vec_neon.c')
endif

error: patch failed: drivers/net/intel/iavf/meson.build:28
error: drivers/net/intel/iavf/meson.build: patch does not apply
Checking patch drivers/net/intel/ice/meson.build...
error: while searching for:

if arch_subdir == 'x86'
    sources += files('ice_rxtx_vec_sse.c')

    if is_windows and cc.get_id() != 'clang'
        cflags += ['-fno-asynchronous-unwind-tables']
    endif

    ice_avx2_lib = static_library('ice_avx2_lib',
            'ice_rxtx_vec_avx2.c',
            dependencies: [static_rte_ethdev, static_rte_hash],
            include_directories: includes,
            c_args: [cflags, cc_avx2_flags])
    objs += ice_avx2_lib.extract_objects('ice_rxtx_vec_avx2.c')

    if cc_has_avx512
        cflags += ['-DCC_AVX512_SUPPORT']
        avx512_args = cflags + cc_avx512_flags
        if cc.has_argument('-march=skylake-avx512')
            avx512_args += '-march=skylake-avx512'
            if cc.has_argument('-Wno-overriding-option')
                avx512_args += '-Wno-overriding-option'
            endif
        endif
        ice_avx512_lib = static_library('ice_avx512_lib',
                'ice_rxtx_vec_avx512.c',
                dependencies: [static_rte_ethdev, static_rte_hash],
                include_directories: includes,
                c_args: avx512_args)
        objs += ice_avx512_lib.extract_objects('ice_rxtx_vec_avx512.c')
    endif
endif

sources += files(

error: patch failed: drivers/net/intel/ice/meson.build:34
error: drivers/net/intel/ice/meson.build: patch does not apply
Checking patch drivers/net/intel/idpf/meson.build...


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

* |SUCCESS| pw152450 [PATCH v3 01/11] build: add generalized AVX handling for drivers
       [not found] <20250318173505.314529-2-bruce.richardson@intel.com>
  2025-03-18 17:10 ` |WARNING| pw152450-152460 [PATCH v3 01/11] build: add generalized AVX handling for drivers qemudev
@ 2025-03-18 17:36 ` checkpatch
  1 sibling, 0 replies; 2+ messages in thread
From: checkpatch @ 2025-03-18 17:36 UTC (permalink / raw)
  To: test-report

Test-Label: checkpatch
Test-Status: SUCCESS
http://dpdk.org/patch/152450

_coding style OK_



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

end of thread, other threads:[~2025-03-18 17:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20250318173505.314529-2-bruce.richardson@intel.com>
2025-03-18 17:10 ` |WARNING| pw152450-152460 [PATCH v3 01/11] build: add generalized AVX handling for drivers qemudev
2025-03-18 17:36 ` |SUCCESS| pw152450 " checkpatch

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