150 lines
5.2 KiB
C
150 lines
5.2 KiB
C
![]() |
/*
|
||
|
* Copyright (c) 2018 Intel Corporation
|
||
|
*
|
||
|
* Redistribution and use in source and binary forms, with or without
|
||
|
* modification, are permitted provided that the following conditions
|
||
|
* are met:
|
||
|
*
|
||
|
* * Redistributions of source code must retain the above copyright
|
||
|
* notice, this list of conditions and the following disclaimer.
|
||
|
*
|
||
|
* * Redistributions in binary form must reproduce the above copyright
|
||
|
* notice, this list of conditions and the following disclaimer in
|
||
|
* the documentation and/or other materials provided with the
|
||
|
* distribution.
|
||
|
*
|
||
|
* * Neither the name of Intel Corporation nor the names of its
|
||
|
* contributors may be used to endorse or promote products derived
|
||
|
* from this software without specific prior written permission.
|
||
|
*
|
||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY LOG OF THE USE
|
||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||
|
*/
|
||
|
|
||
|
#include <memkind.h>
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <errno.h>
|
||
|
#include <sys/resource.h>
|
||
|
#include <sys/stat.h>
|
||
|
#include <sys/time.h>
|
||
|
|
||
|
#define MB (1024 * 1024)
|
||
|
#define HEAP_LIMIT_SIMULATE (1024 * MB)
|
||
|
|
||
|
static char *PMEM_DIR = "/tmp/";
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
const size_t size = 512;
|
||
|
struct memkind *pmem_kind = NULL;
|
||
|
int err = 0;
|
||
|
errno = 0;
|
||
|
struct stat st;
|
||
|
|
||
|
if (argc > 2) {
|
||
|
fprintf(stderr, "Usage: %s [pmem_kind_dir_path]", argv[0]);
|
||
|
return 1;
|
||
|
} else if (argc == 2) {
|
||
|
if (stat(argv[1], &st) != 0 || !S_ISDIR(st.st_mode)) {
|
||
|
fprintf(stderr, "%s : Invalid path to pmem kind directory", argv[1]);
|
||
|
return 1;
|
||
|
} else {
|
||
|
PMEM_DIR = argv[1];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//operation below limit the current size of heap
|
||
|
//to show different place of allocation
|
||
|
const struct rlimit heap_limit = { HEAP_LIMIT_SIMULATE, HEAP_LIMIT_SIMULATE };
|
||
|
err = setrlimit(RLIMIT_DATA, &heap_limit);
|
||
|
if (err) {
|
||
|
perror("setrlimit()");
|
||
|
fprintf(stderr, "Unable to set heap limit\n");
|
||
|
return errno ? -errno : 1;
|
||
|
}
|
||
|
|
||
|
char *ptr_default = NULL;
|
||
|
char *ptr_default_not_possible = NULL;
|
||
|
char *ptr_pmem = NULL;
|
||
|
|
||
|
fprintf(stdout,
|
||
|
"This example shows how to allocate memory using standard memory (MEMKIND_DEFAULT) "
|
||
|
"and file-backed kind of memory (PMEM).\nPMEM kind directory: %s\n",
|
||
|
PMEM_DIR);
|
||
|
|
||
|
err = memkind_create_pmem(PMEM_DIR, 0, &pmem_kind);
|
||
|
if (err) {
|
||
|
perror("memkind_create_pmem()");
|
||
|
fprintf(stderr, "Unable to create pmem partition err=%d errno=%d\n", err,
|
||
|
errno);
|
||
|
return errno ? -errno : 1;
|
||
|
}
|
||
|
|
||
|
ptr_default = (char *)memkind_malloc(MEMKIND_DEFAULT, size);
|
||
|
if (!ptr_default) {
|
||
|
perror("memkind_malloc()");
|
||
|
fprintf(stderr, "Unable allocate 512 bytes in standard memory");
|
||
|
return errno ? -errno : 1;
|
||
|
}
|
||
|
|
||
|
errno = 0;
|
||
|
ptr_default_not_possible = (char *)memkind_malloc(MEMKIND_DEFAULT,
|
||
|
HEAP_LIMIT_SIMULATE);
|
||
|
if (ptr_default_not_possible) {
|
||
|
perror("memkind_malloc()");
|
||
|
fprintf(stderr,
|
||
|
"Failure, this allocation should not be possible "
|
||
|
"(expected result was NULL), because of setlimit function\n");
|
||
|
return errno ? -errno : 1;
|
||
|
}
|
||
|
if (errno != ENOMEM) {
|
||
|
perror("memkind_malloc()");
|
||
|
fprintf(stderr,
|
||
|
"Failure, this allocation should set errno to ENOMEM value, because of setlimit function\n");
|
||
|
return errno ? -errno : 1;
|
||
|
}
|
||
|
|
||
|
errno = 0;
|
||
|
ptr_pmem = (char *)memkind_malloc(pmem_kind, HEAP_LIMIT_SIMULATE);
|
||
|
if (!ptr_pmem) {
|
||
|
perror("memkind_malloc()");
|
||
|
fprintf(stderr, "Unable allocate HEAP_LIMIT_SIMULATE in file-backed memory");
|
||
|
return errno ? -errno : 1;
|
||
|
}
|
||
|
if (errno != 0) {
|
||
|
perror("memkind_malloc()");
|
||
|
fprintf(stderr, "Failure, this allocation should not set errno value\n");
|
||
|
return errno ? -errno : 1;
|
||
|
}
|
||
|
|
||
|
sprintf(ptr_default, "Hello world from standard memory - ptr_default\n");
|
||
|
sprintf(ptr_pmem, "Hello world from file-backed memory - ptr_pmem\n");
|
||
|
|
||
|
fprintf(stdout, "%s", ptr_default);
|
||
|
fprintf(stdout, "%s", ptr_pmem);
|
||
|
|
||
|
memkind_free(MEMKIND_DEFAULT, ptr_default);
|
||
|
memkind_free(pmem_kind, ptr_pmem);
|
||
|
|
||
|
err = memkind_destroy_kind(pmem_kind);
|
||
|
if (err) {
|
||
|
perror("memkind_destroy_kind()");
|
||
|
fprintf(stderr, "Unable to destroy pmem partition\n");
|
||
|
return errno ? -errno : 1;
|
||
|
}
|
||
|
|
||
|
fprintf(stdout, "Memory was successfully allocated and released.\n");
|
||
|
|
||
|
return 0;
|
||
|
}
|