https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193465
Sean Bruno <sbr...@freebsd.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |In Discussion --- Comment #2 from Sean Bruno <sbr...@freebsd.org> --- Specifically, this is what I am doing to work around this issue: Index: sys/kern/kern_malloc.c =================================================================== --- sys/kern/kern_malloc.c (revision 271278) +++ sys/kern/kern_malloc.c (working copy) @@ -151,10 +151,21 @@ {1024, "1024", }, {2048, "2048", }, {4096, "4096", }, +#if PAGE_SIZE > 4096 {8192, "8192", }, +#if PAGE_SIZE > 8192 {16384, "16384", }, +#if PAGE_SIZE > 16384 {32768, "32768", }, +#if PAGE_SIZE > 32768 {65536, "65536", }, +#if PAGE_SIZE > 65536 +#error "Unsupported PAGE_SIZE" +#endif +#endif +#endif +#endif +#endif {0, NULL}, }; -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"