net: Drop pernet_operations::async
Synchronous pernet_operations are not allowed anymore. All are asynchronous. So, drop the structure member. Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
094374e5e1
commit
2f635ceeb2
@@ -77,7 +77,6 @@ static void __net_exit broute_net_exit(struct net *net)
|
||||
static struct pernet_operations broute_net_ops = {
|
||||
.init = broute_net_init,
|
||||
.exit = broute_net_exit,
|
||||
.async = true,
|
||||
};
|
||||
|
||||
static int __init ebtable_broute_init(void)
|
||||
|
||||
@@ -105,7 +105,6 @@ static void __net_exit frame_filter_net_exit(struct net *net)
|
||||
static struct pernet_operations frame_filter_net_ops = {
|
||||
.init = frame_filter_net_init,
|
||||
.exit = frame_filter_net_exit,
|
||||
.async = true,
|
||||
};
|
||||
|
||||
static int __init ebtable_filter_init(void)
|
||||
|
||||
@@ -105,7 +105,6 @@ static void __net_exit frame_nat_net_exit(struct net *net)
|
||||
static struct pernet_operations frame_nat_net_ops = {
|
||||
.init = frame_nat_net_init,
|
||||
.exit = frame_nat_net_exit,
|
||||
.async = true,
|
||||
};
|
||||
|
||||
static int __init ebtable_nat_init(void)
|
||||
|
||||
@@ -48,7 +48,6 @@ static void __net_exit nf_log_bridge_net_exit(struct net *net)
|
||||
static struct pernet_operations nf_log_bridge_net_ops = {
|
||||
.init = nf_log_bridge_net_init,
|
||||
.exit = nf_log_bridge_net_exit,
|
||||
.async = true,
|
||||
};
|
||||
|
||||
static int __init nf_log_bridge_init(void)
|
||||
|
||||
Reference in New Issue
Block a user