net: Convert audit_net_ops
This patch starts to convert pernet_subsys, registered from postcore initcalls. audit_net_init() creates netlink socket, while audit_net_exit() destroys it. The rest of the pernet_list are not interested in the socket, so we make audit_net_ops async. Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com> Acked-by: Andrei Vagin <avagin@virtuozzo.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
46456675ec
commit
906f63ec1d
|
@ -1526,6 +1526,7 @@ static struct pernet_operations audit_net_ops __net_initdata = {
|
|||
.exit = audit_net_exit,
|
||||
.id = &audit_net_id,
|
||||
.size = sizeof(struct audit_net),
|
||||
.async = true,
|
||||
};
|
||||
|
||||
/* Initialize audit support at boot time. */
|
||||
|
|
Loading…
Reference in New Issue