diff options
author | Daniel Borkmann <dborkman@redhat.com> | 2013-05-30 18:17:40 +0200 |
---|---|---|
committer | Daniel Borkmann <dborkman@redhat.com> | 2013-05-30 18:17:40 +0200 |
commit | 2ac7ea413beb6324a1b00e0b5081688ded32a61b (patch) | |
tree | 7d6396bc01821baaa5b0cc64c2b1b14a234521ea /ring_rx.h | |
parent | 9be74e71213ab2a8d449d1cc6cfa4d533fce0d0f (diff) |
ring: setup_{rx,tx}_ring_layout: use bool for jumbo_support
There's no good reason why we currently waste an 'int' for
jumbo_support while this must better be done as 'bool'.
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Diffstat (limited to 'ring_rx.h')
-rw-r--r-- | ring_rx.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ extern void mmap_rx_ring(int sock, struct ring *ring); extern void alloc_rx_ring_frames(struct ring *ring); extern void bind_rx_ring(int sock, struct ring *ring, int ifindex); extern void setup_rx_ring_layout(int sock, struct ring *ring, - unsigned int size, int jumbo_support, bool v3); + unsigned int size, bool jumbo_support, bool v3); static inline int user_may_pull_from_rx(struct tpacket2_hdr *hdr) { |