From 0c59f7ff0112abd1261afb8f21b7c00fc5e37885 Mon Sep 17 00:00:00 2001 From: Maria Matejka Date: Wed, 9 Mar 2022 09:13:31 +0100 Subject: Revert "Bound allocated pages to resource pools with page caches to avoid unnecessary syscalls" This reverts commit 7f0e59820899c30a243c18556ce2e3fb72d6d221. --- lib/resource.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'lib/resource.h') diff --git a/lib/resource.h b/lib/resource.h index 26030aea..1b9fed33 100644 --- a/lib/resource.h +++ b/lib/resource.h @@ -94,12 +94,10 @@ void sl_free(slab *, void *); void buffer_realloc(void **buf, unsigned *size, unsigned need, unsigned item_size); -extern long page_size; - /* Allocator of whole pages; for use in slabs and other high-level allocators. */ -void *alloc_page(pool *); -void free_page(pool *, void *); -#define PAGE_HEAD(x) ((void *) (((intptr_t) (x)) & ~(page_size-1))) +u64 get_page_size(void); +void *alloc_page(void); +void free_page(void *); #ifdef HAVE_LIBDMALLOC /* -- cgit v1.2.3