| 647 | } |
| 648 | |
| 649 | static inline uint64_t |
| 650 | dbuf_cache_lowater_bytes(void) |
| 651 | { |
| 652 | uint64_t dbuf_cache_target = dbuf_cache_target_bytes(); |
| 653 | return (dbuf_cache_target - |
| 654 | (dbuf_cache_target * dbuf_cache_lowater_pct) / 100); |
| 655 | } |
| 656 | |
| 657 | static inline boolean_t |
| 658 | dbuf_cache_above_lowater(void) |
no test coverage detected