From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E8F871272D5; Tue, 14 May 2024 11:46:38 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715687199; cv=none; b=h7CHMxoIu1Hl8E95jKbfA3FIMdn97MO6Dc828S1rLw3znPSsunmC1/tjtibhIZmgsG1ryMDGvSUAImuIn2K4pRBRkp+2/exRT5FMqwovUX4/6TSY1Ni6sM1gwe1JLUSnimjNwwUqFcwLHC/JqDrL+0jnowl1N7asEVigo3NYTZk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715687199; c=relaxed/simple; bh=VKi5aaCeTmRO/2aMt9yXAkgO01LQzE7LBs20zG8Rgrs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=djB1V0QBfg7cKD14Ib6NPPRFT3RSKqH06B6LeYyVl5Hqd7+kVKIdccNztdcwMyaW8dd7rcLoWIOtV3a/S1k9h78M8GiVcn3Ys4Y20tP8axmgFZVILfSqqVuNBvC6bv39tjj2bVeTBiVofYBncsEXUogsNEFtImodvFEuLtCztM8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=zebJzKcw; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="zebJzKcw" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6F4FDC2BD10; Tue, 14 May 2024 11:46:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1715687198; bh=VKi5aaCeTmRO/2aMt9yXAkgO01LQzE7LBs20zG8Rgrs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=zebJzKcwJkySlLqA7JdxIF8JWkkMjqoqKQMs54Inu5yfP/EU+WdvVcD/mlHIGU860 yi9Mn2/jsbRzUy2Zx6tg5WzNrauMGzpLQTnvbIdZogPXWcRMAHRh54ChuUbfZauuBw /u8pGjd4nZY5EFZaWahkmunQzBkVRonjnElUwiBo= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Josef Bacik , Trond Myklebust , Sasha Levin Subject: [PATCH 5.10 014/111] nfs: expose /proc/net/sunrpc/nfs in net namespaces Date: Tue, 14 May 2024 12:19:12 +0200 Message-ID: <20240514100957.668256975@linuxfoundation.org> X-Mailer: git-send-email 2.45.0 In-Reply-To: <20240514100957.114746054@linuxfoundation.org> References: <20240514100957.114746054@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Josef Bacik [ Upstream commit d47151b79e3220e72ae323b8b8e9d6da20dc884e ] We're using nfs mounts inside of containers in production and noticed that the nfs stats are not exposed in /proc. This is a problem for us as we use these stats for monitoring, and have to do this awkward bind mount from the main host into the container in order to get to these states. Add the rpc_proc_register call to the pernet operations entry and exit points so these stats can be exposed inside of network namespaces. Signed-off-by: Josef Bacik Signed-off-by: Trond Myklebust Stable-dep-of: 24457f1be29f ("nfs: Handle error of rpc_proc_register() in nfs_net_init().") Signed-off-by: Sasha Levin --- fs/nfs/inode.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index 36f415278c042..51c721e2f5555 100644 --- a/fs/nfs/inode.c +++ b/fs/nfs/inode.c @@ -2226,11 +2226,13 @@ EXPORT_SYMBOL_GPL(nfs_net_id); static int nfs_net_init(struct net *net) { nfs_clients_init(net); + rpc_proc_register(net, &nfs_rpcstat); return nfs_fs_proc_net_init(net); } static void nfs_net_exit(struct net *net) { + rpc_proc_unregister(net, "nfs"); nfs_fs_proc_net_exit(net); nfs_clients_exit(net); } @@ -2289,15 +2291,12 @@ static int __init init_nfs_fs(void) if (err) goto out1; - rpc_proc_register(&init_net, &nfs_rpcstat); - err = register_nfs_fs(); if (err) goto out0; return 0; out0: - rpc_proc_unregister(&init_net, "nfs"); nfs_destroy_directcache(); out1: nfs_destroy_writepagecache(); @@ -2330,7 +2329,6 @@ static void __exit exit_nfs_fs(void) nfs_destroy_nfspagecache(); nfs_fscache_unregister(); unregister_pernet_subsys(&nfs_net_ops); - rpc_proc_unregister(&init_net, "nfs"); unregister_nfs_fs(); nfs_fs_proc_exit(); nfsiod_stop(); -- 2.43.0