Bad Jeffr! No cookie!

Temporarily disable the UMA_MD_SMALL_ALLOC stuff since recent commits
break sparc64, amd64, ia64 and alpha.  It appears only i386 and maybe
powerpc were not broken.
This commit is contained in:
peter 2003-09-20 23:35:33 +00:00
parent f659474fae
commit bfb0c45b8f

View File

@ -1059,7 +1059,7 @@ zone_ctor(void *mem, int size, void *udata)
zone_large_init(zone);
else
zone_small_init(zone);
#ifdef UMA_MD_SMALL_ALLOC
#ifdef UMA_MD_SMALL_ALLOC_broken
if (zone->uz_ppera == 1) {
zone->uz_allocf = uma_small_alloc;
zone->uz_freef = uma_small_free;
@ -1255,7 +1255,7 @@ uma_startup(void *bootmem)
bucket_init();
#ifdef UMA_MD_SMALL_ALLOC
#ifdef UMA_MD_SMALL_ALLOC_broken
booted = 1;
#endif