* The cache structure pads perfectly into 64 bytes so we use spare * bits from the embedded cache buckets to store information from the zone * and keep all fast-path allocations accessing a single per-cpu line. */
| 287 | * and keep all fast-path allocations accessing a single per-cpu line. |
| 288 | */ |
| 289 | static inline void |
| 290 | cache_set_uz_flags(uma_cache_t cache, uint32_t flags) |
| 291 | { |
| 292 | |
| 293 | cache->uc_freebucket.ucb_spare = flags; |
| 294 | } |
| 295 | |
| 296 | static inline void |
| 297 | cache_set_uz_size(uma_cache_t cache, uint32_t size) |
no outgoing calls
no test coverage detected