Skip to content

Commit 505a924

Browse files
Kamal Heibdavem330
authored andcommitted
net/mlx4_en: Change the error print to debug print
The error print within mlx4_en_calc_rx_buf() should be a debug print. Fixes: 51151a1 ('mlx4: allow order-0 memory allocations in RX path') Signed-off-by: Kamal Heib <[email protected]> Signed-off-by: Tariq Toukan <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 4c19e2f commit 505a924

File tree

1 file changed

+2
-1
lines changed
  • drivers/net/ethernet/mellanox/mlx4

1 file changed

+2
-1
lines changed

drivers/net/ethernet/mellanox/mlx4/en_rx.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -997,7 +997,8 @@ void mlx4_en_calc_rx_buf(struct net_device *dev)
997997
en_dbg(DRV, priv, "Rx buffer scatter-list (effective-mtu:%d num_frags:%d):\n",
998998
eff_mtu, priv->num_frags);
999999
for (i = 0; i < priv->num_frags; i++) {
1000-
en_err(priv,
1000+
en_dbg(DRV,
1001+
priv,
10011002
" frag:%d - size:%d stride:%d\n",
10021003
i,
10031004
priv->frag_info[i].frag_size,

0 commit comments

Comments
 (0)