Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2f635cee authored by Kirill Tkhai's avatar Kirill Tkhai Committed by David S. Miller
Browse files

net: Drop pernet_operations::async



Synchronous pernet_operations are not allowed anymore.
All are asynchronous. So, drop the structure member.

Signed-off-by: default avatarKirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 094374e5
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -4554,7 +4554,6 @@ static struct pernet_operations cma_pernet_operations = {
	.exit = cma_exit_net,
	.id = &cma_pernet_id,
	.size = sizeof(struct cma_pernet),
	.async = true,
};

static int __init cma_init(void)
+0 −1
Original line number Diff line number Diff line
@@ -4791,7 +4791,6 @@ static struct pernet_operations bond_net_ops = {
	.exit = bond_net_exit,
	.id   = &bond_net_id,
	.size = sizeof(struct bond_net),
	.async = true,
};

static int __init bonding_init(void)
+0 −1
Original line number Diff line number Diff line
@@ -1694,7 +1694,6 @@ static struct pernet_operations geneve_net_ops = {
	.exit_batch = geneve_exit_batch_net,
	.id   = &geneve_net_id,
	.size = sizeof(struct geneve_net),
	.async = true,
};

static int __init geneve_init_module(void)
+0 −1
Original line number Diff line number Diff line
@@ -1325,7 +1325,6 @@ static struct pernet_operations gtp_net_ops = {
	.exit	= gtp_net_exit,
	.id	= &gtp_net_id,
	.size	= sizeof(struct gtp_net),
	.async	= true,
};

static int __init gtp_init(void)
+0 −1
Original line number Diff line number Diff line
@@ -1040,7 +1040,6 @@ static struct pernet_operations ipvlan_net_ops = {
	.id = &ipvlan_netid,
	.size = sizeof(struct ipvlan_netns),
	.exit = ipvlan_ns_exit,
	.async = true,
};

static int __init ipvlan_init_module(void)
Loading