+ = { (tag), VM_TAG_BT }; \
+ vm_size_t tsize = (size); \
+ kalloc_canblock(&tsize, FALSE, &site); })
+
+
+/* these versions update the size reference with the actual size allocated */
+
+#define kallocp(size) \
+ ({ static vm_allocation_site_t site __attribute__((section("__DATA, __data"))); \
+ kalloc_canblock((size), TRUE, &site); })
+
+#define kallocp_tag(size, tag) \
+ ({ static vm_allocation_site_t site __attribute__((section("__DATA, __data"))) \
+ = { (tag), 0 }; \
+ kalloc_canblock((size), TRUE, &site); })
+
+#define kallocp_tag_bt(size, tag) \
+ ({ static vm_allocation_site_t site __attribute__((section("__DATA, __data"))) \
+ = { (tag), VM_TAG_BT }; \
+ kalloc_canblock((size), TRUE, &site); })
+
+#define kallocp_noblock(size) \
+ ({ static vm_allocation_site_t site __attribute__((section("__DATA, __data"))); \
+ kalloc_canblock((size), FALSE, &site); })
+
+#define kallocp_noblock_tag_bt(size, tag) \
+ ({ static vm_allocation_site_t site __attribute__((section("__DATA, __data"))) \
+ = { (tag), VM_TAG_BT }; \