diff options
author | Steve French <smfrench@gmail.com> | 2014-10-17 18:17:12 -0400 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2014-10-17 18:17:12 -0400 |
commit | ff273cb879fbc6cd3c5d03a56cfc33f5830e2837 (patch) | |
tree | c8fd52e733bb261f9aa51d8d23f9a905c2b44166 /fs/cifs | |
parent | 9ffc5412964d5b276227684124efb702ec387c19 (diff) |
[CIFS] Remove obsolete comment
Signed-off-by: Steven French <smfrench@gmail.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/link.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/fs/cifs/link.c b/fs/cifs/link.c index 190bf0eb71b0..2ec6037f61c7 100644 --- a/fs/cifs/link.c +++ b/fs/cifs/link.c | |||
@@ -592,11 +592,7 @@ cifs_hardlink(struct dentry *old_file, struct inode *inode, | |||
592 | spin_lock(&old_file->d_inode->i_lock); | 592 | spin_lock(&old_file->d_inode->i_lock); |
593 | inc_nlink(old_file->d_inode); | 593 | inc_nlink(old_file->d_inode); |
594 | spin_unlock(&old_file->d_inode->i_lock); | 594 | spin_unlock(&old_file->d_inode->i_lock); |
595 | /* | 595 | |
596 | * BB should we make this contingent on superblock flag | ||
597 | * NOATIME? | ||
598 | */ | ||
599 | /* old_file->d_inode->i_ctime = CURRENT_TIME; */ | ||
600 | /* | 596 | /* |
601 | * parent dir timestamps will update from srv within a | 597 | * parent dir timestamps will update from srv within a |
602 | * second, would it really be worth it to set the parent | 598 | * second, would it really be worth it to set the parent |
@@ -606,7 +602,9 @@ cifs_hardlink(struct dentry *old_file, struct inode *inode, | |||
606 | } | 602 | } |
607 | /* | 603 | /* |
608 | * if not oplocked will force revalidate to get info on source | 604 | * if not oplocked will force revalidate to get info on source |
609 | * file from srv | 605 | * file from srv. Note Samba server prior to 4.2 has bug - |
606 | * not updating src file ctime on hardlinks but Windows servers | ||
607 | * handle it properly | ||
610 | */ | 608 | */ |
611 | cifsInode->time = 0; | 609 | cifsInode->time = 0; |
612 | 610 | ||