| 655 | } |
| 656 | |
| 657 | static inline void |
| 658 | uma_total_inc(unsigned long size) |
| 659 | { |
| 660 | |
| 661 | if (atomic_fetchadd_long(&uma_kmem_total, size) > uma_kmem_limit) |
| 662 | uma_reclaim_wakeup(); |
| 663 | } |
| 664 | |
| 665 | /* |
| 666 | * The following two functions may be defined by architecture specific code |
nothing calls this directly
no test coverage detected