Adjust bytes under management by UMA. */
| 648 | |
| 649 | /* Adjust bytes under management by UMA. */ |
| 650 | static inline void |
| 651 | uma_total_dec(unsigned long size) |
| 652 | { |
| 653 | |
| 654 | atomic_subtract_long(&uma_kmem_total, size); |
| 655 | } |
| 656 | |
| 657 | static inline void |
| 658 | uma_total_inc(unsigned long size) |
nothing calls this directly
no test coverage detected