diff options
| author | Trond Myklebust <trond.myklebust@fys.uio.no> | 2004-03-14 06:12:36 -0500 |
|---|---|---|
| committer | Trond Myklebust <trond.myklebust@fys.uio.no> | 2004-03-14 06:12:36 -0500 |
| commit | aeb08fc02401ccd8fa897165434a9a0d22095b36 (patch) | |
| tree | 91a8058ec048abfa1a1051200e7d2ea406db9591 /include/linux/fs.h | |
| parent | fa9fcf5fffe3413d95ad6f6d7e9c35310e132787 (diff) | |
| parent | b67cfdb82691739b504b2881f9c949674dfec745 (diff) | |
Merge http://nfsclient.bkbits.net/linux-2.5
into fys.uio.no:/home/linux/bitkeeper/nfsclient-2.5
Diffstat (limited to 'include/linux/fs.h')
| -rw-r--r-- | include/linux/fs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 661e12c67875..9468e5d98ead 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -138,6 +138,7 @@ extern int leases_enable, dir_notify_enable, lease_break_time; #define S_DEAD 32 /* removed, but still open directory */ #define S_NOQUOTA 64 /* Inode is not counted to quota */ #define S_DIRSYNC 128 /* Directory modifications are synchronous */ +#define S_NOCMTIME 256 /* Do not update file c/mtime */ /* * Note that nosuid etc flags are inode-specific: setting some file-system @@ -171,6 +172,7 @@ extern int leases_enable, dir_notify_enable, lease_break_time; #define IS_ONE_SECOND(inode) __IS_FLG(inode, MS_ONE_SECOND) #define IS_DEADDIR(inode) ((inode)->i_flags & S_DEAD) +#define IS_NOCMTIME(inode) ((inode)->i_flags & S_NOCMTIME) /* the read-only stuff doesn't really belong here, but any other place is probably as bad and I don't want to create yet another include file. */ |
