Re: [ovs-dev] [PATCH 5/7] tests/test-classifier: Properly use ovsrcu_postpone.

2014-10-29 Thread Jarno Rajahalme
Thanks for the review! Pushed, Jarno On Oct 28, 2014, at 4:28 PM, Ben Pfaff wrote: > On Fri, Oct 24, 2014 at 01:36:39PM -0700, Jarno Rajahalme wrote: >> Following patches add stricter checks of RCU memory management of >> rules removed from a classifier. This patch properly postpones >> fre

Re: [ovs-dev] [PATCH 5/7] tests/test-classifier: Properly use ovsrcu_postpone.

2014-10-28 Thread Ben Pfaff
On Fri, Oct 24, 2014 at 01:36:39PM -0700, Jarno Rajahalme wrote: > Following patches add stricter checks of RCU memory management of > rules removed from a classifier. This patch properly postpones > freeing of 'struct cls_rule's that have been removed from a > classifier. > > Also remove all the

[ovs-dev] [PATCH 5/7] tests/test-classifier: Properly use ovsrcu_postpone.

2014-10-24 Thread Jarno Rajahalme
Following patches add stricter checks of RCU memory management of rules removed from a classifier. This patch properly postpones freeing of 'struct cls_rule's that have been removed from a classifier. Also remove all the rules from classifier before destructing it in test_rule_replacement(). Sig