| 133 | } |
| 134 | |
| 135 | std::string Queue::GetDesc() const { |
| 136 | const struct llring *ring = queue_; |
| 137 | |
| 138 | return bess::utils::Format("%u/%u", llring_count(ring), ring->common.slots); |
| 139 | } |
| 140 | |
| 141 | /* from upstream */ |
| 142 | void Queue::ProcessBatch(Context *, bess::PacketBatch *batch) { |
nothing calls this directly
no test coverage detected