Whamcloud - gitweb
LU-8703 libcfs: make tolerant to offline CPUs and empty NUMA nodes
[fs/lustre-release.git] / libcfs / include / libcfs / linux / linux-cpu.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 021110-1307, USA
20  *
21  * GPL HEADER END
22  */
23 /*
24  * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
25  *
26  * Copyright (c) 2012, 2013, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * libcfs/include/libcfs/linux/linux-mem.h
33  *
34  * Basic library routines.
35  *
36  * Author: liang@whamcloud.com
37  */
38
39 #ifndef __LIBCFS_LINUX_CPU_H__
40 #define __LIBCFS_LINUX_CPU_H__
41
42 #ifndef __LIBCFS_LIBCFS_H__
43 #error Do not #include this file directly. #include <libcfs/libcfs.h> instead
44 #endif
45
46 #ifndef __KERNEL__
47 #error This include is only for kernel use.
48 #endif
49
50 #include <linux/cpu.h>
51 #include <linux/cpuset.h>
52 #include <linux/topology.h>
53 #include <linux/version.h>
54
55 #ifdef CONFIG_SMP
56
57 #define HAVE_LIBCFS_CPT
58
59 /** virtual processing unit */
60 struct cfs_cpu_partition {
61         /* CPUs mask for this partition */
62         cpumask_t                       *cpt_cpumask;
63         /* nodes mask for this partition */
64         nodemask_t                      *cpt_nodemask;
65         /* NUMA distance between CPTs */
66         unsigned                        *cpt_distance;
67         /* spread rotor for NUMA allocator */
68         int                              cpt_spread_rotor;
69         /* NUMA node if cpt_nodemask is empty */
70         int                              cpt_node;
71 };
72
73 /** descriptor for CPU partitions */
74 struct cfs_cpt_table {
75         /* spread rotor for NUMA allocator */
76         int                             ctb_spread_rotor;
77         /* maximum NUMA distance between all nodes in table */
78         unsigned                        ctb_distance;
79         /* # of CPU partitions */
80         int                              ctb_nparts;
81         /* partitions tables */
82         struct cfs_cpu_partition        *ctb_parts;
83         /* shadow HW CPU to CPU partition ID */
84         int                             *ctb_cpu2cpt;
85         /* all cpus in this partition table */
86         cpumask_t                       *ctb_cpumask;
87         /* shadow HW node to CPU partition ID */
88         int                             *ctb_node2cpt;
89         /* all nodes in this partition table */
90         nodemask_t                      *ctb_nodemask;
91 };
92
93 void cfs_cpu_core_siblings(int cpu, cpumask_t *mask);
94
95 #endif /* CONFIG_SMP */
96
97 #ifndef HAVE_TOPOLOGY_SIBLING_CPUMASK
98 # define topology_sibling_cpumask(cpu)  topology_thread_cpumask(cpu)
99 #endif /* HAVE_TOPOLOGY_SIBLING_CPUMASK */
100
101 #endif /* __LIBCFS_LINUX_CPU_H__ */