From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1jIqSs-00061y-Gw for barebox@lists.infradead.org; Mon, 30 Mar 2020 09:12:15 +0000 From: Sascha Hauer Date: Mon, 30 Mar 2020 11:12:09 +0200 Message-Id: <20200330091210.18716-8-s.hauer@pengutronix.de> In-Reply-To: <20200330091210.18716-1-s.hauer@pengutronix.de> References: <20200330091210.18716-1-s.hauer@pengutronix.de> MIME-Version: 1.0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH 7/8] fs: nfs: don't maintain nfs dentries in dcache To: Barebox List nfs dentries may change underneath barebox, so do not maintain them in the dcache. Signed-off-by: Sascha Hauer --- fs/nfs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/nfs.c b/fs/nfs.c index 26ff354c37..a5fc6467fb 100644 --- a/fs/nfs.c +++ b/fs/nfs.c @@ -1396,6 +1396,7 @@ static int nfs_probe(struct device_d *dev) free(tmp); sb->s_op = &nfs_ops; + sb->s_d_op = &no_revalidate_d_ops; inode = new_inode(sb); nfs_set_fh(inode, &npriv->rootfh); -- 2.26.0.rc2 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox