diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2015-11-06 10:48:55 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2015-11-06 10:48:55 +0100 |
commit | e9889f58e2e116d10f6b683a267423086b6cf00f (patch) | |
tree | a2376e79ece4e38ce75c2a6d4d40bcef2480eeeb /ring_tx.c | |
parent | c1c3bc8c146b9f395790164a9b4aabebc9f5ab25 (diff) |
ring: Move common ring block_r/frame_nr shrinking to generic function
Merge shrinking code duplicated for RX/TX rings into an own generic
function.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'ring_tx.c')
-rw-r--r-- | ring_tx.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -64,10 +64,7 @@ retry: sizeof(ring->layout)); if (errno == ENOMEM && ring->layout.tp_block_nr > 1) { - ring->layout.tp_block_nr >>= 1; - ring->layout.tp_frame_nr = ring->layout.tp_block_size / - ring->layout.tp_frame_size * - ring->layout.tp_block_nr; + shrink_ring_layout_generic(ring); goto retry; } |