diff options
| author | Kirill Tkhai <[email protected]> | 2018-02-26 16:01:16 +0300 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2018-02-27 11:01:37 -0500 |
| commit | 9e7674519151646b1f36b2bf9d5fbdccba6711d2 (patch) | |
| tree | 043b8320c5ab45915661ff438344855ae34cf428 | |
| parent | f60f33460a8cc690398f3e978851271c20364aa3 (diff) | |
net: Convert gtp_net_ops
These pernet_operations are similar to bond_net_ops. Exit method
unregisters all net gtp devices, and it looks like another
pernet_operations are not interested in foreign net gtp list.
So, it's possible to mark them async.
Signed-off-by: Kirill Tkhai <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
| -rw-r--r-- | drivers/net/gtp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/gtp.c b/drivers/net/gtp.c index f38e32a7ec9c..127edd23018f 100644 --- a/drivers/net/gtp.c +++ b/drivers/net/gtp.c @@ -1325,6 +1325,7 @@ static struct pernet_operations gtp_net_ops = { .exit = gtp_net_exit, .id = >p_net_id, .size = sizeof(struct gtp_net), + .async = true, }; static int __init gtp_init(void) |