| 137 | } |
| 138 | |
| 139 | void DispatchQueue::dispatch_throttle_release(uint64_t msize) |
| 140 | { |
| 141 | if (msize) { |
| 142 | ldout(cct,10) << __func__ << " " << msize << " to dispatch throttler " |
| 143 | << dispatch_throttler.get_current() << "/" |
| 144 | << dispatch_throttler.get_max() << dendl; |
| 145 | dispatch_throttler.put(msize); |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | /* |
| 150 | * This function delivers incoming messages to the Messenger. |
no test coverage detected