From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ve1eur01on0120.outbound.protection.outlook.com ([104.47.1.120]:45408 "EHLO EUR01-VE1-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751784AbeCVSfB (ORCPT ); Thu, 22 Mar 2018 14:35:01 -0400 Subject: [PATCH net-next 2/2] net: Convert rxrpc_net_ops From: Kirill Tkhai To: davem@davemloft.net, yoshfuji@linux-ipv6.org, dhowells@redhat.com, ktkhai@virtuozzo.com, netdev@vger.kernel.org Date: Thu, 22 Mar 2018 21:34:55 +0300 Message-ID: <152174369528.22875.12958229283840519132.stgit@localhost.localdomain> In-Reply-To: <152174314653.22875.17369758119928369672.stgit@localhost.localdomain> References: <152174314653.22875.17369758119928369672.stgit@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Sender: netdev-owner@vger.kernel.org List-ID: These pernet_operations modifies rxrpc_net_id-pointed per-net entities. There is external link to AF_RXRPC in fs/afs/Kconfig, but it seems there is no other pernet_operations interested in that per-net entities. Signed-off-by: Kirill Tkhai Acked-by: David Howells --- net/rxrpc/net_ns.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/rxrpc/net_ns.c b/net/rxrpc/net_ns.c index f18c9248e0d4..5fd939dabf41 100644 --- a/net/rxrpc/net_ns.c +++ b/net/rxrpc/net_ns.c @@ -106,4 +106,5 @@ struct pernet_operations rxrpc_net_ops = { .exit = rxrpc_exit_net, .id = &rxrpc_net_id, .size = sizeof(struct rxrpc_net), + .async = true, };