automatic DPDK test reports
 help / color / mirror / Atom feed
From: sys_stv@intel.com
To: test-report@dpdk.org
Cc: xinfengx.zhao@intel.com, zhaoyan.chen@intel.com, peipeix.lu@intel.com
Subject: [dpdk-test-report]  |FAILURE| pw37593[dpdk-dev, v4, 50/70] eal: replace memzone array with fbarray
Date: 10 May 2018 01:15:28 -0700	[thread overview]
Message-ID: <0590c7$1k5cco@orsmga001.jf.intel.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 17394 bytes --]

Test-Label: Intel-compilation
Test-Status: FAILURE
http://dpdk.org/patch/37593

_apply issues_

Submitter: Anatoly Burakov <anatoly.burakov@intel.com>
Date: 2018-04-08 20:18:23
DPDK git baseline:
	Repo:dpdk-master, CommitID: 8ea41438832a360aed2b7ba49fb75e310a2ff1dc
	Repo:dpdk-next-eventdev, CommitID: 640b0d1e510e111694c25145466f37867453837f
	Repo:dpdk-next-net, CommitID: 774c1892c434dba09998ccc76b956feb72224571
	Repo:dpdk-next-crypto, CommitID: 728ca9b0d5abea82cd01dee6645456a9d56215f7
	Repo:dpdk-next-virtio, CommitID: 037c0996bc927342f157426739e0cb63f2db8689

*Repo: dpdk-master
Checking patch drivers/net/ena/Makefile...
error: while searching for:
EXPORT_MAP := rte_pmd_ena_version.map
LIBABIVER := 1

VPATH += $(SRCDIR)/base
#
# all source are stored in SRCS-y

error: patch failed: drivers/net/ena/Makefile:43
error: drivers/net/ena/Makefile: patch does not apply
Checking patch drivers/net/ena/ena_ethdev.c...
error: while searching for:
static inline int ena_cpu_to_node(int cpu)
{
	struct rte_config *config = rte_eal_get_configuration();

	if (likely(cpu < RTE_MAX_MEMZONE))
--
	return NUMA_NO_NODE;
}

static inline void ena_rx_mbuf_prepare(struct rte_mbuf *mbuf,

error: patch failed: drivers/net/ena/ena_ethdev.c:264
error: drivers/net/ena/ena_ethdev.c: patch does not apply
Checking patch lib/librte_eal/bsdapp/eal/eal.c...
error: while searching for:
		}
	}

	if (rte_eal_memory_init() < 0) {
		rte_eal_init_alert("Cannot init memory\n");
--
		rte_eal_init_alert("Cannot init memzone\n");
		rte_errno = ENODEV;
		return -1;
	}

error: patch failed: lib/librte_eal/bsdapp/eal/eal.c:599
error: lib/librte_eal/bsdapp/eal/eal.c: patch does not apply
Checking patch lib/librte_eal/common/eal_common_memzone.c...
error: while searching for:
static inline const struct rte_memzone *
memzone_lookup_thread_unsafe(const char *name)
{
	const struct rte_mem_config *mcfg;
	const struct rte_memzone *mz;
--
}

/* This function will return the greatest free block if a heap has been
 * specified. If no heap has been specified, it will return the heap and

error: patch failed: lib/librte_eal/common/eal_common_memzone.c:28
error: lib/librte_eal/common/eal_common_memzone.c: patch does not apply
Checking patch lib/librte_eal/common/include/rte_eal_memconfig.h...
error: while searching for:
	rte_rwlock_t qlock;   /**< used for tailq operation for thread safe. */
	rte_rwlock_t mplock;  /**< only used by mempool LIB for thread-safe. */

	uint32_t memzone_cnt; /**< Number of allocated memzones */

--
	struct rte_memzone memzone[RTE_MAX_MEMZONE]; /**< Memzone descriptors. */

	struct rte_memseg_list memsegs[RTE_MAX_MEMSEG_LISTS];
	/**< list of dynamic arrays holding memsegs */

error: patch failed: lib/librte_eal/common/include/rte_eal_memconfig.h:58
error: lib/librte_eal/common/include/rte_eal_memconfig.h: patch does not apply
Checking patch lib/librte_eal/common/malloc_heap.c...
error: while searching for:
	if (mcfg == NULL)
		return -1;

	/* add all IOVA-contiguous areas to the heap */
	return rte_memseg_contig_walk(malloc_add_seg, NULL);
}

error: patch failed: lib/librte_eal/common/malloc_heap.c:278
error: lib/librte_eal/common/malloc_heap.c: patch does not apply
Checking patch lib/librte_eal/linuxapp/eal/eal.c...
error: while searching for:
		return -1;
	}
#endif

	if (rte_eal_memory_init() < 0) {
		rte_eal_init_alert("Cannot init memory\n");

error: patch failed: lib/librte_eal/linuxapp/eal/eal.c:858
error: lib/librte_eal/linuxapp/eal/eal.c: patch does not apply
Checking patch test/test/test_memzone.c...
error: while searching for:
	const struct rte_memzone *mz;
	int memzone_cnt_after, memzone_cnt_expected;
	int memzone_cnt_before =
			rte_eal_get_configuration()->mem_config->memzone_cnt;

	memzone1 = rte_memzone_reserve(TEST_MEMZONE_NAME("testzone1"), 100,
				SOCKET_ID_ANY, 0);

error: patch failed: test/test/test_memzone.c:909
error: test/test/test_memzone.c: patch does not apply
*Repo: dpdk-next-eventdev
Checking patch drivers/net/ena/Makefile...
error: while searching for:
EXPORT_MAP := rte_pmd_ena_version.map
LIBABIVER := 1

VPATH += $(SRCDIR)/base
#
# all source are stored in SRCS-y

error: patch failed: drivers/net/ena/Makefile:43
error: drivers/net/ena/Makefile: patch does not apply
Checking patch drivers/net/ena/ena_ethdev.c...
error: while searching for:
static inline int ena_cpu_to_node(int cpu)
{
	struct rte_config *config = rte_eal_get_configuration();

	if (likely(cpu < RTE_MAX_MEMZONE))
--
	return NUMA_NO_NODE;
}

static inline void ena_rx_mbuf_prepare(struct rte_mbuf *mbuf,

error: patch failed: drivers/net/ena/ena_ethdev.c:264
error: drivers/net/ena/ena_ethdev.c: patch does not apply
Checking patch lib/librte_eal/bsdapp/eal/eal.c...
error: while searching for:
		}
	}

	if (rte_eal_memory_init() < 0) {
		rte_eal_init_alert("Cannot init memory\n");
--
		rte_eal_init_alert("Cannot init memzone\n");
		rte_errno = ENODEV;
		return -1;
	}

error: patch failed: lib/librte_eal/bsdapp/eal/eal.c:599
error: lib/librte_eal/bsdapp/eal/eal.c: patch does not apply
Checking patch lib/librte_eal/common/eal_common_memzone.c...
error: while searching for:
static inline const struct rte_memzone *
memzone_lookup_thread_unsafe(const char *name)
{
	const struct rte_mem_config *mcfg;
	const struct rte_memzone *mz;
--
}

/* This function will return the greatest free block if a heap has been
 * specified. If no heap has been specified, it will return the heap and

error: patch failed: lib/librte_eal/common/eal_common_memzone.c:28
error: lib/librte_eal/common/eal_common_memzone.c: patch does not apply
Checking patch lib/librte_eal/common/include/rte_eal_memconfig.h...
error: while searching for:
	rte_rwlock_t qlock;   /**< used for tailq operation for thread safe. */
	rte_rwlock_t mplock;  /**< only used by mempool LIB for thread-safe. */

	uint32_t memzone_cnt; /**< Number of allocated memzones */

--
	struct rte_memzone memzone[RTE_MAX_MEMZONE]; /**< Memzone descriptors. */

	struct rte_memseg_list memsegs[RTE_MAX_MEMSEG_LISTS];
	/**< list of dynamic arrays holding memsegs */

error: patch failed: lib/librte_eal/common/include/rte_eal_memconfig.h:58
error: lib/librte_eal/common/include/rte_eal_memconfig.h: patch does not apply
Checking patch lib/librte_eal/common/malloc_heap.c...
error: while searching for:
	if (mcfg == NULL)
		return -1;

	/* add all IOVA-contiguous areas to the heap */
	return rte_memseg_contig_walk(malloc_add_seg, NULL);
}

error: patch failed: lib/librte_eal/common/malloc_heap.c:278
error: lib/librte_eal/common/malloc_heap.c: patch does not apply
Checking patch lib/librte_eal/linuxapp/eal/eal.c...
error: while searching for:
		return -1;
	}
#endif

	if (rte_eal_memory_init() < 0) {
		rte_eal_init_alert("Cannot init memory\n");

error: patch failed: lib/librte_eal/linuxapp/eal/eal.c:858
error: lib/librte_eal/linuxapp/eal/eal.c: patch does not apply
Checking patch test/test/test_memzone.c...
error: while searching for:
	const struct rte_memzone *mz;
	int memzone_cnt_after, memzone_cnt_expected;
	int memzone_cnt_before =
			rte_eal_get_configuration()->mem_config->memzone_cnt;

	memzone1 = rte_memzone_reserve(TEST_MEMZONE_NAME("testzone1"), 100,
				SOCKET_ID_ANY, 0);

error: patch failed: test/test/test_memzone.c:909
error: test/test/test_memzone.c: patch does not apply
*Repo: dpdk-next-net
Checking patch drivers/net/ena/Makefile...
error: while searching for:
EXPORT_MAP := rte_pmd_ena_version.map
LIBABIVER := 1

VPATH += $(SRCDIR)/base
#
# all source are stored in SRCS-y

error: patch failed: drivers/net/ena/Makefile:43
error: drivers/net/ena/Makefile: patch does not apply
Checking patch drivers/net/ena/ena_ethdev.c...
error: while searching for:
static inline int ena_cpu_to_node(int cpu)
{
	struct rte_config *config = rte_eal_get_configuration();

	if (likely(cpu < RTE_MAX_MEMZONE))
--
	return NUMA_NO_NODE;
}

static inline void ena_rx_mbuf_prepare(struct rte_mbuf *mbuf,

error: patch failed: drivers/net/ena/ena_ethdev.c:264
error: drivers/net/ena/ena_ethdev.c: patch does not apply
Checking patch lib/librte_eal/bsdapp/eal/eal.c...
error: while searching for:
		}
	}

	if (rte_eal_memory_init() < 0) {
		rte_eal_init_alert("Cannot init memory\n");
--
		rte_eal_init_alert("Cannot init memzone\n");
		rte_errno = ENODEV;
		return -1;
	}

error: patch failed: lib/librte_eal/bsdapp/eal/eal.c:599
error: lib/librte_eal/bsdapp/eal/eal.c: patch does not apply
Checking patch lib/librte_eal/common/eal_common_memzone.c...
error: while searching for:
static inline const struct rte_memzone *
memzone_lookup_thread_unsafe(const char *name)
{
	const struct rte_mem_config *mcfg;
	const struct rte_memzone *mz;
--
}

/* This function will return the greatest free block if a heap has been
 * specified. If no heap has been specified, it will return the heap and

error: patch failed: lib/librte_eal/common/eal_common_memzone.c:28
error: lib/librte_eal/common/eal_common_memzone.c: patch does not apply
Checking patch lib/librte_eal/common/include/rte_eal_memconfig.h...
error: while searching for:
	rte_rwlock_t qlock;   /**< used for tailq operation for thread safe. */
	rte_rwlock_t mplock;  /**< only used by mempool LIB for thread-safe. */

	uint32_t memzone_cnt; /**< Number of allocated memzones */

--
	struct rte_memzone memzone[RTE_MAX_MEMZONE]; /**< Memzone descriptors. */

	struct rte_memseg_list memsegs[RTE_MAX_MEMSEG_LISTS];
	/**< list of dynamic arrays holding memsegs */

error: patch failed: lib/librte_eal/common/include/rte_eal_memconfig.h:58
error: lib/librte_eal/common/include/rte_eal_memconfig.h: patch does not apply
Checking patch lib/librte_eal/common/malloc_heap.c...
error: while searching for:
	if (mcfg == NULL)
		return -1;

	/* add all IOVA-contiguous areas to the heap */
	return rte_memseg_contig_walk(malloc_add_seg, NULL);
}

error: patch failed: lib/librte_eal/common/malloc_heap.c:278
error: lib/librte_eal/common/malloc_heap.c: patch does not apply
Checking patch lib/librte_eal/linuxapp/eal/eal.c...
error: while searching for:
		return -1;
	}
#endif

	if (rte_eal_memory_init() < 0) {
		rte_eal_init_alert("Cannot init memory\n");

error: patch failed: lib/librte_eal/linuxapp/eal/eal.c:858
error: lib/librte_eal/linuxapp/eal/eal.c: patch does not apply
Checking patch test/test/test_memzone.c...
error: while searching for:
	const struct rte_memzone *mz;
	int memzone_cnt_after, memzone_cnt_expected;
	int memzone_cnt_before =
			rte_eal_get_configuration()->mem_config->memzone_cnt;

	memzone1 = rte_memzone_reserve(TEST_MEMZONE_NAME("testzone1"), 100,
				SOCKET_ID_ANY, 0);

error: patch failed: test/test/test_memzone.c:909
error: test/test/test_memzone.c: patch does not apply
*Repo: dpdk-next-crypto
Checking patch drivers/net/ena/Makefile...
error: while searching for:
EXPORT_MAP := rte_pmd_ena_version.map
LIBABIVER := 1

VPATH += $(SRCDIR)/base
#
# all source are stored in SRCS-y

error: patch failed: drivers/net/ena/Makefile:43
error: drivers/net/ena/Makefile: patch does not apply
Checking patch drivers/net/ena/ena_ethdev.c...
error: while searching for:
static inline int ena_cpu_to_node(int cpu)
{
	struct rte_config *config = rte_eal_get_configuration();

	if (likely(cpu < RTE_MAX_MEMZONE))
--
	return NUMA_NO_NODE;
}

static inline void ena_rx_mbuf_prepare(struct rte_mbuf *mbuf,

error: patch failed: drivers/net/ena/ena_ethdev.c:264
error: drivers/net/ena/ena_ethdev.c: patch does not apply
Checking patch lib/librte_eal/bsdapp/eal/eal.c...
error: while searching for:
		}
	}

	if (rte_eal_memory_init() < 0) {
		rte_eal_init_alert("Cannot init memory\n");
--
		rte_eal_init_alert("Cannot init memzone\n");
		rte_errno = ENODEV;
		return -1;
	}

error: patch failed: lib/librte_eal/bsdapp/eal/eal.c:599
error: lib/librte_eal/bsdapp/eal/eal.c: patch does not apply
Checking patch lib/librte_eal/common/eal_common_memzone.c...
error: while searching for:
static inline const struct rte_memzone *
memzone_lookup_thread_unsafe(const char *name)
{
	const struct rte_mem_config *mcfg;
	const struct rte_memzone *mz;
--
}

/* This function will return the greatest free block if a heap has been
 * specified. If no heap has been specified, it will return the heap and

error: patch failed: lib/librte_eal/common/eal_common_memzone.c:28
error: lib/librte_eal/common/eal_common_memzone.c: patch does not apply
Checking patch lib/librte_eal/common/include/rte_eal_memconfig.h...
error: while searching for:
	rte_rwlock_t qlock;   /**< used for tailq operation for thread safe. */
	rte_rwlock_t mplock;  /**< only used by mempool LIB for thread-safe. */

	uint32_t memzone_cnt; /**< Number of allocated memzones */

--
	struct rte_memzone memzone[RTE_MAX_MEMZONE]; /**< Memzone descriptors. */

	struct rte_memseg_list memsegs[RTE_MAX_MEMSEG_LISTS];
	/**< list of dynamic arrays holding memsegs */

error: patch failed: lib/librte_eal/common/include/rte_eal_memconfig.h:58
error: lib/librte_eal/common/include/rte_eal_memconfig.h: patch does not apply
Checking patch lib/librte_eal/common/malloc_heap.c...
error: while searching for:
	if (mcfg == NULL)
		return -1;

	/* add all IOVA-contiguous areas to the heap */
	return rte_memseg_contig_walk(malloc_add_seg, NULL);
}

error: patch failed: lib/librte_eal/common/malloc_heap.c:278
error: lib/librte_eal/common/malloc_heap.c: patch does not apply
Checking patch lib/librte_eal/linuxapp/eal/eal.c...
error: while searching for:
		return -1;
	}
#endif

	if (rte_eal_memory_init() < 0) {
		rte_eal_init_alert("Cannot init memory\n");

error: patch failed: lib/librte_eal/linuxapp/eal/eal.c:858
error: lib/librte_eal/linuxapp/eal/eal.c: patch does not apply
Checking patch test/test/test_memzone.c...
error: while searching for:
	const struct rte_memzone *mz;
	int memzone_cnt_after, memzone_cnt_expected;
	int memzone_cnt_before =
			rte_eal_get_configuration()->mem_config->memzone_cnt;

	memzone1 = rte_memzone_reserve(TEST_MEMZONE_NAME("testzone1"), 100,
				SOCKET_ID_ANY, 0);

error: patch failed: test/test/test_memzone.c:909
error: test/test/test_memzone.c: patch does not apply
*Repo: dpdk-next-virtio
Checking patch drivers/net/ena/Makefile...
error: while searching for:
EXPORT_MAP := rte_pmd_ena_version.map
LIBABIVER := 1

VPATH += $(SRCDIR)/base
#
# all source are stored in SRCS-y

error: patch failed: drivers/net/ena/Makefile:43
error: drivers/net/ena/Makefile: patch does not apply
Checking patch drivers/net/ena/ena_ethdev.c...
error: while searching for:
static inline int ena_cpu_to_node(int cpu)
{
	struct rte_config *config = rte_eal_get_configuration();

	if (likely(cpu < RTE_MAX_MEMZONE))
--
	return NUMA_NO_NODE;
}

static inline void ena_rx_mbuf_prepare(struct rte_mbuf *mbuf,

error: patch failed: drivers/net/ena/ena_ethdev.c:264
error: drivers/net/ena/ena_ethdev.c: patch does not apply
Checking patch lib/librte_eal/bsdapp/eal/eal.c...
error: while searching for:
		}
	}

	if (rte_eal_memory_init() < 0) {
		rte_eal_init_alert("Cannot init memory\n");
--
		rte_eal_init_alert("Cannot init memzone\n");
		rte_errno = ENODEV;
		return -1;
	}

error: patch failed: lib/librte_eal/bsdapp/eal/eal.c:599
error: lib/librte_eal/bsdapp/eal/eal.c: patch does not apply
Checking patch lib/librte_eal/common/eal_common_memzone.c...
error: while searching for:
static inline const struct rte_memzone *
memzone_lookup_thread_unsafe(const char *name)
{
	const struct rte_mem_config *mcfg;
	const struct rte_memzone *mz;
--
}

/* This function will return the greatest free block if a heap has been
 * specified. If no heap has been specified, it will return the heap and

error: patch failed: lib/librte_eal/common/eal_common_memzone.c:28
error: lib/librte_eal/common/eal_common_memzone.c: patch does not apply
Checking patch lib/librte_eal/common/include/rte_eal_memconfig.h...
error: while searching for:
	rte_rwlock_t qlock;   /**< used for tailq operation for thread safe. */
	rte_rwlock_t mplock;  /**< only used by mempool LIB for thread-safe. */

	uint32_t memzone_cnt; /**< Number of allocated memzones */

--
	struct rte_memzone memzone[RTE_MAX_MEMZONE]; /**< Memzone descriptors. */

	struct rte_memseg_list memsegs[RTE_MAX_MEMSEG_LISTS];
	/**< list of dynamic arrays holding memsegs */

error: patch failed: lib/librte_eal/common/include/rte_eal_memconfig.h:58
error: lib/librte_eal/common/include/rte_eal_memconfig.h: patch does not apply
Checking patch lib/librte_eal/common/malloc_heap.c...
error: while searching for:
	if (mcfg == NULL)
		return -1;

	/* add all IOVA-contiguous areas to the heap */
	return rte_memseg_contig_walk(malloc_add_seg, NULL);
}

error: patch failed: lib/librte_eal/common/malloc_heap.c:278
error: lib/librte_eal/common/malloc_heap.c: patch does not apply
Checking patch lib/librte_eal/linuxapp/eal/eal.c...
error: while searching for:
		return -1;
	}
#endif

	if (rte_eal_memory_init() < 0) {
		rte_eal_init_alert("Cannot init memory\n");

error: patch failed: lib/librte_eal/linuxapp/eal/eal.c:858
error: lib/librte_eal/linuxapp/eal/eal.c: patch does not apply
Checking patch test/test/test_memzone.c...
error: while searching for:
	const struct rte_memzone *mz;
	int memzone_cnt_after, memzone_cnt_expected;
	int memzone_cnt_before =
			rte_eal_get_configuration()->mem_config->memzone_cnt;

	memzone1 = rte_memzone_reserve(TEST_MEMZONE_NAME("testzone1"), 100,
				SOCKET_ID_ANY, 0);

error: patch failed: test/test/test_memzone.c:909
error: test/test/test_memzone.c: patch does not apply

DPDK STV team

                 reply	other threads:[~2018-05-10  8:15 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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='0590c7$1k5cco@orsmga001.jf.intel.com' \
    --to=sys_stv@intel.com \
    --cc=peipeix.lu@intel.com \
    --cc=test-report@dpdk.org \
    --cc=xinfengx.zhao@intel.com \
    --cc=zhaoyan.chen@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).