]> git.baikalelectronics.ru Git - kernel.git/commit
net/ipv6: Fix index counter for unicast addresses in in6_dump_addrs
authorDavid Ahern <dsahern@gmail.com>
Fri, 19 Oct 2018 17:00:19 +0000 (10:00 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sat, 20 Oct 2018 22:43:14 +0000 (15:43 -0700)
commita562d75f937432a5395345a41820ea8ea6d8f62a
treee594a4b9c9447bb6bc494994e5b9cfe655333ee7
parent0670b30db8abc9b4f5a9552d9750a224a775eb67
net/ipv6: Fix index counter for unicast addresses in in6_dump_addrs

The loop wants to skip previously dumped addresses, so loops until
current index >= saved index. If the message fills it wants to save
the index for the next address to dump - ie., the one that did not
fit in the current message.

Currently, it is incrementing the index counter before comparing to the
saved index, and then the saved index is off by 1 - it assumes the
current address is going to fit in the message.

Change the index handling to increment only after a succesful dump.

Fixes: 6297547c1e2f4 ("ipv6: convert idev_list to list macros")
Signed-off-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/addrconf.c