* [PATCH 2/3] Update all filesystems with extra argument to getattr inode operation (with patch now)
@ 2009-04-07 23:28 Oleg Drokin
0 siblings, 0 replies; only message in thread
From: Oleg Drokin @ 2009-04-07 23:28 UTC (permalink / raw)
To: linux-fsdevel
[-- Attachment #1: Type: text/plain, Size: 130 bytes --]
This is the "foot in the door" fs user for the flags in getattr in NFS.
This is Trond's patch updated to more fine-grained flags.
[-- Attachment #2: stat_light_nfs.diff --]
[-- Type: text/plain, Size: 1603 bytes --]
If the kernel knows that the application doesn't care about the atime
information, then we can avoid having to flush out writes, and we can avoid
revalidating the atime information.
OTOH, if the app sets STAT_REVALIDATE then we must force a revalidation of the
attribute metadata.
inode.c | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
Index: linux-2.6.29/fs/nfs/inode.c
===================================================================
--- linux-2.6.29.orig/fs/nfs/inode.c 2009-04-07 18:50:41.000000000 -0400
+++ linux-2.6.29/fs/nfs/inode.c 2009-04-07 18:53:56.000000000 -0400
@@ -475,9 +475,14 @@
int flags)
{
struct inode *inode = dentry->d_inode;
- int need_atime = NFS_I(inode)->cache_validity & NFS_INO_INVALID_ATIME;
+ int force_reval = 0;
int err;
+ force_reval |= (flags & STAT_REVALIDATE) != 0;
+
+ if (flags & STAT_ATIME)
+ goto do_revalidate;
+
/*
* Flush out writes to the server in order to update c/mtime.
*
@@ -500,11 +505,12 @@
* - NFS never sets MS_NOATIME or MS_NODIRATIME so there is
* no point in checking those.
*/
- if ((mnt->mnt_flags & MNT_NOATIME) ||
- ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)))
- need_atime = 0;
+ if (!((mnt->mnt_flags & MNT_NOATIME) ||
+ ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))))
+ force_reval |= (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ATIME) != 0;
- if (need_atime)
+do_revalidate:
+ if (force_reval)
err = __nfs_revalidate_inode(NFS_SERVER(inode), inode);
else
err = nfs_revalidate_inode(NFS_SERVER(inode), inode);
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-04-07 23:28 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-07 23:28 [PATCH 2/3] Update all filesystems with extra argument to getattr inode operation (with patch now) Oleg Drokin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).