-
Notifications
You must be signed in to change notification settings - Fork 0
/
rculfhash-mm-mmap.c
160 lines (138 loc) · 4.36 KB
/
rculfhash-mm-mmap.c
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*
* rculfhash-mm-mmap.c
*
* mmap/reservation based memory management for Lock-Free RCU Hash Table
*
* Copyright 2011 - Lai Jiangshan <[email protected]>
*
* 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
*/
#include <unistd.h>
#include <sys/mman.h>
#include "rculfhash-internal.h"
#ifndef MAP_ANONYMOUS
#define MAP_ANONYMOUS MAP_ANON
#endif
/* reserve inaccessible memory space without allocation any memory */
static void *memory_map(size_t length)
{
void *ret = mmap(NULL, length, PROT_NONE,
MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
assert(ret != MAP_FAILED);
return ret;
}
static void memory_unmap(void *ptr, size_t length)
{
int ret __attribute__((unused));
ret = munmap(ptr, length);
assert(ret == 0);
}
static void memory_populate(void *ptr, size_t length)
{
void *ret __attribute__((unused));
ret = mmap(ptr, length, PROT_READ | PROT_WRITE,
MAP_FIXED | MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
assert(ret == ptr);
}
/*
* Discard garbage memory and avoid system save it when try to swap it out.
* Make it still reserved, inaccessible.
*/
static void memory_discard(void *ptr, size_t length)
{
void *ret __attribute__((unused));
ret = mmap(ptr, length, PROT_NONE,
MAP_FIXED | MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
assert(ret == ptr);
}
static
void cds_lfht_alloc_bucket_table(struct cds_lfht *ht, unsigned long order)
{
if (order == 0) {
if (ht->min_nr_alloc_buckets == ht->max_nr_buckets) {
/* small table */
ht->tbl_mmap = calloc(ht->max_nr_buckets,
sizeof(*ht->tbl_mmap));
assert(ht->tbl_mmap);
return;
}
/* large table */
ht->tbl_mmap = memory_map(ht->max_nr_buckets
* sizeof(*ht->tbl_mmap));
memory_populate(ht->tbl_mmap,
ht->min_nr_alloc_buckets * sizeof(*ht->tbl_mmap));
} else if (order > ht->min_alloc_buckets_order) {
/* large table */
unsigned long len = 1UL << (order - 1);
assert(ht->min_nr_alloc_buckets < ht->max_nr_buckets);
memory_populate(ht->tbl_mmap + len,
len * sizeof(*ht->tbl_mmap));
}
/* Nothing to do for 0 < order && order <= ht->min_alloc_buckets_order */
}
/*
* cds_lfht_free_bucket_table() should be called with decreasing order.
* When cds_lfht_free_bucket_table(0) is called, it means the whole
* lfht is destroyed.
*/
static
void cds_lfht_free_bucket_table(struct cds_lfht *ht, unsigned long order)
{
if (order == 0) {
if (ht->min_nr_alloc_buckets == ht->max_nr_buckets) {
/* small table */
poison_free(ht->tbl_mmap);
return;
}
/* large table */
memory_unmap(ht->tbl_mmap,
ht->max_nr_buckets * sizeof(*ht->tbl_mmap));
} else if (order > ht->min_alloc_buckets_order) {
/* large table */
unsigned long len = 1UL << (order - 1);
assert(ht->min_nr_alloc_buckets < ht->max_nr_buckets);
memory_discard(ht->tbl_mmap + len, len * sizeof(*ht->tbl_mmap));
}
/* Nothing to do for 0 < order && order <= ht->min_alloc_buckets_order */
}
static
struct cds_lfht_node *bucket_at(struct cds_lfht *ht, unsigned long index)
{
return &ht->tbl_mmap[index];
}
static
struct cds_lfht *alloc_cds_lfht(unsigned long min_nr_alloc_buckets,
unsigned long max_nr_buckets)
{
unsigned long page_bucket_size;
page_bucket_size = getpagesize() / sizeof(struct cds_lfht_node);
if (max_nr_buckets <= page_bucket_size) {
/* small table */
min_nr_alloc_buckets = max_nr_buckets;
} else {
/* large table */
min_nr_alloc_buckets = max(min_nr_alloc_buckets,
page_bucket_size);
}
return __default_alloc_cds_lfht(
&cds_lfht_mm_mmap, sizeof(struct cds_lfht),
min_nr_alloc_buckets, max_nr_buckets);
}
const struct cds_lfht_mm_type cds_lfht_mm_mmap = {
.alloc_cds_lfht = alloc_cds_lfht,
.alloc_bucket_table = cds_lfht_alloc_bucket_table,
.free_bucket_table = cds_lfht_free_bucket_table,
.bucket_at = bucket_at,
};