OSDN Git Service

qede: Remove a erroneous ++ in 'qede_rx_build_jumbo()'
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sun, 4 Apr 2021 12:42:44 +0000 (14:42 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 5 Apr 2021 18:59:33 +0000 (11:59 -0700)
commit1ec3d02f9cdf2a4b89664145c7965aa46398d31e
treeedc592a141b173ad4fe61d3c68cb2affdafec7e0
parentc438a801e0bb2a4db1d3183a9482af891577a281
qede: Remove a erroneous ++ in 'qede_rx_build_jumbo()'

This ++ is confusing. It looks duplicated with the one already performed in
'skb_fill_page_desc()'.

In fact, it is harmless. 'nr_frags' is written twice with the same value.
Once, because of the nr_frags++, and once because of the 'nr_frags = i + 1'
in 'skb_fill_page_desc()'.

So axe this post-increment to avoid confusion.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Acked-by: Manish Chopra <manishc@marvell.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/qlogic/qede/qede_fp.c