summaryrefslogtreecommitdiffstats
path: root/sys/sys/pctrie.h
diff options
context:
space:
mode:
authorjeff <jeff@FreeBSD.org>2013-05-12 04:05:01 +0000
committerjeff <jeff@FreeBSD.org>2013-05-12 04:05:01 +0000
commit1cfa4a3bc403c2063b3d466b40803508808ccd88 (patch)
tree24c4765489aa3363e212f7c1605fef4ae68eccc2 /sys/sys/pctrie.h
parentfb8ceacf96f5d7303a0e50e3f67e7f7a33dc70a8 (diff)
downloadFreeBSD-src-1cfa4a3bc403c2063b3d466b40803508808ccd88.zip
FreeBSD-src-1cfa4a3bc403c2063b3d466b40803508808ccd88.tar.gz
- Add a new general purpose path-compressed radix trie which can be used
with any structure containing a uint64_t index. The tree code auto-generates type safe wrappers. - Eliminate the buf splay and replace it with pctrie. This is not only significantly faster with large files but also allows for the possibility of shared locking. Reviewed by: alc, attilio Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'sys/sys/pctrie.h')
-rw-r--r--sys/sys/pctrie.h119
1 files changed, 119 insertions, 0 deletions
diff --git a/sys/sys/pctrie.h b/sys/sys/pctrie.h
new file mode 100644
index 0000000..017657b
--- /dev/null
+++ b/sys/sys/pctrie.h
@@ -0,0 +1,119 @@
+/*
+ * Copyright (c) 2013 EMC Corp.
+ * Copyright (c) 2011 Jeffrey Roberson <jeff@freebsd.org>
+ * Copyright (c) 2008 Mayur Shardul <mayur.shardul@gmail.com>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. 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.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
+ *
+ * $FreeBSD$
+ */
+
+#ifndef _SYS_PCTRIE_H_
+#define _SYS_PCTRIE_H_
+
+#include <sys/_pctrie.h>
+
+#ifdef _KERNEL
+
+#define PCTRIE_DEFINE(name, type, field, allocfn, freefn) \
+ \
+CTASSERT(sizeof(((struct type *)0)->field) == sizeof(uint64_t)); \
+CTASSERT((__offsetof(struct type, field) & (sizeof(uint64_t) - 1)) == 0); \
+ \
+static __inline struct type * \
+name##_PCTRIE_VAL2PTR(uint64_t *val) \
+{ \
+ \
+ if (val == NULL) \
+ return (NULL); \
+ return (struct type *) \
+ ((uintptr_t)val - __offsetof(struct type, field)); \
+} \
+ \
+static __inline uint64_t * \
+name##_PCTRIE_PTR2VAL(struct type *ptr) \
+{ \
+ \
+ return &ptr->field; \
+} \
+ \
+static __inline int \
+name##_PCTRIE_INSERT(struct pctrie *ptree, struct type *ptr) \
+{ \
+ \
+ return pctrie_insert(ptree, name##_PCTRIE_PTR2VAL(ptr), \
+ allocfn); \
+} \
+ \
+static __inline struct type * \
+name##_PCTRIE_LOOKUP(struct pctrie *ptree, uint64_t key) \
+{ \
+ \
+ return name##_PCTRIE_VAL2PTR(pctrie_lookup(ptree, key)); \
+} \
+ \
+static __inline struct type * \
+name##_PCTRIE_LOOKUP_LE(struct pctrie *ptree, uint64_t key) \
+{ \
+ \
+ return name##_PCTRIE_VAL2PTR(pctrie_lookup_le(ptree, key)); \
+} \
+ \
+static __inline struct type * \
+name##_PCTRIE_LOOKUP_GE(struct pctrie *ptree, uint64_t key) \
+{ \
+ \
+ return name##_PCTRIE_VAL2PTR(pctrie_lookup_ge(ptree, key)); \
+} \
+ \
+static __inline void \
+name##_PCTRIE_RECLAIM(struct pctrie *ptree) \
+{ \
+ \
+ pctrie_reclaim_allnodes(ptree, freefn); \
+} \
+ \
+static __inline void \
+name##_PCTRIE_REMOVE(struct pctrie *ptree, uint64_t key) \
+{ \
+ \
+ pctrie_remove(ptree, key, freefn); \
+}
+
+typedef void *(*pctrie_alloc_t)(struct pctrie *ptree);
+typedef void (*pctrie_free_t)(struct pctrie *ptree, void *node);
+
+int pctrie_insert(struct pctrie *ptree, uint64_t *val,
+ pctrie_alloc_t allocfn);
+uint64_t *pctrie_lookup(struct pctrie *ptree, uint64_t key);
+uint64_t *pctrie_lookup_ge(struct pctrie *ptree, uint64_t key);
+uint64_t *pctrie_lookup_le(struct pctrie *ptree, uint64_t key);
+void pctrie_reclaim_allnodes(struct pctrie *ptree,
+ pctrie_free_t freefn);
+void pctrie_remove(struct pctrie *ptree, uint64_t key,
+ pctrie_free_t freefn);
+size_t pctrie_node_size(void);
+int pctrie_zone_init(void *mem, int size, int flags);
+
+#endif /* _KERNEL */
+#endif /* !_SYS_PCTRIE_H_ */
OpenPOWER on IntegriCloud