patch-2.1.84 linux/fs/inode.c
Next file: linux/fs/super.c
Previous file: linux/fs/autofs/root.c
Back to the patch index
Back to the overall index
-  Lines: 13
-  Date:
Fri Jan 30 16:43:11 1998
-  Orig file: 
v2.1.83/linux/fs/inode.c
-  Orig date: 
Fri Jan 16 11:24:09 1998
diff -u --recursive --new-file v2.1.83/linux/fs/inode.c linux/fs/inode.c
@@ -759,3 +759,12 @@
 	}
 	return 1; /* Tis' cool bro. */
 }
+
+void update_atime (struct inode *inode)
+{
+    if ( IS_NOATIME (inode) ) return;
+    if ( IS_NODIRATIME (inode) && S_ISDIR (inode->i_mode) ) return;
+    if ( IS_RDONLY (inode) ) return;
+    inode->i_atime = CURRENT_TIME;
+    mark_inode_dirty (inode);
+}   /*  End Function update_atime  */
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov