* Bi-directional arms receive on both in and out fd */
| 745 | * Bi-directional arms receive on both in and out fd |
| 746 | */ |
| 747 | static void submit_bidi_receive(struct io_uring *ring, struct conn *c) |
| 748 | { |
| 749 | __submit_receive(ring, c, &c->cd[0], c->in_fd); |
| 750 | __submit_receive(ring, c, &c->cd[1], c->out_fd); |
| 751 | } |
| 752 | |
| 753 | /* |
| 754 | * We hit -ENOBUFS, which means that we ran out of buffers in our current |
no test coverage detected