aboutsummaryrefslogtreecommitdiffstats
path: root/man7/packet.7
diff options
Diffstat (limited to 'man7/packet.7')
-rw-r--r--man7/packet.712
1 files changed, 6 insertions, 6 deletions
diff --git a/man7/packet.7 b/man7/packet.7
index 4bfd55d9f8..8eb3f56a3d 100644
--- a/man7/packet.7
+++ b/man7/packet.7
@@ -297,7 +297,7 @@ The group is deleted when the last socket is closed.
Fanout supports multiple algorithms to spread traffic between sockets,
as follows:
.RS
-.IP \(bu 3
+.IP \[bu] 3
The default mode,
.BR PACKET_FANOUT_HASH ,
sends packets from the same flow to the same socket to maintain
@@ -305,21 +305,21 @@ per-flow ordering.
For each packet, it chooses a socket by taking the packet flow hash
modulo the number of sockets in the group, where a flow hash is a hash
over network-layer address and optional transport-layer port fields.
-.IP \(bu
+.IP \[bu]
The load-balance mode
.B PACKET_FANOUT_LB
implements a round-robin algorithm.
-.IP \(bu
+.IP \[bu]
.B PACKET_FANOUT_CPU
selects the socket based on the CPU that the packet arrived on.
-.IP \(bu
+.IP \[bu]
.B PACKET_FANOUT_ROLLOVER
processes all data on a single socket, moving to the next when one
becomes backlogged.
-.IP \(bu
+.IP \[bu]
.B PACKET_FANOUT_RND
selects the socket using a pseudo-random number generator.
-.IP \(bu
+.IP \[bu]
.B PACKET_FANOUT_QM
.\" commit 2d36097d26b5991d71a2cf4a20c1a158f0f1bfcd
(available since Linux 3.14)