Re: [PATCH net-next] act_mirred: Fix mirred_init_module error handling

2019-10-09 Thread Jakub Kicinski
On Wed, 9 Oct 2019 11:10:52 +0800, YueHaibing wrote:
> If tcf_register_action failed, mirred_device_notifier
> should be unregistered.
> 
> Fixes: 3b87956ea645 ("net sched: fix race in mirred device removal")
> Signed-off-by: YueHaibing 

Why does the subject say net-next, looks like the bug was introduced
all the way back in 2.6.36. For fixes for code which is already in
Linus'es main tree the subject should say [PATCH net]. Those are on the
fast path to the -rc releases and stable.

Applied to net, and queued for stable, please let me know if I
misunderstood the intention here.


[PATCH net-next] act_mirred: Fix mirred_init_module error handling

2019-10-08 Thread YueHaibing
If tcf_register_action failed, mirred_device_notifier
should be unregistered.

Fixes: 3b87956ea645 ("net sched: fix race in mirred device removal")
Signed-off-by: YueHaibing 
---
 net/sched/act_mirred.c | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/net/sched/act_mirred.c b/net/sched/act_mirred.c
index 9d1bf50..d0d397e 100644
--- a/net/sched/act_mirred.c
+++ b/net/sched/act_mirred.c
@@ -479,7 +479,11 @@ static int __init mirred_init_module(void)
return err;
 
pr_info("Mirror/redirect action on\n");
-   return tcf_register_action(_mirred_ops, _net_ops);
+   err = tcf_register_action(_mirred_ops, _net_ops);
+   if (err)
+   unregister_netdevice_notifier(_device_notifier);
+
+   return err;
 }
 
 static void __exit mirred_cleanup_module(void)
-- 
2.7.4