aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/memblock/tests/alloc_nid_api.h
blob: 2b8cabacacb826034999c35e45145d728fc17997 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* SPDX-License-Identifier: GPL-2.0-or-later */
#ifndef _MEMBLOCK_ALLOC_NID_H
#define _MEMBLOCK_ALLOC_NID_H

#include "common.h"

int memblock_alloc_nid_checks(void);
int memblock_alloc_exact_nid_range_checks(void);
int __memblock_alloc_nid_numa_checks(void);

#ifdef CONFIG_NUMA
static inline int memblock_alloc_nid_numa_checks(void)
{
	__memblock_alloc_nid_numa_checks();
	return 0;
}

#else
static inline int memblock_alloc_nid_numa_checks(void)
{
	return 0;
}

#endif /* CONFIG_NUMA */

#endif