-
Notifications
You must be signed in to change notification settings - Fork 80
/
ras-page-isolation.h
61 lines (49 loc) · 1.01 KB
/
ras-page-isolation.h
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
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved.
*/
#ifndef __RAS_PAGE_ISOLATION_H
#define __RAS_PAGE_ISOLATION_H
#include <stdbool.h>
#include <time.h>
#include "rbtree.h"
#include "types.h"
#define PAGE_SHIFT 12
#define PAGE_SIZE BIT(PAGE_SHIFT)
#define PAGE_MASK (~(PAGE_SIZE - 1))
struct config {
char *name;
unsigned long val;
};
enum otype {
OFFLINE_OFF,
OFFLINE_ACCOUNT,
OFFLINE_SOFT,
OFFLINE_HARD,
OFFLINE_SOFT_THEN_HARD,
};
enum pstate {
PAGE_ONLINE,
PAGE_OFFLINE,
PAGE_OFFLINE_FAILED,
};
struct page_record {
struct rb_node entry;
unsigned long long addr;
time_t start;
enum pstate offlined;
unsigned long count;
unsigned long excess;
};
struct isolation {
char *name;
char *env;
const struct config *units;
unsigned long val;
bool overflow;
char *unit;
};
void ras_page_account_init(void);
void ras_record_page_error(unsigned long long addr,
unsigned int count, time_t time);
#endif