diff options
author | Kirill Tkhai <ktkhai@virtuozzo.com> | 2018-03-27 11:02:13 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-27 13:18:09 -0400 |
commit | 2f635ceeb22ba13c307236d69795fbb29cfa3e7c (patch) | |
tree | fe8b187d1530a7e434aecaf2d5a9565247f0263e /include/net/net_namespace.h | |
parent | 094374e5e173c6639eccf6a2af5e1357a0869848 (diff) |
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>
Diffstat (limited to 'include/net/net_namespace.h')
-rw-r--r-- | include/net/net_namespace.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/net/net_namespace.h b/include/net/net_namespace.h index 09e30bdc7876..37bcf8382b61 100644 --- a/include/net/net_namespace.h +++ b/include/net/net_namespace.h | |||
@@ -333,12 +333,6 @@ struct pernet_operations { | |||
333 | void (*exit_batch)(struct list_head *net_exit_list); | 333 | void (*exit_batch)(struct list_head *net_exit_list); |
334 | unsigned int *id; | 334 | unsigned int *id; |
335 | size_t size; | 335 | size_t size; |
336 | /* | ||
337 | * Indicates above methods are allowed to be executed in parallel | ||
338 | * with methods of any other pernet_operations, i.e. they are not | ||
339 | * need write locked net_sem. | ||
340 | */ | ||
341 | bool async; | ||
342 | }; | 336 | }; |
343 | 337 | ||
344 | /* | 338 | /* |