mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-23 23:21:46 +00:00
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:
parent
094374e5e1
commit
2f635ceeb2
182 changed files with 0 additions and 206 deletions
|
@ -188,7 +188,6 @@ static void __net_exit br_net_exit(struct net *net)
|
|||
|
||||
static struct pernet_operations br_net_ops = {
|
||||
.exit = br_net_exit,
|
||||
.async = true,
|
||||
};
|
||||
|
||||
static const struct stp_proto br_stp_proto = {
|
||||
|
|
|
@ -969,7 +969,6 @@ static struct pernet_operations brnf_net_ops __read_mostly = {
|
|||
.exit = brnf_exit_net,
|
||||
.id = &brnf_net_id,
|
||||
.size = sizeof(struct brnf_net),
|
||||
.async = true,
|
||||
};
|
||||
|
||||
static struct notifier_block brnf_notifier __read_mostly = {
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue