Re: [PATCH net] net/sched: cls_flower: Remove old entries from rhashtable

2018-12-19 Thread David Miller
From: Roi Dayan Date: Wed, 19 Dec 2018 18:07:56 +0200 > When replacing a rule we add the new rule to the rhashtable > but only remove the old if not in skip_sw. > This commit fix this and remove the old rule anyway. > > Fixes: 35cc3cefc4de ("net/sched: cls_flower: Reject duplicated rules also >

Re: [PATCH net] net/sched: cls_flower: Remove old entries from rhashtable

2018-12-19 Thread Or Gerlitz
On Wed, Dec 19, 2018 at 9:41 PM Roi Dayan wrote: > > When replacing a rule we add the new rule to the rhashtable > but only remove the old if not in skip_sw. > This commit fix this and remove the old rule anyway. > > Fixes: 35cc3cefc4de ("net/sched: cls_flower: Reject duplicated rules also > unde

[PATCH net] net/sched: cls_flower: Remove old entries from rhashtable

2018-12-19 Thread Roi Dayan
When replacing a rule we add the new rule to the rhashtable but only remove the old if not in skip_sw. This commit fix this and remove the old rule anyway. Fixes: 35cc3cefc4de ("net/sched: cls_flower: Reject duplicated rules also under skip_sw") Signed-off-by: Roi Dayan Reviewed-by: Vlad Buslov