-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpsm_sysbuf.c
222 lines (174 loc) · 6.75 KB
/
psm_sysbuf.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/*
This file is provided under a dual BSD/GPLv2 license. When using or
redistributing this file, you may do so under either license.
GPL LICENSE SUMMARY
Copyright(c) 2015 Intel Corporation.
This program is free software; you can redistribute it and/or modify
it under the terms of version 2 of the GNU General Public License as
published by the Free Software Foundation.
This program 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
General Public License for more details.
Contact Information:
Intel Corporation, www.intel.com
BSD LICENSE
Copyright(c) 2015 Intel Corporation.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
* Neither the name of Intel Corporation nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/* Copyright (c) 2003-2014 Intel Corporation. All rights reserved. */
#include "psm_user.h"
#include "psm_mq_internal.h"
/*
*
* System buffer (unexpected message) allocator
*
*/
#define MM_FLAG_NONE 0
#define MM_FLAG_TRANSIENT 0x1
struct psmi_mem_block_ctrl {
union {
psmi_mem_ctrl_t *mem_handler;
struct psmi_mem_block_ctrl *next;
};
};
/* Per MQ allocators */
void psmi_mq_sysbuf_init(psm2_mq_t mq)
{
int i;
uint32_t block_sizes[] = {256, 512, 1024, 2048, 4096, 8192, (uint32_t)-1};
uint32_t replenishing_rate[] = {128, 64, 32, 16, 8, 4, 0};
if (mq->mem_ctrl_is_init)
return;
mq->mem_ctrl_is_init = 1;
for (i=0; i < MM_NUM_OF_POOLS; i++) {
mq->handler_index[i].block_size = block_sizes[i];
mq->handler_index[i].current_available = 0;
mq->handler_index[i].free_list = NULL;
mq->handler_index[i].total_alloc = 0;
mq->handler_index[i].replenishing_rate = replenishing_rate[i];
if (block_sizes[i] == -1) {
psmi_assert_always(replenishing_rate[i] == 0);
mq->handler_index[i].flags = MM_FLAG_TRANSIENT;
}
else {
psmi_assert_always(replenishing_rate[i] > 0);
mq->handler_index[i].flags = MM_FLAG_NONE;
}
}
/* Hit once on each block size so we have a pool that's allocated */
for (i=0; i < MM_NUM_OF_POOLS; i++) {
void *ptr;
if (block_sizes[i] == -1)
continue;
ptr = psmi_mq_sysbuf_alloc(mq, block_sizes[i]);
psmi_mq_sysbuf_free(mq, ptr);
}
}
void psmi_mq_sysbuf_fini(psm2_mq_t mq) // free all buffers that is currently not used
{
struct psmi_mem_block_ctrl *block;
int i;
if (mq->mem_ctrl_is_init == 0)
return;
for (i=0; i < MM_NUM_OF_POOLS; i++) {
while ((block = mq->handler_index[i].free_list) != NULL) {
mq->handler_index[i].free_list = block->next;
psmi_free(block);
}
}
mq->mem_ctrl_is_init = 0;
}
void psmi_mq_sysbuf_getinfo(psm2_mq_t mq, char *buf, size_t len)
{
snprintf(buf, len-1, "Sysbuf consumption: %"PRIu64" bytes\n",
mq->mem_ctrl_total_bytes);
buf[len-1] = '\0';
return;
}
void *psmi_mq_sysbuf_alloc(psm2_mq_t mq, uint32_t alloc_size)
{
psmi_mem_ctrl_t *mm_handler = mq->handler_index;
struct psmi_mem_block_ctrl *new_block;
int replenishing;
/* There is a timing race with ips initialization, fix later.
* * XXX */
if (!mq->mem_ctrl_is_init)
psmi_mq_sysbuf_init(mq);
mq->stats.rx_sysbuf_num++;
mq->stats.rx_sysbuf_bytes += alloc_size;
while (mm_handler->block_size < alloc_size)
mm_handler++;
replenishing = mm_handler->replenishing_rate;
if (mm_handler->current_available == 0) { // allocate more buffers
if (mm_handler->flags & MM_FLAG_TRANSIENT) {
uint32_t newsz = alloc_size + sizeof(struct psmi_mem_block_ctrl);
new_block = psmi_malloc(mq->ep, UNEXPECTED_BUFFERS, newsz);
if (new_block) {
new_block->mem_handler = mm_handler;
new_block++;
mm_handler->total_alloc++;
mq->mem_ctrl_total_bytes += newsz;
}
return new_block;
}
do {
uint32_t newsz = mm_handler->block_size + sizeof(struct psmi_mem_block_ctrl);
new_block = psmi_malloc(mq->ep, UNEXPECTED_BUFFERS, newsz);
mq->mem_ctrl_total_bytes += newsz;
if (new_block) {
mm_handler->current_available++;
mm_handler->total_alloc++;
new_block->next = mm_handler->free_list;
mm_handler->free_list = new_block;
}
} while (--replenishing && new_block);
}
if (mm_handler->current_available) {
mm_handler->current_available--;
new_block = mm_handler->free_list;
mm_handler->free_list = new_block->next;
new_block->mem_handler = mm_handler;
new_block++;
return new_block;
}
return NULL;
}
void psmi_mq_sysbuf_free(psm2_mq_t mq, void * mem_to_free)
{
struct psmi_mem_block_ctrl * block_to_free;
psmi_mem_ctrl_t *mm_handler;
psmi_assert_always(mq->mem_ctrl_is_init);
block_to_free = (struct psmi_mem_block_ctrl *)mem_to_free - 1;
mm_handler = block_to_free->mem_handler;
if (mm_handler->flags & MM_FLAG_TRANSIENT) {
psmi_free(block_to_free);
} else {
block_to_free->next = mm_handler->free_list;
mm_handler->free_list = block_to_free;
mm_handler->current_available++;
}
return;
}