revalidator: Fix ukey stats cache updating.
authorJoe Stringer <joestringer@nicira.com>
Fri, 25 Apr 2014 22:23:43 +0000 (15:23 -0700)
committerAlex Wang <alexw@nicira.com>
Fri, 25 Apr 2014 22:23:54 +0000 (15:23 -0700)
commit28c5588e8e1a8d091c5d2275232c35f2968a97fa
tree192b19a744d209725aa3ecaddccee986ebd6cf43
parent6f12bda359fb13fb2c0d6f958f56956bb76e47d7
revalidator: Fix ukey stats cache updating.

revalidate_ukey() had a bug where it would update the ukey->stats even
if it decided not to push stats (as an optimisation). ukey->stats should
only be updated when those stats are pushed.

This bug would arise in the following situation:
* A flow has been dumped before.
* The flow needs to be revalidated.
* The flow is low-throughput.
* The flow has new statistics to push.

Such cases rely on flow deletion to update the stats. However, that code
pushes the delta between the ukey->stats and the final flow dump. If the
ukey stats cache is updated without the stats being pushed, those stats
would be lost.

This caused intermittent testsuite failures on "learning action -
self-modifying flow with idle_timeout". Introduced by 698ffe3623f1b630ae
"revalidator: Only revalidate high-throughput flows."

Bug #1238927.

Signed-off-by: Joe Stringer <joestringer@nicira.com>
Acked-by: Alex Wang <alexw@nicira.com>
ofproto/ofproto-dpif-upcall.c