Many open source projects have moved to using SPDX identifiers to specify license information, reducing the amount of boilerplate code in every source file. This patch replaces the bulk of SPDK .c, .cpp and Makefiles with the BSD-3-Clause identifier. Almost all of these files share the exact same license text, and this patch only modifies the files that contain the most common license text. There can be slight variations because the third clause contains company names - most say "Intel Corporation", but there are instances for Nvidia, Samsung, Eideticom and even "the copyright holder". Used a bash script to automate replacement of the license text with SPDX identifier which is checked into scripts/spdx.sh. Signed-off-by: Jim Harris <james.r.harris@intel.com> Change-Id: Iaa88ab5e92ea471691dc298cfe41ebfb5d169780 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/12904 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-by: Dong Yi <dongx.yi@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com> Reviewed-by: <qun.wan@intel.com>
169 lines
3.9 KiB
C
169 lines
3.9 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright (c) Intel Corporation.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#include "spdk/stdinc.h"
|
|
|
|
#include "spdk/config.h"
|
|
#include "spdk/env.h"
|
|
#include "spdk/util.h"
|
|
|
|
#include "CUnit/Basic.h"
|
|
|
|
#define __SPDK_ENV_NAME(path) (strrchr(#path, '/') + 1)
|
|
#define _SPDK_ENV_NAME(path) __SPDK_ENV_NAME(path)
|
|
#define SPDK_ENV_NAME _SPDK_ENV_NAME(SPDK_CONFIG_ENV)
|
|
|
|
static void
|
|
vtophys_malloc_test(void)
|
|
{
|
|
void *p = NULL;
|
|
int i;
|
|
unsigned int size = 1;
|
|
uint64_t paddr;
|
|
|
|
/* Verify vtophys doesn't work on regular malloc memory */
|
|
for (i = 0; i < 31; i++) {
|
|
p = malloc(size);
|
|
if (p == NULL) {
|
|
continue;
|
|
}
|
|
|
|
paddr = spdk_vtophys(p, NULL);
|
|
CU_ASSERT(paddr == SPDK_VTOPHYS_ERROR);
|
|
|
|
free(p);
|
|
size = size << 1;
|
|
}
|
|
|
|
/* Test addresses that are not in the valid x86-64 usermode range */
|
|
paddr = spdk_vtophys((void *)0x0000800000000000ULL, NULL);
|
|
CU_ASSERT(paddr == SPDK_VTOPHYS_ERROR);
|
|
}
|
|
|
|
static void
|
|
vtophys_spdk_malloc_test(void)
|
|
{
|
|
void *buf = NULL, *p = NULL;
|
|
size_t buf_align = 512;
|
|
int i;
|
|
unsigned int size = 1;
|
|
uint64_t paddr, tmpsize;
|
|
|
|
/* Test vtophys on memory allocated through SPDK */
|
|
for (i = 0; i < 31; i++) {
|
|
buf = spdk_zmalloc(size, buf_align, NULL, SPDK_ENV_LCORE_ID_ANY, SPDK_MALLOC_DMA);
|
|
if (buf == NULL) {
|
|
continue;
|
|
}
|
|
|
|
/* test vtophys translation with no length parameter */
|
|
paddr = spdk_vtophys(buf, NULL);
|
|
CU_ASSERT(paddr != SPDK_VTOPHYS_ERROR);
|
|
|
|
/* translate the entire buffer; it's not necessarily contiguous */
|
|
p = buf;
|
|
tmpsize = size;
|
|
while (p < buf + size) {
|
|
paddr = spdk_vtophys(p, &tmpsize);
|
|
CU_ASSERT(paddr != SPDK_VTOPHYS_ERROR);
|
|
CU_ASSERT(tmpsize >= spdk_min(size, buf_align));
|
|
p += tmpsize;
|
|
tmpsize = buf + size - p;
|
|
}
|
|
CU_ASSERT(tmpsize == 0);
|
|
|
|
/* translate a valid vaddr, but with length 0 */
|
|
p = buf;
|
|
tmpsize = 0;
|
|
paddr = spdk_vtophys(p, &tmpsize);
|
|
CU_ASSERT(paddr != SPDK_VTOPHYS_ERROR);
|
|
CU_ASSERT(tmpsize == 0);
|
|
|
|
/* translate the first half of the buffer */
|
|
p = buf;
|
|
tmpsize = size / 2;
|
|
while (p < buf + size / 2) {
|
|
paddr = spdk_vtophys(p, &tmpsize);
|
|
CU_ASSERT(paddr != SPDK_VTOPHYS_ERROR);
|
|
CU_ASSERT(tmpsize >= spdk_min(size / 2, buf_align));
|
|
p += tmpsize;
|
|
tmpsize = buf + size / 2 - p;
|
|
}
|
|
CU_ASSERT(tmpsize == 0);
|
|
|
|
/* translate the second half of the buffer */
|
|
p = buf + size / 2;
|
|
tmpsize = size / 2;
|
|
while (p < buf + size) {
|
|
paddr = spdk_vtophys(p, &tmpsize);
|
|
CU_ASSERT(paddr != SPDK_VTOPHYS_ERROR);
|
|
CU_ASSERT(tmpsize >= spdk_min(size / 2, buf_align));
|
|
p += tmpsize;
|
|
tmpsize = buf + size - p;
|
|
}
|
|
CU_ASSERT(tmpsize == 0);
|
|
|
|
/* translate a region that's not entirely registered */
|
|
p = buf;
|
|
tmpsize = UINT64_MAX;
|
|
while (p < buf + size) {
|
|
paddr = spdk_vtophys(p, &tmpsize);
|
|
CU_ASSERT(paddr != SPDK_VTOPHYS_ERROR);
|
|
CU_ASSERT(tmpsize >= buf_align);
|
|
p += tmpsize;
|
|
/* verify our region is really contiguous */
|
|
CU_ASSERT(paddr + tmpsize - 1 == spdk_vtophys(p - 1, &tmpsize));
|
|
tmpsize = UINT64_MAX;
|
|
}
|
|
|
|
spdk_free(buf);
|
|
size = size << 1;
|
|
}
|
|
}
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
struct spdk_env_opts opts;
|
|
CU_pSuite suite = NULL;
|
|
unsigned num_failures;
|
|
|
|
spdk_env_opts_init(&opts);
|
|
opts.name = "vtophys";
|
|
opts.core_mask = "0x1";
|
|
if (strcmp(SPDK_ENV_NAME, "env_dpdk") == 0) {
|
|
opts.env_context = "--log-level=lib.eal:8";
|
|
}
|
|
|
|
if (spdk_env_init(&opts) < 0) {
|
|
printf("Err: Unable to initialize SPDK env\n");
|
|
return 1;
|
|
}
|
|
|
|
if (CU_initialize_registry() != CUE_SUCCESS) {
|
|
return CU_get_error();
|
|
}
|
|
|
|
suite = CU_add_suite("components_suite", NULL, NULL);
|
|
if (suite == NULL) {
|
|
CU_cleanup_registry();
|
|
return CU_get_error();
|
|
}
|
|
|
|
if (
|
|
CU_add_test(suite, "vtophys_malloc_test", vtophys_malloc_test) == NULL ||
|
|
CU_add_test(suite, "vtophys_spdk_malloc_test", vtophys_spdk_malloc_test) == NULL
|
|
) {
|
|
CU_cleanup_registry();
|
|
return CU_get_error();
|
|
}
|
|
|
|
CU_basic_set_mode(CU_BRM_VERBOSE);
|
|
CU_basic_run_tests();
|
|
num_failures = CU_get_number_of_failures();
|
|
CU_cleanup_registry();
|
|
return num_failures;
|
|
}
|