mirror of https://gitee.com/openkylin/linux.git
netfilter: Use proper rwlock init function
Replace the open coded initialization with the init function. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Hans Schillstrom <hans.schillstrom@ericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1e5289e121
commit
3458e21c0d
|
@ -3679,7 +3679,7 @@ int __net_init ip_vs_control_net_init(struct net *net)
|
||||||
int idx;
|
int idx;
|
||||||
struct netns_ipvs *ipvs = net_ipvs(net);
|
struct netns_ipvs *ipvs = net_ipvs(net);
|
||||||
|
|
||||||
ipvs->rs_lock = __RW_LOCK_UNLOCKED(ipvs->rs_lock);
|
rwlock_init(&ipvs->rs_lock);
|
||||||
|
|
||||||
/* Initialize rs_table */
|
/* Initialize rs_table */
|
||||||
for (idx = 0; idx < IP_VS_RTAB_SIZE; idx++)
|
for (idx = 0; idx < IP_VS_RTAB_SIZE; idx++)
|
||||||
|
|
Loading…
Reference in New Issue