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

Commit 23363b87 authored by David S. Miller's avatar David S. Miller
Browse files

Merge branch 'pernet_operations-convert-part-3'



Kirill Tkhai says:

====================
Converting pernet_operations (part #3)

This patchset continues to review and to convert pernet_operations
to async. Where it is possible, they are grouped by type of actions
init/exit methods ([1/28], for example). I hope this will make
the review a little bit easier. The changes are tree-wide: in net, fs,
drivers and security.
====================

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents 7f897db3 3edbccf9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -4549,6 +4549,7 @@ 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)
+1 −0
Original line number Diff line number Diff line
@@ -4791,6 +4791,7 @@ 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)
+1 −0
Original line number Diff line number Diff line
@@ -1694,6 +1694,7 @@ 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)
+1 −0
Original line number Diff line number Diff line
@@ -1325,6 +1325,7 @@ 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)
+1 −0
Original line number Diff line number Diff line
@@ -1024,6 +1024,7 @@ 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