Skip to content

Commit 3f8b826

Browse files
Ioana Radulescudavem330
authored andcommitted
dpaa2-eth: Update FQ taildrop threshold and buffer pool count
Now that we have congestion group taildrop configured at all times, we can afford to increase the frame queue taildrop threshold; this will ensure a better response when receiving bursts of large-sized frames. Also decouple the buffer pool count from the Rx FQ taildrop threshold, as above change would increase it too much. Instead, keep the old count as a hardcoded value. With the new limits, we try to ensure that: * we allow enough leeway for large frame bursts (by buffering enough of them in queues to avoid heavy dropping in case of bursty traffic, but when overall ingress bandwidth is manageable) * allow pending frames to be evenly spread between ingress FQs, regardless of frame size * avoid dropping frames due to the buffer pool being empty; this is not a bad behaviour per se, but system overall response is more linear and predictable when frames are dropped at frame queue/group level. Signed-off-by: Ioana Radulescu <[email protected]> Signed-off-by: Ioana Ciornei <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 2c8d1c8 commit 3f8b826

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.h

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,24 +36,24 @@
3636
/* Convert L3 MTU to L2 MFL */
3737
#define DPAA2_ETH_L2_MAX_FRM(mtu) ((mtu) + VLAN_ETH_HLEN)
3838

39-
/* Set the taildrop threshold (in bytes) to allow the enqueue of several jumbo
40-
* frames in the Rx queues (length of the current frame is not
41-
* taken into account when making the taildrop decision)
39+
/* Set the taildrop threshold (in bytes) to allow the enqueue of a large
40+
* enough number of jumbo frames in the Rx queues (length of the current
41+
* frame is not taken into account when making the taildrop decision)
4242
*/
43-
#define DPAA2_ETH_FQ_TAILDROP_THRESH (64 * 1024)
43+
#define DPAA2_ETH_FQ_TAILDROP_THRESH (1024 * 1024)
4444

4545
/* Maximum number of Tx confirmation frames to be processed
4646
* in a single NAPI call
4747
*/
4848
#define DPAA2_ETH_TXCONF_PER_NAPI 256
4949

50-
/* Buffer quota per queue. Must be large enough such that for minimum sized
51-
* frames taildrop kicks in before the bpool gets depleted, so we compute
52-
* how many 64B frames fit inside the taildrop threshold and add a margin
53-
* to accommodate the buffer refill delay.
50+
/* Buffer qouta per channel. We want to keep in check number of ingress frames
51+
* in flight: for small sized frames, congestion group taildrop may kick in
52+
* first; for large sizes, Rx FQ taildrop threshold will ensure only a
53+
* reasonable number of frames will be pending at any given time.
54+
* Ingress frame drop due to buffer pool depletion should be a corner case only
5455
*/
55-
#define DPAA2_ETH_MAX_FRAMES_PER_QUEUE (DPAA2_ETH_FQ_TAILDROP_THRESH / 64)
56-
#define DPAA2_ETH_NUM_BUFS (DPAA2_ETH_MAX_FRAMES_PER_QUEUE + 256)
56+
#define DPAA2_ETH_NUM_BUFS 1280
5757
#define DPAA2_ETH_REFILL_THRESH \
5858
(DPAA2_ETH_NUM_BUFS - DPAA2_ETH_BUFS_PER_CMD)
5959

@@ -63,8 +63,7 @@
6363
* taildrop kicks in
6464
*/
6565
#define DPAA2_ETH_CG_TAILDROP_THRESH(priv) \
66-
(DPAA2_ETH_MAX_FRAMES_PER_QUEUE * dpaa2_eth_queue_count(priv) / \
67-
dpaa2_eth_tc_count(priv))
66+
(1024 * dpaa2_eth_queue_count(priv) / dpaa2_eth_tc_count(priv))
6867

6968
/* Maximum number of buffers that can be acquired/released through a single
7069
* QBMan command

0 commit comments

Comments
 (0)