numa_conf.h 4.0 KB
Newer Older
1
/*
2
 * numa_conf.h
3
 *
4
 * Copyright (C) 2014-2015 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 * This library 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; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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 have received a copy of the GNU Lesser General Public
 * License along with this library.  If not, see
 * <http://www.gnu.org/licenses/>.
 *
 * Author: Martin Kletzander <mkletzan@redhat.com>
 */

23 24
#ifndef __NUMA_CONF_H__
# define __NUMA_CONF_H__
25

26 27
# include <libxml/xpath.h>

28 29 30
# include "internal.h"
# include "virutil.h"
# include "virbitmap.h"
31
# include "virbuffer.h"
32
# include "cpu_conf.h"
33 34


35 36
typedef struct _virDomainNuma virDomainNuma;
typedef virDomainNuma *virDomainNumaPtr;
37 38

typedef enum {
39 40 41
    VIR_DOMAIN_NUMATUNE_PLACEMENT_DEFAULT = 0,
    VIR_DOMAIN_NUMATUNE_PLACEMENT_STATIC,
    VIR_DOMAIN_NUMATUNE_PLACEMENT_AUTO,
42

43 44
    VIR_DOMAIN_NUMATUNE_PLACEMENT_LAST
} virDomainNumatunePlacement;
45

46
VIR_ENUM_DECL(virDomainNumatunePlacement)
47 48
VIR_ENUM_DECL(virDomainNumatuneMemMode)

49 50 51 52 53 54 55 56 57
typedef enum {
    VIR_NUMA_MEM_ACCESS_DEFAULT,
    VIR_NUMA_MEM_ACCESS_SHARED,
    VIR_NUMA_MEM_ACCESS_PRIVATE,

    VIR_NUMA_MEM_ACCESS_LAST
} virNumaMemAccess;

VIR_ENUM_DECL(virNumaMemAccess)
58

59
void virDomainNumaFree(virDomainNumaPtr numa);
60 61 62 63

/*
 * XML Parse/Format functions
 */
64
int virDomainNumatuneParseXML(virDomainNumaPtr *numatunePtr,
65 66 67 68
                              bool placement_static,
                              size_t ncells,
                              xmlXPathContextPtr ctxt)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(4);
69

70
int virDomainNumatuneFormatXML(virBufferPtr buf, virDomainNumaPtr numatune)
71 72 73 74 75
    ATTRIBUTE_NONNULL(1);

/*
 * Getters
 */
76
virDomainNumatuneMemMode virDomainNumatuneGetMode(virDomainNumaPtr numatune,
77
                                                  int cellid);
78

79
virBitmapPtr virDomainNumatuneGetNodeset(virDomainNumaPtr numatune,
80 81
                                         virBitmapPtr auto_nodeset,
                                         int cellid);
82

83
int virDomainNumatuneMaybeGetNodeset(virDomainNumaPtr numatune,
84 85 86 87
                                     virBitmapPtr auto_nodeset,
                                     virBitmapPtr *retNodeset,
                                     int cellid);

88 89 90
/*
 * Formatters
 */
91
char *virDomainNumatuneFormatNodeset(virDomainNumaPtr numatune,
92 93
                                     virBitmapPtr auto_nodeset,
                                     int cellid);
94

95
int virDomainNumatuneMaybeFormatNodeset(virDomainNumaPtr numatune,
96
                                        virBitmapPtr auto_nodeset,
97 98
                                        char **mask,
                                        int cellid);
99 100 101 102

/*
 * Setters
 */
103
int virDomainNumatuneSet(virDomainNumaPtr *numatunePtr,
104 105 106 107
                         bool placement_static,
                         int placement,
                         int mode,
                         virBitmapPtr nodeset)
108 109 110 111 112
    ATTRIBUTE_NONNULL(1);

/*
 * Other accessors
 */
113 114
bool virDomainNumaEquals(virDomainNumaPtr n1,
                         virDomainNumaPtr n2);
115

116
bool virDomainNumatuneHasPlacementAuto(virDomainNumaPtr numatune);
117

118
bool virDomainNumatuneHasPerNodeBinding(virDomainNumaPtr numatune);
119

120
int virDomainNumatuneSpecifiedMaxNode(virDomainNumaPtr numatune);
121

122
bool virDomainNumatuneNodesetIsAvailable(virDomainNumaPtr numatune,
123
                                         virBitmapPtr auto_nodeset);
124

125
bool virDomainNumatuneNodeSpecified(virDomainNumaPtr numatune,
126
                                    int cellid);
127 128

int virDomainNumaDefCPUParseXML(virCPUDefPtr def, xmlXPathContextPtr ctxt);
129
int virDomainNumaDefCPUFormat(virBufferPtr buf, virCPUDefPtr def);
130

131 132 133
unsigned int virDomainNumaGetCPUCountTotal(virCPUDefPtr numa);


134
#endif /* __NUMA_CONF_H__ */