summaryrefslogtreecommitdiff
path: root/ring_rx.c
diff options
context:
space:
mode:
Diffstat (limited to 'ring_rx.c')
-rw-r--r--ring_rx.c17
1 files changed, 2 insertions, 15 deletions
diff --git a/ring_rx.c b/ring_rx.c
index 11d1d08..1df7eb3 100644
--- a/ring_rx.c
+++ b/ring_rx.c
@@ -1,7 +1,7 @@
/*
* netsniff-ng - the packet sniffing beast
* Copyright 2009, 2010 Daniel Borkmann.
- * Copyright 2014 Tobias Klauser.
+ * Copyright 2014, 2015 Tobias Klauser.
* Subject to the GPL, version 2.
*/
@@ -142,20 +142,7 @@ void destroy_rx_ring(int sock, struct ring *ring)
static void setup_rx_ring_layout(int sock, struct ring *ring, size_t size,
bool jumbo_support, bool v3)
{
- fmemset(&ring->layout, 0, sizeof(ring->layout));
-
- ring->layout.tp_block_size = (jumbo_support ?
- RUNTIME_PAGE_SIZE << 4 :
- RUNTIME_PAGE_SIZE << 2);
-
- ring->layout.tp_frame_size = (jumbo_support ?
- TPACKET_ALIGNMENT << 12 :
- TPACKET_ALIGNMENT << 7);
-
- ring->layout.tp_block_nr = size / ring->layout.tp_block_size;
- ring->layout.tp_frame_nr = ring->layout.tp_block_size /
- ring->layout.tp_frame_size *
- ring->layout.tp_block_nr;
+ setup_ring_layout_generic(sock, ring, size, jumbo_support);
if (v3) {
setup_rx_ring_layout_v3(ring);