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 /net/l2tp | |
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 'net/l2tp')
-rw-r--r-- | net/l2tp/l2tp_core.c | 1 | ||||
-rw-r--r-- | net/l2tp/l2tp_ppp.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/net/l2tp/l2tp_core.c b/net/l2tp/l2tp_core.c index b86868da50d4..14b67dfacc4b 100644 --- a/net/l2tp/l2tp_core.c +++ b/net/l2tp/l2tp_core.c | |||
@@ -1789,7 +1789,6 @@ static struct pernet_operations l2tp_net_ops = { | |||
1789 | .exit = l2tp_exit_net, | 1789 | .exit = l2tp_exit_net, |
1790 | .id = &l2tp_net_id, | 1790 | .id = &l2tp_net_id, |
1791 | .size = sizeof(struct l2tp_net), | 1791 | .size = sizeof(struct l2tp_net), |
1792 | .async = true, | ||
1793 | }; | 1792 | }; |
1794 | 1793 | ||
1795 | static int __init l2tp_init(void) | 1794 | static int __init l2tp_init(void) |
diff --git a/net/l2tp/l2tp_ppp.c b/net/l2tp/l2tp_ppp.c index f24504efe729..d6deca11da19 100644 --- a/net/l2tp/l2tp_ppp.c +++ b/net/l2tp/l2tp_ppp.c | |||
@@ -1762,7 +1762,6 @@ static struct pernet_operations pppol2tp_net_ops = { | |||
1762 | .init = pppol2tp_init_net, | 1762 | .init = pppol2tp_init_net, |
1763 | .exit = pppol2tp_exit_net, | 1763 | .exit = pppol2tp_exit_net, |
1764 | .id = &pppol2tp_net_id, | 1764 | .id = &pppol2tp_net_id, |
1765 | .async = true, | ||
1766 | }; | 1765 | }; |
1767 | 1766 | ||
1768 | /***************************************************************************** | 1767 | /***************************************************************************** |