aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2016-12-22 14:16:10 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-01-05 15:27:43 +1100
commit8594b9c5bd456205255ea2241ba224f47480efad (patch)
treed0d6953e0ffe8fbc3e9c8661f813098b5801845c /include
parent40689fadbc0de48d565cf635cd8ab7fc14c1519f (diff)
downloadskiboot-8594b9c5bd456205255ea2241ba224f47480efad.zip
skiboot-8594b9c5bd456205255ea2241ba224f47480efad.tar.gz
skiboot-8594b9c5bd456205255ea2241ba224f47480efad.tar.bz2
buddy: Add a simple generic buddy allocator
It operates on bits representing whatever objects the caller wants it to represent, it's not per-se a memory allocator (it's meant to be used among others by XIVE for VP allocations). As such it cannot keep linked lists of free objects, so don't expect stellar perfs. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> [stewart@linux.vnet.ibm.com: add (C) header, fix gcc4.8 build error] Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include')
-rw-r--r--include/buddy.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/include/buddy.h b/include/buddy.h
new file mode 100644
index 0000000..fa97eb0
--- /dev/null
+++ b/include/buddy.h
@@ -0,0 +1,54 @@
+/* Copyright 2016 IBM Corp.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ * implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * Simple power-of-two buddy allocation mechanism.
+ *
+ */
+#ifndef __BUDDY_H
+#define __BUDDY_H
+
+#include "bitmap.h"
+
+#define BUDDY_MAX_ORDER 30
+
+struct buddy {
+ /* max_order is both the height of the tree - 1 and the ^2 of the
+ * size of the lowest level.
+ *
+ * So if we have 512k elements, max_order is 19, which gives us
+ * a 20 levels tree.
+ *
+ * The max supported order is 30 for now. We can increase that
+ * later if really needed but the performance is going to be
+ * already pretty bad if we go near that limit.
+ */
+ unsigned int max_order;
+
+ /* For each order, we keep track of how many free modes we
+ * have there to speed up searches.
+ */
+ unsigned int freecounts[BUDDY_MAX_ORDER + 1];
+ bitmap_elem_t map[];
+};
+
+extern struct buddy *buddy_create(unsigned int max_order);
+extern void buddy_destroy(struct buddy *b);
+
+extern int buddy_alloc(struct buddy *b, unsigned int order);
+extern bool buddy_reserve(struct buddy *b, unsigned int index, unsigned int order);
+extern void buddy_free(struct buddy *b, unsigned int index, unsigned int order);
+extern void buddy_reset(struct buddy *b);
+
+#endif /* __BUDDY_H */