Viewing file: numa.h (5.46 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* Copyright (C) 2003,2004 Andi Kleen, SuSE Labs.
libnuma is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; version 2.1.
libnuma is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should find a copy of v2.1 of the GNU Lesser General Public License somewhere on your Linux system; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifndef _NUMA_H #define _NUMA_H 1
/* Simple NUMA poliy library */
#include <stddef.h> #include <string.h>
#if defined(__x86_64__) || defined(__i386__) #define NUMA_NUM_NODES 128 #else #define NUMA_NUM_NODES 2048 #endif
#ifdef __cplusplus extern "C" { #endif
typedef struct { unsigned long n[NUMA_NUM_NODES/(sizeof(unsigned long)*8)]; } nodemask_t;
static inline void nodemask_zero(nodemask_t *mask) { memset(mask->n, 0, sizeof(mask->n)); }
static inline void nodemask_set(nodemask_t *mask, int node) { mask->n[node / (8*sizeof(unsigned long))] |= (1UL<<(node%(8*sizeof(unsigned long)))); }
static inline void nodemask_clr(nodemask_t *mask, int node) { mask->n[node / (8*sizeof(unsigned long))] &= ~(1UL<<(node%(8*sizeof(unsigned long)))); } static inline int nodemask_isset(nodemask_t *mask, int node) { if ((unsigned)node >= NUMA_NUM_NODES) return 0; if (mask->n[node / (8*sizeof(unsigned long))] & (1UL<<(node%(8*sizeof(unsigned long))))) return 1; return 0; } static inline int nodemask_equal(nodemask_t *a, nodemask_t *b) { int i; for (i = 0; i < NUMA_NUM_NODES/(sizeof(unsigned long)*8); i++) if (a->n[i] != b->n[i]) return 0; return 1; }
/* NUMA support available. If this returns a negative value all other function in this library are undefined. */ int numa_available(void);
/* Basic NUMA state */
/* Get max available node */ int numa_max_node(void); /* Return preferred node */ int numa_preferred(void); /* Return node size and free memory */ long numa_node_size(int node, long *freep);
int numa_pagesize(void);
/* Set with all nodes. Only valid after numa_available. */ extern nodemask_t numa_all_nodes;
/* Set with no nodes */ extern nodemask_t numa_no_nodes;
/* Only run and allocate memory from a specific set of nodes. */ void numa_bind(nodemask_t *nodes); /* Set the NUMA node interleaving mask. 0 to turn off interleaving */ void numa_set_interleave_mask(nodemask_t *nodemask); /* Return the current interleaving mask */ nodemask_t numa_get_interleave_mask(void); /* Some node to preferably allocate memory from for thread. */ void numa_set_preferred(int node); /* Set local memory allocation policy for thread */ void numa_set_localalloc(void); /* Only allocate memory from the nodes set in mask. 0 to turn off */ void numa_set_membind(nodemask_t *nodemask); /* Return current membind */ nodemask_t numa_get_membind(void);
int numa_get_interleave_node(void);
/* NUMA memory allocation. These functions always round to page size and are relatively slow. */
/* Alloc memory page interleaved on nodes in mask */ void *numa_alloc_interleaved_subset(size_t size, nodemask_t *nodemask); /* Alloc memory page interleaved on all nodes. */ void *numa_alloc_interleaved(size_t size); /* Alloc memory located on node */ void *numa_alloc_onnode(size_t size, int node); /* Alloc memory on local node */ void *numa_alloc_local(size_t size); /* Allocation with current policy */ void *numa_alloc(size_t size); /* Free memory allocated by the functions above */ void numa_free(void *mem, size_t size);
/* Low level functions, primarily for shared memory. All memory processed by these must not be touched yet */
/* Interleave an memory area. */ void numa_interleave_memory(void *mem, size_t size, nodemask_t *mask);
/* Allocate a memory area on a specific node. */ void numa_tonode_memory(void *start, size_t size, int node);
/* Allocate memory on a mask of nodes. */ void numa_tonodemask_memory(void *mem, size_t size, nodemask_t *mask);
/* Allocate a memory area on the current node. */ void numa_setlocal_memory(void *start, size_t size);
/* Allocate memory area with current memory policy */ void numa_police_memory(void *start, size_t size);
/* Run current thread only on nodes in mask */ int numa_run_on_node_mask(nodemask_t *mask); /* Run current thread only on node */ int numa_run_on_node(int node); /* Return current mask of nodes the thread can run on */ nodemask_t numa_get_run_node_mask(void);
/* When strict fail allocation when memory cannot be allocated in target node(s). */ void numa_set_bind_policy(int strict);
/* Fail when existing memory has incompatible policy */ void numa_set_strict(int flag);
/* Convert node to CPU mask. -1/errno on failure, otherwise 0. */ int numa_node_to_cpus(int node, unsigned long *buffer, int buffer_len);
/* Error handling. */ /* This is an internal function in libnuma that can be overwritten by an user program. Default is to print an error to stderr and exit if numa_exit_on_error is true. */ void numa_error(char *where); /* When true exit the program when a NUMA system call (except numa_available) fails */ extern int numa_exit_on_error; /* Warning function. Can also be overwritten. Default is to print on stderr once. */ void numa_warn(int num, char *fmt, ...);
#ifdef __cplusplus } #endif
#endif
|