]> git.baikalelectronics.ru Git - kernel.git/commit
Fixing a bug in team driver due to incorrect 'unsigned int' to 'int' conversion
authorAlex Sidorenko <alexandre.sidorenko@hpe.com>
Fri, 7 Oct 2016 13:02:33 +0000 (09:02 -0400)
committerDavid S. Miller <davem@davemloft.net>
Sat, 8 Oct 2016 03:50:39 +0000 (23:50 -0400)
commit061f50951a7d455e1189245639ae3ef20d854d35
tree7918c00daabbe03ac8a156358ac023a3a959064b
parent5625f4052749a43f2a0ef5f974fd639c4a3560f5
Fixing a bug in team driver due to incorrect 'unsigned int' to 'int' conversion

Roundrobin runner of team driver uses 'unsigned int' variable to count
the number of sent_packets. Later it is passed to a subroutine
team_num_to_port_index(struct team *team, int num) as 'num' and when
we reach MAXINT (2**31-1), 'num' becomes negative.

This leads to using incorrect hash-bucket for port lookup
and as a result, packets are dropped. The fix consists of changing
'int num' to 'unsigned int num'. Testing of a fixed kernel shows that
there is no packet drop anymore.

Signed-off-by: Alex Sidorenko <alexandre.sidorenko@hpe.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/if_team.h