diff options
| author | Kirill Tkhai <[email protected]> | 2018-02-26 12:59:56 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2018-02-27 16:01:35 +0000 |
| commit | 02df428ca291f20285f04c25a7efd664a5d83551 (patch) | |
| tree | 44699a8bc3dc68fc37727a0466805bdd9bb981b0 /net/sched/cls_api.c | |
| parent | net: Convert nfs_net_ops (diff) | |
| download | kernel-02df428ca291f20285f04c25a7efd664a5d83551.tar.gz kernel-02df428ca291f20285f04c25a7efd664a5d83551.zip | |
net: Convert simple pernet_operations
These pernet_operations make pretty simple actions
like variable initialization on init, debug checks
on exit, and so on, and they obviously are able
to be executed in parallel with any others:
vrf_net_ops
lockd_net_ops
grace_net_ops
xfrm6_tunnel_net_ops
kcm_net_ops
tcf_net_ops
Signed-off-by: Kirill Tkhai <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/sched/cls_api.c')
| -rw-r--r-- | net/sched/cls_api.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c index 9d1a8bbf8152..19f9f421d5b7 100644 --- a/net/sched/cls_api.c +++ b/net/sched/cls_api.c @@ -1618,6 +1618,7 @@ static struct pernet_operations tcf_net_ops = { .exit = tcf_net_exit, .id = &tcf_net_id, .size = sizeof(struct tcf_net), + .async = true, }; static int __init tc_filter_init(void) |
