* bufspace_release: * * Release reserved bufspace after bufspace_adjust() has consumed it. */
| 719 | * Release reserved bufspace after bufspace_adjust() has consumed it. |
| 720 | */ |
| 721 | static void |
| 722 | bufspace_release(struct bufdomain *bd, int size) |
| 723 | { |
| 724 | |
| 725 | atomic_subtract_long(&bd->bd_bufspace, size); |
| 726 | } |
| 727 | |
| 728 | /* |
| 729 | * bufspace_wait: |
no test coverage detected