diff options
| author | Steve French <sfrench@us.ibm.com> | 2007-02-16 23:30:54 -0500 |
|---|---|---|
| committer | Steve French <sfrench@us.ibm.com> | 2007-02-16 23:30:54 -0500 |
| commit | 1b2b212603ceb47d60aff571dcfffc846fcfa336 (patch) | |
| tree | a46aa9356cf8142b5f78520bdfc8efba8ecdbe1b /fs/cifs/inode.c | |
| parent | c14e894bd40868d6d1f2379705b68acf5288ba27 (diff) | |
[CIFS] mtime bounces from local to remote when cifs nocmtime i_flags overwritten
atime flag was also overwritten. Noticed by Shirish when he was debugging
an atime problem. Should help performance a bit too.
cifs should be getting time stamps from the server (that was the original
intent too)
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/inode.c')
| -rw-r--r-- | fs/cifs/inode.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index e203f63c66d5..37c6ce87416b 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c | |||
| @@ -90,6 +90,9 @@ int cifs_get_inode_info_unix(struct inode **pinode, | |||
| 90 | (*pinode)->i_ino = | 90 | (*pinode)->i_ino = |
| 91 | (unsigned long)findData.UniqueId; | 91 | (unsigned long)findData.UniqueId; |
| 92 | } /* note ino incremented to unique num in new_inode */ | 92 | } /* note ino incremented to unique num in new_inode */ |
| 93 | if(sb->s_flags & MS_NOATIME) | ||
| 94 | (*pinode)->i_flags |= S_NOATIME | S_NOCMTIME; | ||
| 95 | |||
| 93 | insert_inode_hash(*pinode); | 96 | insert_inode_hash(*pinode); |
| 94 | } | 97 | } |
| 95 | 98 | ||
| @@ -421,6 +424,8 @@ int cifs_get_inode_info(struct inode **pinode, | |||
| 421 | } else /* do we need cast or hash to ino? */ | 424 | } else /* do we need cast or hash to ino? */ |
| 422 | (*pinode)->i_ino = inode_num; | 425 | (*pinode)->i_ino = inode_num; |
| 423 | } /* else ino incremented to unique num in new_inode*/ | 426 | } /* else ino incremented to unique num in new_inode*/ |
| 427 | if(sb->s_flags & MS_NOATIME) | ||
| 428 | (*pinode)->i_flags |= S_NOATIME | S_NOCMTIME; | ||
| 424 | insert_inode_hash(*pinode); | 429 | insert_inode_hash(*pinode); |
| 425 | } | 430 | } |
| 426 | inode = *pinode; | 431 | inode = *pinode; |
