summaryrefslogtreecommitdiffstats
path: root/src/hardware/sysfs.h
blob: 4137033814c87a8bc81d6595dc6f08bdcaa894e3 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
 * Copyright (C) 2013-2014 Red Hat, Inc. All rights reserved.
 *
 * 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, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Authors: Peter Schiffer <pschiffe@redhat.com>
 */

#ifndef SYSFS_H_
#define SYSFS_H_

#include <dirent.h>
#include <sys/stat.h>
#include <sys/types.h>

#include "utils.h"
#include "dmidecode.h"
#include "lscpu.h"

#define SYSFS_PATH "/sys/devices/system"
#define SYSFS_CPU_PATH SYSFS_PATH "/cpu"
#define SYSFS_KERNEL_MM "/sys/kernel/mm"
#define SYSFS_BLOCK_PATH "/sys/class/block"

/* Transparent memory huge pages statuses. */
typedef enum _ThpStatus {
    thp_unsupported = 0,
    thp_never,
    thp_madvise,
    thp_always
} ThpStatus;


/* Processor cache from sysfs. */
typedef struct _SysfsCpuCache {
    char *id;                   /* ID */
    unsigned size;              /* Cache Size */
    char *name;                 /* Cache Name */
    unsigned level;             /* Cache Level */
    char *type;                 /* Cache Type (Data, Instruction, Unified..) */
    unsigned ways_of_assoc;     /* Number of ways of associativity */
    unsigned line_size;         /* Cache Line Size */
} SysfsCpuCache;

/*
 * Read unsigned value from file.
 * @param path of file
 * @param result
 * @return 0 if success, negative value otherwise
 */
short path_get_unsigned(const char *path, unsigned *result);

/*
 * Read string value from file.
 * @param path of file
 * @param result
 * @return 0 if success, negative value otherwise
 */
short path_get_string(const char *path, char **result);

/*
 * Get array of processor caches from sysfs.
 * @param caches array of cpu caches, this function will allocate necessary
 *      memory, but caller is responsible for freeing it
 * @param caches_nb number of caches in caches
 * @return 0 if success, negative value otherwise
 */
short sysfs_get_cpu_caches(SysfsCpuCache **caches, unsigned *caches_nb);

/*
 * Free array of cpu cache structures.
 * @param caches array of caches
 * @param caches_nb number of caches
 */
void sysfs_free_cpu_caches(SysfsCpuCache **caches, unsigned *caches_nb);

/*
 * Detects whether system has NUMA memory layout.
 * @return 0 if no, 1 if yes
 */
short sysfs_has_numa();

/*
 * Get all supported sizes of memory huge pages in kB
 * @param sizes array of all supported sizes if huge pages
 * @param sizes_nb number of items in array
 * @return 0 if success, negative value otherwise
 */
short sysfs_get_sizes_of_hugepages(unsigned **sizes, unsigned *sizes_nb);

/*
 * Get current status of transparent memory huge pages.
 * @return ThpStatus
 */
ThpStatus sysfs_get_transparent_hugepages_status();

#endif /* SYSFS_H_ */