![]() |
lvs-devel
|
| To: | unlisted-recipients:; (no To-header on input) |
|---|---|
| Subject: | [PATCH net-next] ipvs: ensure RCU read unlock when connection flushing and ipvs is disabled |
| Cc: | Julian Anastasov <ja@xxxxxx>, Wensong Zhang <wensong@xxxxxxxxxxxx>, Simon Horman <horms@xxxxxxxxxxxx>, lvs-devel@xxxxxxxxxxxxxxx, netfilter-devel@xxxxxxxxxxxxxxx, Andrew Sy Kim <kim.andrewsy@xxxxxxxxx> |
| From: | Andrew Sy Kim <kim.andrewsy@xxxxxxxxx> |
| Date: | Thu, 16 Jul 2020 13:03:14 -0400 |
When ipvs is disabled in ip_vs_expire_nodest_conn_flush,
we should break instead of return so that rcu_read_unlock()
is run.
Signed-off-by: Andrew Sy Kim <kim.andrewsy@xxxxxxxxx>
---
net/netfilter/ipvs/ip_vs_conn.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/netfilter/ipvs/ip_vs_conn.c b/net/netfilter/ipvs/ip_vs_conn.c
index a5e9b2d55e57..a90b8eac16ac 100644
--- a/net/netfilter/ipvs/ip_vs_conn.c
+++ b/net/netfilter/ipvs/ip_vs_conn.c
@@ -1422,7 +1422,7 @@ void ip_vs_expire_nodest_conn_flush(struct netns_ipvs
*ipvs)
/* netns clean up started, abort delayed work */
if (!ipvs->enable)
- return;
+ break;
}
rcu_read_unlock();
}
--
2.20.1
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: 答复: [PATCH v2] ipvs: clean code for ip_vs_sync.c, Dan Carpenter |
|---|---|
| Next by Date: | Re: [PATCH net-next] ipvs: ensure RCU read unlock when connection flushing and ipvs is disabled, Julian Anastasov |
| Previous by Thread: | [PATCH,v2] ipvs: fix the connection sync failed in some cases, guodeqing |
| Next by Thread: | Re: [PATCH net-next] ipvs: ensure RCU read unlock when connection flushing and ipvs is disabled, Julian Anastasov |
| Indexes: | [Date] [Thread] [Top] [All Lists] |