aboutsummaryrefslogtreecommitdiffstats
path: root/include/sys
diff options
context:
space:
mode:
Diffstat (limited to 'include/sys')
-rw-r--r--include/sys/avl_impl.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/sys/avl_impl.h b/include/sys/avl_impl.h
index f577ecd42..c464a62a1 100644
--- a/include/sys/avl_impl.h
+++ b/include/sys/avl_impl.h
@@ -147,7 +147,9 @@ struct avl_tree {
int (*avl_compar)(const void *, const void *);
size_t avl_offset; /* offsetof(type, avl_link_t field) */
ulong_t avl_numnodes; /* number of nodes in the tree */
- size_t avl_size; /* sizeof user type struct */
+#ifndef _KERNEL
+ size_t avl_pad; /* For backwards ABI compatibility. */
+#endif
};