summaryrefslogtreecommitdiff
path: root/ring_tx.c
diff options
context:
space:
mode:
authorDaniel Borkmann <dborkman@redhat.com>2013-05-30 16:12:01 +0200
committerDaniel Borkmann <dborkman@redhat.com>2013-05-30 16:16:41 +0200
commit2e76c84b8e19ba02e82ce90370efe9feefd5a4b3 (patch)
tree529b926ffae6af364ae66dcf02585cb0e516ec29 /ring_tx.c
parent8ecf69c3ded4edaa164ed1d645629c1011de44a9 (diff)
ring: set_sockopt_tpacket: rename to set_sockopt_tpacket_v2
Rename it to set_sockopt_tpacket_v2 so that we later on can also add other versions and have it clearly stated which one we use. Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Diffstat (limited to 'ring_tx.c')
-rw-r--r--ring_tx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ring_tx.c b/ring_tx.c
index 2ad1de9..f91f7f7 100644
--- a/ring_tx.c
+++ b/ring_tx.c
@@ -70,7 +70,7 @@ void create_tx_ring(int sock, struct ring *ring, int verbose)
{
int ret;
- set_sockopt_tpacket(sock);
+ set_sockopt_tpacket_v2(sock);
retry:
ret = setsockopt(sock, SOL_PACKET, PACKET_TX_RING, &ring->layout,
sizeof(ring->layout));