return 0;
}
+static int
+test_memzone_invalid_flags(void)
+{
+ const struct rte_memzone *mz;
+
+ mz = rte_memzone_lookup(TEST_MEMZONE_NAME("invalid_flags"));
+ if (mz != NULL) {
+ printf("Zone with invalid flags has been reserved\n");
+ return -1;
+ }
+
+ mz = rte_memzone_reserve(TEST_MEMZONE_NAME("invalid_flags"),
+ 100, SOCKET_ID_ANY, RTE_MEMZONE_IOVA_CONTIG << 1);
+ if (mz != NULL) {
+ printf("Zone with invalid flags has been reserved\n");
+ return -1;
+ }
+ return 0;
+}
+
static int
test_memzone_reserving_zone_size_bigger_than_the_maximum(void)
{
if (test_memzone_invalid_alignment() < 0)
return -1;
+ printf("test invalid flags for memzone_reserve\n");
+ if (test_memzone_invalid_flags() < 0)
+ return -1;
+
printf("test reserving the largest size memzone possible\n");
if (test_memzone_reserve_max() < 0)
return -1;
return NULL;
}
+#define MEMZONE_KNOWN_FLAGS (RTE_MEMZONE_2MB \
+ | RTE_MEMZONE_1GB \
+ | RTE_MEMZONE_16MB \
+ | RTE_MEMZONE_16GB \
+ | RTE_MEMZONE_256KB \
+ | RTE_MEMZONE_256MB \
+ | RTE_MEMZONE_512MB \
+ | RTE_MEMZONE_4GB \
+ | RTE_MEMZONE_SIZE_HINT_ONLY \
+ | RTE_MEMZONE_IOVA_CONTIG \
+ )
+
static const struct rte_memzone *
memzone_reserve_aligned_thread_unsafe(const char *name, size_t len,
int socket_id, unsigned int flags, unsigned int align,
return NULL;
}
+ if ((flags & ~MEMZONE_KNOWN_FLAGS) != 0) {
+ rte_errno = EINVAL;
+ return NULL;
+ }
+
/* only set socket to SOCKET_ID_ANY if we aren't allocating for an
* external heap.
*/