* Handle large allocations and frees by using kmem_malloc directly. */
| 565 | * Handle large allocations and frees by using kmem_malloc directly. |
| 566 | */ |
| 567 | static inline bool |
| 568 | malloc_large_slab(uma_slab_t slab) |
| 569 | { |
| 570 | uintptr_t va; |
| 571 | |
| 572 | va = (uintptr_t)slab; |
| 573 | return ((va & 1) != 0); |
| 574 | } |
| 575 | |
| 576 | static inline size_t |
| 577 | malloc_large_size(uma_slab_t slab) |
no outgoing calls
no test coverage detected