Re: [PATCH net] net: ipmr: fix unresolved entry dumps

2018-10-18 Thread David Miller
From: David Ahern Date: Thu, 18 Oct 2018 09:16:17 -0600 > On 10/17/18 11:36 PM, David Miller wrote: >> From: Nikolay Aleksandrov >> Date: Wed, 17 Oct 2018 22:34:34 +0300 >> >>> If the skb space ends in an unresolved entry while dumping we'll miss >>> some unresolved entries. The reason is due

Re: [PATCH net] net: ipmr: fix unresolved entry dumps

2018-10-18 Thread David Ahern
On 10/17/18 11:36 PM, David Miller wrote: > From: Nikolay Aleksandrov > Date: Wed, 17 Oct 2018 22:34:34 +0300 > >> If the skb space ends in an unresolved entry while dumping we'll miss >> some unresolved entries. The reason is due to zeroing the entry counter >> between dumping resolved and

Re: [PATCH net] net: ipmr: fix unresolved entry dumps

2018-10-17 Thread David Miller
From: Nikolay Aleksandrov Date: Wed, 17 Oct 2018 22:34:34 +0300 > If the skb space ends in an unresolved entry while dumping we'll miss > some unresolved entries. The reason is due to zeroing the entry counter > between dumping resolved and unresolved mfc entries. We should just > keep counting

Re: [PATCH net] net: ipmr: fix unresolved entry dumps

2018-10-17 Thread Nikolay Aleksandrov
On 17/10/2018 22:34, Nikolay Aleksandrov wrote: > If the skb space ends in an unresolved entry while dumping we'll miss > some unresolved entries. The reason is due to zeroing the entry counter > between dumping resolved and unresolved mfc entries. We should just > keep counting until the whole

[PATCH net] net: ipmr: fix unresolved entry dumps

2018-10-17 Thread Nikolay Aleksandrov
If the skb space ends in an unresolved entry while dumping we'll miss some unresolved entries. The reason is due to zeroing the entry counter between dumping resolved and unresolved mfc entries. We should just keep counting until the whole table is dumped and zero when we move to the next as we